linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kent Gibson <warthog618@gmail.com>
To: Bartosz Golaszewski <brgl@bgdev.pl>
Cc: Linus Walleij <linus.walleij@linaro.org>,
	linux-gpio@vger.kernel.org,
	Bartosz Golaszewski <bgolaszewski@baylibre.com>
Subject: Re: [libgpiod][PATCH 0/3] licensing: try to get licensing right
Date: Thu, 18 Feb 2021 09:21:46 +0800	[thread overview]
Message-ID: <20210218012146.GA12952@sol> (raw)
In-Reply-To: <20210217130225.6378-1-brgl@bgdev.pl>

On Wed, Feb 17, 2021 at 02:02:22PM +0100, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
> 
> This series tries to improve the licensing situation of libgpiod before we
> proceed with v2.0.
> 
> The first patch is rather uncotroversial: it makes the project compliant
> with the REUSE v3.0 specification.
> 
> Next two patches propose to change the licenses for certain files:
> non-library source files are relicensed under GPL-2.0-or-later while C++
> library code's license is upgraded to LGPL-3.0-or-later.
> 
> The only person other than myself who contributed significant code to the
> relicensed files is Kent Gibson (Cc'ed) so these patches will need his
> ack.
> 

That works for me.

Acked-by: Kent Gibson <warthog618@gmail.com>

for the series.

Cheers,
Kent.

> Bartosz Golaszewski (3):
>   licensing: make the project REUSE-compliant
>   licensing: relicense non-library code under GPL-2.0-or-later
>   licensing: relicense C++ library code under LGPL-3.0-or-later
> 
>  .gitignore                                 |   3 +
>  COPYING                                    | 511 +--------------------
>  Doxyfile.in                                |   9 +-
>  LICENSES/CC-BY-SA-4.0.txt                  | 427 +++++++++++++++++
>  LICENSES/GPL-2.0-only.txt                  | 339 ++++++++++++++
>  LICENSES/GPL-2.0-or-later.txt              |   1 +
>  LICENSES/LGPL-2.1-or-later.txt             | 502 ++++++++++++++++++++
>  LICENSES/LGPL-3.0-or-later.txt             | 165 +++++++
>  LICENSES/Linux-syscall-note.txt            |  25 +
>  Makefile.am                                |  19 +-
>  NEWS                                       |   3 +
>  README                                     |   3 +
>  TODO                                       |   3 +
>  autogen.sh                                 |  11 +-
>  bindings/Makefile.am                       |   9 +-
>  bindings/cxx/Makefile.am                   |   9 +-
>  bindings/cxx/chip.cpp                      |   8 +-
>  bindings/cxx/examples/.gitignore           |   3 +
>  bindings/cxx/examples/Makefile.am          |   9 +-
>  bindings/cxx/examples/gpiodetectcxx.cpp    |   8 +-
>  bindings/cxx/examples/gpiofindcxx.cpp      |   8 +-
>  bindings/cxx/examples/gpiogetcxx.cpp       |   8 +-
>  bindings/cxx/examples/gpioinfocxx.cpp      |   8 +-
>  bindings/cxx/examples/gpiomoncxx.cpp       |   8 +-
>  bindings/cxx/examples/gpiosetcxx.cpp       |   8 +-
>  bindings/cxx/gpiod.hpp                     |   8 +-
>  bindings/cxx/iter.cpp                      |   8 +-
>  bindings/cxx/libgpiodcxx.pc.in             |   3 +
>  bindings/cxx/line.cpp                      |  10 +-
>  bindings/cxx/line_bulk.cpp                 |   8 +-
>  bindings/cxx/tests/.gitignore              |   3 +
>  bindings/cxx/tests/Makefile.am             |   9 +-
>  bindings/cxx/tests/gpio-mockup.cpp         |   8 +-
>  bindings/cxx/tests/gpio-mockup.hpp         |   8 +-
>  bindings/cxx/tests/gpiod-cxx-test-main.cpp |   8 +-
>  bindings/cxx/tests/gpiod-cxx-test.cpp      |   8 +-
>  bindings/cxx/tests/tests-chip.cpp          |   8 +-
>  bindings/cxx/tests/tests-event.cpp         |   8 +-
>  bindings/cxx/tests/tests-iter.cpp          |   8 +-
>  bindings/cxx/tests/tests-line.cpp          |   8 +-
>  bindings/python/Makefile.am                |   9 +-
>  bindings/python/examples/Makefile.am       |   9 +-
>  bindings/python/examples/gpiodetect.py     |   9 +-
>  bindings/python/examples/gpiofind.py       |   9 +-
>  bindings/python/examples/gpioget.py        |   9 +-
>  bindings/python/examples/gpioinfo.py       |   9 +-
>  bindings/python/examples/gpiomon.py        |   9 +-
>  bindings/python/examples/gpioset.py        |   9 +-
>  bindings/python/gpiodmodule.c              |   6 +-
>  bindings/python/tests/Makefile.am          |   9 +-
>  bindings/python/tests/gpiod_py_test.py     |   9 +-
>  bindings/python/tests/gpiomockupmodule.c   |   6 +-
>  configure.ac                               |   9 +-
>  include/Makefile.am                        |   9 +-
>  include/gpiod.h                            |   6 +-
>  lib/Makefile.am                            |   9 +-
>  lib/core.c                                 |   6 +-
>  lib/helpers.c                              |   6 +-
>  lib/libgpiod.pc.in                         |   4 +
>  lib/misc.c                                 |   6 +-
>  lib/uapi/gpio.h                            |  22 +-
>  man/.gitignore                             |   3 +
>  man/Makefile.am                            |   9 +-
>  man/template                               |   3 +
>  tests/.gitignore                           |   3 +
>  tests/Makefile.am                          |   9 +-
>  tests/gpiod-test.c                         |   8 +-
>  tests/gpiod-test.h                         |   8 +-
>  tests/mockup/Makefile.am                   |   9 +-
>  tests/mockup/gpio-mockup.c                 |   8 +-
>  tests/mockup/gpio-mockup.h                 |   6 +-
>  tests/tests-bulk.c                         |   8 +-
>  tests/tests-chip.c                         |   8 +-
>  tests/tests-event.c                        |   8 +-
>  tests/tests-line.c                         |   8 +-
>  tests/tests-misc.c                         |   8 +-
>  tools/.gitignore                           |   3 +
>  tools/Makefile.am                          |   9 +-
>  tools/gpio-tools-test                      |   9 +-
>  tools/gpio-tools-test.bats                 |   9 +-
>  tools/gpiodetect.c                         |   8 +-
>  tools/gpiofind.c                           |   8 +-
>  tools/gpioget.c                            |   8 +-
>  tools/gpioinfo.c                           |   8 +-
>  tools/gpiomon.c                            |   8 +-
>  tools/gpioset.c                            |   8 +-
>  tools/tools-common.c                       |   8 +-
>  tools/tools-common.h                       |   8 +-
>  88 files changed, 1663 insertions(+), 936 deletions(-)
>  create mode 100644 LICENSES/CC-BY-SA-4.0.txt
>  create mode 100644 LICENSES/GPL-2.0-only.txt
>  create mode 120000 LICENSES/GPL-2.0-or-later.txt
>  create mode 100644 LICENSES/LGPL-2.1-or-later.txt
>  create mode 100644 LICENSES/LGPL-3.0-or-later.txt
>  create mode 100644 LICENSES/Linux-syscall-note.txt
> 
> -- 
> 2.29.1
> 

  parent reply	other threads:[~2021-02-18  1:22 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-17 13:02 [libgpiod][PATCH 0/3] licensing: try to get licensing right Bartosz Golaszewski
2021-02-17 13:02 ` [libgpiod][PATCH 1/3] licensing: make the project REUSE-compliant Bartosz Golaszewski
2021-02-17 13:02 ` [libgpiod][PATCH 2/3] licensing: relicense non-library code under GPL-2.0-or-later Bartosz Golaszewski
2021-02-17 13:02 ` [libgpiod][PATCH 3/3] licensing: relicense C++ library code under LGPL-3.0-or-later Bartosz Golaszewski
2021-02-18  1:21 ` Kent Gibson [this message]
2021-03-02  9:05 ` [libgpiod][PATCH 0/3] licensing: try to get licensing right Linus Walleij

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210218012146.GA12952@sol \
    --to=warthog618@gmail.com \
    --cc=bgolaszewski@baylibre.com \
    --cc=brgl@bgdev.pl \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).