buildroot.busybox.net archive mirror
 help / color / mirror / Atom feed
* [Buildroot] [git commit] package/volk: fix licensing information
@ 2022-10-01 21:35 Yann E. MORIN
  2022-10-02 10:06 ` Thomas Petazzoni via buildroot
  2022-10-15 14:32 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Yann E. MORIN @ 2022-10-01 21:35 UTC (permalink / raw)
  To: buildroot

commit: https://git.buildroot.net/buildroot/commit/?id=0a397fa6381a4115be22ee9637746bf8c8e1194e
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Since 2.5.1, volk has been undergoing a relicensing from GPL-3.0+ to the
LGPL-3.0+, which is still not completely done 5by some large margin), so
it is still covered by the GPL-3.0+, but has parts already covered by
the LGPL-3.0+.

We so far only listed GPL-3.0+, but we also had the license file for the
LGPL-3.0+.

Add LGPL-3.0+ to the list of licenses; the COPYING file is the text of
the GPL-3.0+, so we already had it listed (note: the package has a
COPYING-GPL, but i's a symlink to COPYING).

Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
[yann.morin.1998@free.fr:
  - split out to its own patch
  - explain why we don't add COPYING-GPL
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
---
 package/volk/volk.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/volk/volk.mk b/package/volk/volk.mk
index 1b36ea69c8..038b85ee86 100644
--- a/package/volk/volk.mk
+++ b/package/volk/volk.mk
@@ -9,7 +9,7 @@ VOLK_SITE = https://github.com/gnuradio/volk/releases/download/v$(VOLK_VERSION)
 VOLK_SOURCE = volk-$(VOLK_VERSION).tar.xz
 # See https://github.com/gnuradio/volk/tree/v2.5.1#license for some
 # details on the licensing.
-VOLK_LICENSE = GPL-3.0+
+VOLK_LICENSE = GPL-3.0+ LGPL-3.0+
 VOLK_LICENSE_FILES = COPYING COPYING-LGPL
 
 VOLK_SUPPORTS_IN_SOURCE_BUILD = NO
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [git commit] package/volk: fix licensing information
  2022-10-01 21:35 [Buildroot] [git commit] package/volk: fix licensing information Yann E. MORIN
@ 2022-10-02 10:06 ` Thomas Petazzoni via buildroot
  2022-10-02 12:11   ` Yann E. MORIN
  2022-10-15 14:32 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2022-10-02 10:06 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: buildroot

On Sat, 1 Oct 2022 23:35:46 +0200
Yann E. MORIN <yann.morin.1998@free.fr> wrote:

> +VOLK_LICENSE = GPL-3.0+ LGPL-3.0+

License list should be comma-separated, not space-separated.

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [git commit] package/volk: fix licensing information
  2022-10-02 10:06 ` Thomas Petazzoni via buildroot
@ 2022-10-02 12:11   ` Yann E. MORIN
  0 siblings, 0 replies; 4+ messages in thread
From: Yann E. MORIN @ 2022-10-02 12:11 UTC (permalink / raw)
  To: Thomas Petazzoni; +Cc: buildroot

Thomas, All,

On 2022-10-02 12:06 +0200, Thomas Petazzoni via buildroot spake thusly:
> On Sat, 1 Oct 2022 23:35:46 +0200
> Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> > +VOLK_LICENSE = GPL-3.0+ LGPL-3.0+
> License list should be comma-separated, not space-separated.

Woops, fixed.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [git commit] package/volk: fix licensing information
  2022-10-01 21:35 [Buildroot] [git commit] package/volk: fix licensing information Yann E. MORIN
  2022-10-02 10:06 ` Thomas Petazzoni via buildroot
@ 2022-10-15 14:32 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-10-15 14:32 UTC (permalink / raw)
  To: Yann E. MORIN; +Cc: buildroot

>>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:

 > commit: https://git.buildroot.net/buildroot/commit/?id=0a397fa6381a4115be22ee9637746bf8c8e1194e
 > branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

 > Since 2.5.1, volk has been undergoing a relicensing from GPL-3.0+ to the
 > LGPL-3.0+, which is still not completely done 5by some large margin), so
 > it is still covered by the GPL-3.0+, but has parts already covered by
 > the LGPL-3.0+.

 > We so far only listed GPL-3.0+, but we also had the license file for the
 > LGPL-3.0+.

 > Add LGPL-3.0+ to the list of licenses; the COPYING file is the text of
 > the GPL-3.0+, so we already had it listed (note: the package has a
 > COPYING-GPL, but i's a symlink to COPYING).

 > Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
 > [yann.morin.1998@free.fr:
 >   - split out to its own patch
 >   - explain why we don't add COPYING-GPL
 > ]
 > Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>

Committed to 2022.08.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-15 14:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-01 21:35 [Buildroot] [git commit] package/volk: fix licensing information Yann E. MORIN
2022-10-02 10:06 ` Thomas Petazzoni via buildroot
2022-10-02 12:11   ` Yann E. MORIN
2022-10-15 14:32 ` Peter Korsgaard

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).