Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] igmpproxy: fix license
@ 2018-09-21 21:29 Fabrice Fontaine
  2018-09-21 21:29 ` [Buildroot] [PATCH 2/2] igmpproxy: bump to version 0.2.1 Fabrice Fontaine
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2018-09-21 21:29 UTC (permalink / raw)
  To: buildroot

mrouted part of igmpproxy is licensed under BSD-3-Clause so add this in
IGMPPROXY_LICENSE and add hash for license files

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/igmpproxy/igmpproxy.hash | 3 +++
 package/igmpproxy/igmpproxy.mk   | 4 ++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/package/igmpproxy/igmpproxy.hash b/package/igmpproxy/igmpproxy.hash
index 2e3a374618..313af52fbe 100644
--- a/package/igmpproxy/igmpproxy.hash
+++ b/package/igmpproxy/igmpproxy.hash
@@ -1,2 +1,5 @@
 # Locally computed:
 sha256 e60331031f85d1fb834c5272a134f32d32e7834718da19ba3f787dff68389a31  igmpproxy-f47644d8fa7266a784f3ec7b251e7d318bc2f0a9.tar.gz
+sha256 be3d05af93dbbc4650f8d641d8e1bec220af4a729e07ba71e949c25b93a1b4f6  COPYING
+sha256 c4f65d5d396ad518a37d30b83fe33897661858dc174ff64a15d0461630ce64e4  GPL.txt
+sha256 4328a21f0822caa9976356623118bcdcc9970c7a0f9a3deeba23c779b7cfb5d1  Stanford.txt
diff --git a/package/igmpproxy/igmpproxy.mk b/package/igmpproxy/igmpproxy.mk
index 8989c74de0..9c19f76f0c 100644
--- a/package/igmpproxy/igmpproxy.mk
+++ b/package/igmpproxy/igmpproxy.mk
@@ -7,7 +7,7 @@
 IGMPPROXY_VERSION = f47644d8fa7266a784f3ec7b251e7d318bc2f0a9
 IGMPPROXY_SITE = $(call github,pali,igmpproxy,$(IGMPPROXY_VERSION))
 IGMPPROXY_AUTORECONF = YES
-IGMPPROXY_LICENSE = GPL-2.0+
-IGMPPROXY_LICENSE_FILES = COPYING
+IGMPPROXY_LICENSE = GPL-2.0+, BSD-3-Clause (mrouted)
+IGMPPROXY_LICENSE_FILES = COPYING GPL.txt Stanford.txt
 
 $(eval $(autotools-package))
-- 
2.17.1

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

* [Buildroot] [PATCH 2/2] igmpproxy: bump to version 0.2.1
  2018-09-21 21:29 [Buildroot] [PATCH 1/2] igmpproxy: fix license Fabrice Fontaine
@ 2018-09-21 21:29 ` Fabrice Fontaine
  2018-09-23 15:09 ` [Buildroot] [PATCH 1/2] igmpproxy: fix license Thomas Petazzoni
  2018-10-05 12:01 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2018-09-21 21:29 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/igmpproxy/igmpproxy.hash | 2 +-
 package/igmpproxy/igmpproxy.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/igmpproxy/igmpproxy.hash b/package/igmpproxy/igmpproxy.hash
index 313af52fbe..2566987a7f 100644
--- a/package/igmpproxy/igmpproxy.hash
+++ b/package/igmpproxy/igmpproxy.hash
@@ -1,5 +1,5 @@
 # Locally computed:
-sha256 e60331031f85d1fb834c5272a134f32d32e7834718da19ba3f787dff68389a31  igmpproxy-f47644d8fa7266a784f3ec7b251e7d318bc2f0a9.tar.gz
+sha256 6faa1f42ba323f60a9eb4958550e25b2e7e9c645da32c52ba12db0c9bdfce1ba  igmpproxy-0.2.1.tar.gz
 sha256 be3d05af93dbbc4650f8d641d8e1bec220af4a729e07ba71e949c25b93a1b4f6  COPYING
 sha256 c4f65d5d396ad518a37d30b83fe33897661858dc174ff64a15d0461630ce64e4  GPL.txt
 sha256 4328a21f0822caa9976356623118bcdcc9970c7a0f9a3deeba23c779b7cfb5d1  Stanford.txt
diff --git a/package/igmpproxy/igmpproxy.mk b/package/igmpproxy/igmpproxy.mk
index 9c19f76f0c..fe4614fd13 100644
--- a/package/igmpproxy/igmpproxy.mk
+++ b/package/igmpproxy/igmpproxy.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IGMPPROXY_VERSION = f47644d8fa7266a784f3ec7b251e7d318bc2f0a9
+IGMPPROXY_VERSION = 0.2.1
 IGMPPROXY_SITE = $(call github,pali,igmpproxy,$(IGMPPROXY_VERSION))
 IGMPPROXY_AUTORECONF = YES
 IGMPPROXY_LICENSE = GPL-2.0+, BSD-3-Clause (mrouted)
-- 
2.17.1

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

* [Buildroot] [PATCH 1/2] igmpproxy: fix license
  2018-09-21 21:29 [Buildroot] [PATCH 1/2] igmpproxy: fix license Fabrice Fontaine
  2018-09-21 21:29 ` [Buildroot] [PATCH 2/2] igmpproxy: bump to version 0.2.1 Fabrice Fontaine
@ 2018-09-23 15:09 ` Thomas Petazzoni
  2018-10-05 12:01 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2018-09-23 15:09 UTC (permalink / raw)
  To: buildroot

Hello,

On Fri, 21 Sep 2018 23:29:06 +0200, Fabrice Fontaine wrote:
> mrouted part of igmpproxy is licensed under BSD-3-Clause so add this in
> IGMPPROXY_LICENSE and add hash for license files
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/igmpproxy/igmpproxy.hash | 3 +++
>  package/igmpproxy/igmpproxy.mk   | 4 ++--
>  2 files changed, 5 insertions(+), 2 deletions(-)

Both applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/2] igmpproxy: fix license
  2018-09-21 21:29 [Buildroot] [PATCH 1/2] igmpproxy: fix license Fabrice Fontaine
  2018-09-21 21:29 ` [Buildroot] [PATCH 2/2] igmpproxy: bump to version 0.2.1 Fabrice Fontaine
  2018-09-23 15:09 ` [Buildroot] [PATCH 1/2] igmpproxy: fix license Thomas Petazzoni
@ 2018-10-05 12:01 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2018-10-05 12:01 UTC (permalink / raw)
  To: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > mrouted part of igmpproxy is licensed under BSD-3-Clause so add this in
 > IGMPPROXY_LICENSE and add hash for license files

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2018.02.x, 2018.05.x and 2018.08.x, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2018-10-05 12:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-21 21:29 [Buildroot] [PATCH 1/2] igmpproxy: fix license Fabrice Fontaine
2018-09-21 21:29 ` [Buildroot] [PATCH 2/2] igmpproxy: bump to version 0.2.1 Fabrice Fontaine
2018-09-23 15:09 ` [Buildroot] [PATCH 1/2] igmpproxy: fix license Thomas Petazzoni
2018-10-05 12:01 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox