mbox series

[libgpiod,0/2] licensing: relicense C++ bindings and add a document on contributing

Message ID 20240416212141.6683-1-brgl@bgdev.pl
Headers show
Series licensing: relicense C++ bindings and add a document on contributing | expand

Message

Bartosz Golaszewski April 16, 2024, 9:21 p.m. UTC
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>

I'm Cc'ing all copyright holders for this project's C++ source code since
the last license change which are Linaro, BayLibre and Kent Gibson. Please
kindly leave your Acks.

Bartosz Golaszewski (2):
  licensing: relicense C++ bindings under LGPL-2.1-or-later
  doc: add a file explaining the contribution process in detail

 CONTRIBUTING.md                             |  88 +++++++++++
 COPYING                                     |  11 +-
 LICENSES/LGPL-3.0-or-later.txt              | 165 --------------------
 README                                      |   2 +
 bindings/cxx/chip-info.cpp                  |   2 +-
 bindings/cxx/chip.cpp                       |   2 +-
 bindings/cxx/edge-event-buffer.cpp          |   2 +-
 bindings/cxx/edge-event.cpp                 |   2 +-
 bindings/cxx/exception.cpp                  |   2 +-
 bindings/cxx/gpiod.hpp                      |   2 +-
 bindings/cxx/gpiodcxx/chip-info.hpp         |   2 +-
 bindings/cxx/gpiodcxx/chip.hpp              |   2 +-
 bindings/cxx/gpiodcxx/edge-event-buffer.hpp |   2 +-
 bindings/cxx/gpiodcxx/edge-event.hpp        |   2 +-
 bindings/cxx/gpiodcxx/exception.hpp         |   2 +-
 bindings/cxx/gpiodcxx/info-event.hpp        |   2 +-
 bindings/cxx/gpiodcxx/line-config.hpp       |   2 +-
 bindings/cxx/gpiodcxx/line-info.hpp         |   2 +-
 bindings/cxx/gpiodcxx/line-request.hpp      |   2 +-
 bindings/cxx/gpiodcxx/line-settings.hpp     |   2 +-
 bindings/cxx/gpiodcxx/line.hpp              |   2 +-
 bindings/cxx/gpiodcxx/misc.hpp              |   2 +-
 bindings/cxx/gpiodcxx/request-builder.hpp   |   2 +-
 bindings/cxx/gpiodcxx/request-config.hpp    |   2 +-
 bindings/cxx/gpiodcxx/timestamp.hpp         |   2 +-
 bindings/cxx/info-event.cpp                 |   2 +-
 bindings/cxx/internal.cpp                   |   2 +-
 bindings/cxx/internal.hpp                   |   2 +-
 bindings/cxx/line-config.cpp                |   2 +-
 bindings/cxx/line-info.cpp                  |   2 +-
 bindings/cxx/line-request.cpp               |   2 +-
 bindings/cxx/line-settings.cpp              |   2 +-
 bindings/cxx/line.cpp                       |   2 +-
 bindings/cxx/misc.cpp                       |   2 +-
 bindings/cxx/request-builder.cpp            |   2 +-
 bindings/cxx/request-config.cpp             |   2 +-
 bindings/cxx/tests/gpiosim.cpp              |   2 +-
 bindings/cxx/tests/gpiosim.hpp              |   2 +-
 bindings/cxx/tests/helpers.cpp              |   2 +-
 bindings/cxx/tests/helpers.hpp              |   2 +-
 40 files changed, 127 insertions(+), 211 deletions(-)
 create mode 100644 CONTRIBUTING.md
 delete mode 100644 LICENSES/LGPL-3.0-or-later.txt

Comments

Grant Likely April 22, 2024, 10:49 a.m. UTC | #1
On Tue, Apr 16, 2024 at 10:21 PM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
>
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
>
> I'm Cc'ing all copyright holders for this project's C++ source code since
> the last license change which are Linaro, BayLibre and Kent Gibson. Please
> kindly leave your Acks.
>
> Bartosz Golaszewski (2):
>   licensing: relicense C++ bindings under LGPL-2.1-or-later
>   doc: add a file explaining the contribution process in detail

For the series:
Acked-by: Grant Likely <grant.likely@linaro.org>

>
>  CONTRIBUTING.md                             |  88 +++++++++++
>  COPYING                                     |  11 +-
>  LICENSES/LGPL-3.0-or-later.txt              | 165 --------------------
>  README                                      |   2 +
>  bindings/cxx/chip-info.cpp                  |   2 +-
>  bindings/cxx/chip.cpp                       |   2 +-
>  bindings/cxx/edge-event-buffer.cpp          |   2 +-
>  bindings/cxx/edge-event.cpp                 |   2 +-
>  bindings/cxx/exception.cpp                  |   2 +-
>  bindings/cxx/gpiod.hpp                      |   2 +-
>  bindings/cxx/gpiodcxx/chip-info.hpp         |   2 +-
>  bindings/cxx/gpiodcxx/chip.hpp              |   2 +-
>  bindings/cxx/gpiodcxx/edge-event-buffer.hpp |   2 +-
>  bindings/cxx/gpiodcxx/edge-event.hpp        |   2 +-
>  bindings/cxx/gpiodcxx/exception.hpp         |   2 +-
>  bindings/cxx/gpiodcxx/info-event.hpp        |   2 +-
>  bindings/cxx/gpiodcxx/line-config.hpp       |   2 +-
>  bindings/cxx/gpiodcxx/line-info.hpp         |   2 +-
>  bindings/cxx/gpiodcxx/line-request.hpp      |   2 +-
>  bindings/cxx/gpiodcxx/line-settings.hpp     |   2 +-
>  bindings/cxx/gpiodcxx/line.hpp              |   2 +-
>  bindings/cxx/gpiodcxx/misc.hpp              |   2 +-
>  bindings/cxx/gpiodcxx/request-builder.hpp   |   2 +-
>  bindings/cxx/gpiodcxx/request-config.hpp    |   2 +-
>  bindings/cxx/gpiodcxx/timestamp.hpp         |   2 +-
>  bindings/cxx/info-event.cpp                 |   2 +-
>  bindings/cxx/internal.cpp                   |   2 +-
>  bindings/cxx/internal.hpp                   |   2 +-
>  bindings/cxx/line-config.cpp                |   2 +-
>  bindings/cxx/line-info.cpp                  |   2 +-
>  bindings/cxx/line-request.cpp               |   2 +-
>  bindings/cxx/line-settings.cpp              |   2 +-
>  bindings/cxx/line.cpp                       |   2 +-
>  bindings/cxx/misc.cpp                       |   2 +-
>  bindings/cxx/request-builder.cpp            |   2 +-
>  bindings/cxx/request-config.cpp             |   2 +-
>  bindings/cxx/tests/gpiosim.cpp              |   2 +-
>  bindings/cxx/tests/gpiosim.hpp              |   2 +-
>  bindings/cxx/tests/helpers.cpp              |   2 +-
>  bindings/cxx/tests/helpers.hpp              |   2 +-
>  40 files changed, 127 insertions(+), 211 deletions(-)
>  create mode 100644 CONTRIBUTING.md
>  delete mode 100644 LICENSES/LGPL-3.0-or-later.txt
>
> --
> 2.40.1
>
Bartosz Golaszewski April 22, 2024, 12:06 p.m. UTC | #2
From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>


On Tue, 16 Apr 2024 23:21:39 +0200, Bartosz Golaszewski wrote:
> From: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
> 
> I'm Cc'ing all copyright holders for this project's C++ source code since
> the last license change which are Linaro, BayLibre and Kent Gibson. Please
> kindly leave your Acks.
> 
> Bartosz Golaszewski (2):
>   licensing: relicense C++ bindings under LGPL-2.1-or-later
>   doc: add a file explaining the contribution process in detail
> 
> [...]

Applied, thanks!

[1/2] licensing: relicense C++ bindings under LGPL-2.1-or-later
      commit: 76ecc337c519d65c16e331343c9402f176eead5a
[2/2] doc: add a file explaining the contribution process in detail
      commit: 2bcc49ed325ea19a04aba4cc0aedb742b51f779b

Best regards,