All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/54] gvfs: add license information
@ 2014-06-24 18:55 Gustavo Zacarias
  2014-06-24 18:55 ` [Buildroot] [PATCH 02/54] irda-utils: " Gustavo Zacarias
                   ` (54 more replies)
  0 siblings, 55 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gvfs/gvfs.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
index dbf234e..58707aa 100644
--- a/package/gvfs/gvfs.mk
+++ b/package/gvfs/gvfs.mk
@@ -10,6 +10,8 @@ GVFS_SOURCE = gvfs-$(GVFS_VERSION).tar.xz
 GVFS_SITE = http://ftp.gnome.org/pub/GNOME/sources/gvfs/$(GVFS_VERSION_MAJOR)
 GVFS_INSTALL_STAGING = YES
 GVFS_DEPENDENCIES = host-pkgconf host-libglib2 libglib2 dbus shared-mime-info
+GVFS_LICENSE = LGPLv2+
+GVFS_LICENSE = COPYING
 
 # Export ac_cv_path_LIBGCRYPT_CONFIG unconditionally to prevent
 # build system from searching the host paths.
-- 
1.8.5.5

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

* [Buildroot] [PATCH 02/54] irda-utils: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 19:12   ` Yann E. MORIN
  2014-06-24 18:55 ` [Buildroot] [PATCH 03/54] kexec: " Gustavo Zacarias
                   ` (53 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gtkperf/gtkperf.mk       | 2 ++
 package/irda-utils/irda-utils.mk | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/package/gtkperf/gtkperf.mk b/package/gtkperf/gtkperf.mk
index fa9531d..0542a26 100644
--- a/package/gtkperf/gtkperf.mk
+++ b/package/gtkperf/gtkperf.mk
@@ -8,5 +8,7 @@ GTKPERF_VERSION = 0.40
 GTKPERF_SOURCE = gtkperf_$(GTKPERF_VERSION).tar.gz
 GTKPERF_SITE = http://downloads.sourceforge.net/project/gtkperf/gtkperf/$(GTKPERF_VERSION)
 GTKPERF_DEPENDENCIES = libgtk2
+GTKPERF_LICENSE = GPLv2
+GTKPERF_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
diff --git a/package/irda-utils/irda-utils.mk b/package/irda-utils/irda-utils.mk
index 4be80d7..e4958e5 100644
--- a/package/irda-utils/irda-utils.mk
+++ b/package/irda-utils/irda-utils.mk
@@ -6,6 +6,8 @@
 
 IRDA_UTILS_VERSION = 0.9.18
 IRDA_UTILS_SITE = http://downloads.sourceforge.net/project/irda/irda-utils/$(IRDA_UTILS_VERSION)
+IRDA_UTILS_LICENSE = GPLv2+
+IRDA_UTILS_LICENSE_FILES = man/COPYING
 
 IRDA_UTILS_CFLAGS = $(TARGET_CFLAGS) -I.
 ifeq ($(BR2_USE_MMU),)
-- 
1.8.5.5

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

* [Buildroot] [PATCH 03/54] kexec: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
  2014-06-24 18:55 ` [Buildroot] [PATCH 02/54] irda-utils: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 21:35   ` Yann E. MORIN
  2014-06-25 20:39   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 04/54] leafpad: " Gustavo Zacarias
                   ` (52 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/kexec/kexec.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/kexec/kexec.mk b/package/kexec/kexec.mk
index 9787038..609825a 100644
--- a/package/kexec/kexec.mk
+++ b/package/kexec/kexec.mk
@@ -7,6 +7,8 @@
 KEXEC_VERSION = 2.0.7
 KEXEC_SOURCE = kexec-tools-$(KEXEC_VERSION).tar.xz
 KEXEC_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kexec
+KEXEC_LICENSE = GPLv2
+KEXEC_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_KEXEC_ZLIB),y)
 KEXEC_CONF_OPT += --with-zlib
-- 
1.8.5.5

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

* [Buildroot] [PATCH 04/54] leafpad: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
  2014-06-24 18:55 ` [Buildroot] [PATCH 02/54] irda-utils: " Gustavo Zacarias
  2014-06-24 18:55 ` [Buildroot] [PATCH 03/54] kexec: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 20:19   ` Thomas Petazzoni
  2014-06-25 20:39   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 05/54] libart: " Gustavo Zacarias
                   ` (51 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/leafpad/leafpad.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/leafpad/leafpad.mk b/package/leafpad/leafpad.mk
index b533ea0..6366cab 100644
--- a/package/leafpad/leafpad.mk
+++ b/package/leafpad/leafpad.mk
@@ -7,5 +7,7 @@
 LEAFPAD_VERSION = 0.8.18
 LEAFPAD_SITE = http://savannah.nongnu.org/download/leafpad
 LEAFPAD_DEPENDENCIES = libgtk2 host-intltool
+LEAFPAD_LICENSE = GPLv2+
+LEAFPAD_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 05/54] libart: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 04/54] leafpad: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 21:39   ` Yann E. MORIN
  2014-06-25 20:40   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 06/54] liesmtp: " Gustavo Zacarias
                   ` (50 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libart/libart.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libart/libart.mk b/package/libart/libart.mk
index 39c72cc..a103f23 100644
--- a/package/libart/libart.mk
+++ b/package/libart/libart.mk
@@ -11,5 +11,7 @@ LIBART_SITE = http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/$(LIBART_VERSIO
 LIBART_AUTORECONF = YES
 LIBART_INSTALL_STAGING = YES
 LIBART_CONFIG_SCRIPTS = libart2-config
+LIBART_LICENSE = LGPLv2+
+LIBART_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 06/54] liesmtp: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 05/54] libart: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 21:45   ` Yann E. MORIN
                     ` (2 more replies)
  2014-06-24 18:55 ` [Buildroot] [PATCH 07/54] libevent: " Gustavo Zacarias
                   ` (49 subsequent siblings)
  54 siblings, 3 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libesmtp/libesmtp.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libesmtp/libesmtp.mk b/package/libesmtp/libesmtp.mk
index f3f5611..cad2e27 100644
--- a/package/libesmtp/libesmtp.mk
+++ b/package/libesmtp/libesmtp.mk
@@ -10,5 +10,7 @@ LIBESMTP_SITE = http://www.stafford.uklinux.net/libesmtp
 LIBESMTP_INSTALL_STAGING = YES
 LIBESMTP_CONFIG_SCRIPTS = libesmtp-config
 LIBESMTP_DEPENDENCIES = $(if $(BR2_PACKAGE_OPENSSL),openssl)
+LIBESMTP_LICENSE = GPLv2+ (examples), LGPLv2.1+ (library)
+LIBESMTP_LICENSE_FILES = COPYING COPYING.LIB
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 07/54] libevent: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (4 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 06/54] liesmtp: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 21:49   ` Yann E. MORIN
  2014-06-24 18:55 ` [Buildroot] [PATCH 08/54] libfreefare: " Gustavo Zacarias
                   ` (48 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libevent/libevent.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libevent/libevent.mk b/package/libevent/libevent.mk
index 14ebf72..ec1ec5a 100644
--- a/package/libevent/libevent.mk
+++ b/package/libevent/libevent.mk
@@ -8,6 +8,8 @@ LIBEVENT_VERSION = 2.0.21
 LIBEVENT_SOURCE = libevent-$(LIBEVENT_VERSION)-stable.tar.gz
 LIBEVENT_SITE = https://github.com/downloads/libevent/libevent
 LIBEVENT_INSTALL_STAGING = YES
+LIBEVENT_LICENSE = BSD-3c
+LIBEVENT_LICENSE_FILES = LICENSE
 
 define LIBEVENT_REMOVE_PYSCRIPT
 	rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
-- 
1.8.5.5

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

* [Buildroot] [PATCH 08/54] libfreefare: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (5 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 07/54] libevent: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 21:52   ` Yann E. MORIN
  2014-06-24 18:55 ` [Buildroot] [PATCH 09/54] libgail: " Gustavo Zacarias
                   ` (47 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libfreefare/libfreefare.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libfreefare/libfreefare.mk b/package/libfreefare/libfreefare.mk
index 362cab2..27a3b34 100644
--- a/package/libfreefare/libfreefare.mk
+++ b/package/libfreefare/libfreefare.mk
@@ -7,6 +7,8 @@
 LIBFREEFARE_VERSION = 0.3.4
 LIBFREEFARE_SITE = http://libfreefare.googlecode.com/files
 LIBFREEFARE_DEPENDENCIES = libnfc openssl
+LIBFREEFARE_LICENSE = LGPLv3+
+LIBFREEFARE_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PREFER_STATIC_LIB),y)
 # openssl needs zlib even if the libfreefare example itself doesn't
-- 
1.8.5.5

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

* [Buildroot] [PATCH 09/54] libgail: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (6 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 08/54] libfreefare: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 21:55   ` Yann E. MORIN
  2014-06-25 20:42   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 10/54] libglade: " Gustavo Zacarias
                   ` (46 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libgail/libgail.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libgail/libgail.mk b/package/libgail/libgail.mk
index 3034b41..02b2735 100644
--- a/package/libgail/libgail.mk
+++ b/package/libgail/libgail.mk
@@ -10,6 +10,8 @@ LIBGAIL_SOURCE = gail-$(LIBGAIL_VERSION).tar.bz2
 LIBGAIL_SITE = http://ftp.gnome.org/pub/gnome/sources/gail/$(LIBGAIL_VERSION_MAJOR)
 LIBGAIL_AUTORECONF = YES
 LIBGAIL_INSTALL_STAGING = YES
+LIBGAIL_LICENSE = LGPLv2+
+LIBGAIL_LICENSE_FILES = COPYING
 
 ifneq ($(BR2_PACKAGE_XLIB_LIBX11),y)
 LIBGAIL_CONF_OPT += --disable-x
-- 
1.8.5.5

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

* [Buildroot] [PATCH 10/54] libglade: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (7 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 09/54] libgail: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 22:03   ` Yann E. MORIN
  2014-06-25 20:43   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 11/54] libgtk2: " Gustavo Zacarias
                   ` (45 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libglade/libglade.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libglade/libglade.mk b/package/libglade/libglade.mk
index e197122..b29d4e5 100644
--- a/package/libglade/libglade.mk
+++ b/package/libglade/libglade.mk
@@ -10,6 +10,8 @@ LIBGLADE_SOURCE = libglade-$(LIBGLADE_VERSION).tar.bz2
 LIBGLADE_SITE = http://ftp.gnome.org/pub/GNOME/sources/libglade/$(LIBGLADE_VERSION_MAJOR)/
 LIBGLADE_INSTALL_STAGING = YES
 LIBGLADE_DEPENDENCIES = host-pkgconf libglib2 libgtk2 atk libxml2
+LIBGLADE_LICENSE = LGPLV2+
+LIBGLADE_LICENSE_FILES = COPYING
 
 define LIBGLADE_INSTALL_FIX
 	rm -rf $(TARGET_DIR)/usr/share/xml/libglade \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 11/54] libgtk2: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (8 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 10/54] libglade: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 22:05   ` Yann E. MORIN
  2014-06-25 20:44   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 12/54] libhid: " Gustavo Zacarias
                   ` (44 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libgtk2/libgtk2.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libgtk2/libgtk2.mk b/package/libgtk2/libgtk2.mk
index cadca63..2ba9469 100644
--- a/package/libgtk2/libgtk2.mk
+++ b/package/libgtk2/libgtk2.mk
@@ -11,6 +11,8 @@ LIBGTK2_SOURCE = gtk+-$(LIBGTK2_VERSION).tar.xz
 LIBGTK2_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk+/$(LIBGTK2_VERSION_MAJOR)
 LIBGTK2_INSTALL_STAGING = YES
 LIBGTK2_INSTALL_TARGET = YES
+LIBGTK2_LICENSE = LGPLv2+
+LIBGTK2_LICENSE_FILES = COPYING
 
 LIBGTK2_AUTORECONF = YES
 
-- 
1.8.5.5

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

* [Buildroot] [PATCH 12/54] libhid: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (9 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 11/54] libgtk2: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 22:13   ` Yann E. MORIN
  2014-06-25 20:47   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 13/54] libical: " Gustavo Zacarias
                   ` (43 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libhid/libhid.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libhid/libhid.mk b/package/libhid/libhid.mk
index 30501d5..469a607 100644
--- a/package/libhid/libhid.mk
+++ b/package/libhid/libhid.mk
@@ -9,6 +9,8 @@ LIBHID_SITE = http://sources.buildroot.net/
 LIBHID_DEPENDENCIES = libusb-compat libusb
 LIBHID_INSTALL_STAGING = YES
 LIBHID_AUTORECONF = YES
+LIBHID_LICENSE = GPLv2
+LIBHID_LICENSE_FILES = COPYING
 # configure runs libusb-config for cflags/ldflags. Ensure it picks up
 # the target version
 LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(BR_PATH)
-- 
1.8.5.5

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

* [Buildroot] [PATCH 13/54] libical: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (10 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 12/54] libhid: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 22:21   ` Yann E. MORIN
  2014-06-24 18:55 ` [Buildroot] [PATCH 14/54] libiqrf: " Gustavo Zacarias
                   ` (42 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libical/libical.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libical/libical.mk b/package/libical/libical.mk
index cdee006..4025627 100644
--- a/package/libical/libical.mk
+++ b/package/libical/libical.mk
@@ -7,5 +7,7 @@
 LIBICAL_VERSION = 0.48
 LIBICAL_SITE = http://downloads.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
 LIBICAL_INSTALL_STAGING = YES
+LIBICAL_LICENSE = MPLv1.0 or LGPLv2.1
+LIBICAL_LICENSE_FILES = LICENSE
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 14/54] libiqrf: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (11 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 13/54] libical: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 22:23   ` Yann E. MORIN
  2014-06-25 20:52   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 15/54] libraw1394: " Gustavo Zacarias
                   ` (41 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libiqrf/libiqrf.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk
index ec0d599..0531602 100644
--- a/package/libiqrf/libiqrf.mk
+++ b/package/libiqrf/libiqrf.mk
@@ -7,7 +7,7 @@
 LIBIQRF_VERSION = v0.1.2
 LIBIQRF_SITE = $(call github,nandra,libiqrf,$(LIBIQRF_VERSION))
 LIBIQRF_INSTALL_STAGING = YES
-
 LIBIQRF_DEPENDENCIES = libusb
+LIBIQRF_LICENSE = LGPLv2.1+
 
 $(eval $(cmake-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 15/54] libraw1394: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (12 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 14/54] libiqrf: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-24 22:26   ` Yann E. MORIN
  2014-06-25 20:53   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 16/54] librsvg: " Gustavo Zacarias
                   ` (40 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libraw1394/libraw1394.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libraw1394/libraw1394.mk b/package/libraw1394/libraw1394.mk
index 166c782..108dde9 100644
--- a/package/libraw1394/libraw1394.mk
+++ b/package/libraw1394/libraw1394.mk
@@ -8,5 +8,7 @@ LIBRAW1394_VERSION = 2.0.7
 LIBRAW1394_SOURCE = libraw1394-$(LIBRAW1394_VERSION).tar.xz
 LIBRAW1394_SITE = $(BR2_KERNEL_MIRROR)/linux/libs/ieee1394
 LIBRAW1394_INSTALL_STAGING = YES
+LIBRAW1394_LICENSE = LGPLv2.1+
+LIBRAW1394_LICENSE_FILES = COPYING.LIB
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 16/54] librsvg: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (13 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 15/54] libraw1394: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 19:34   ` Yann E. MORIN
  2014-06-25 20:55   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 17/54] libsvgtiny: " Gustavo Zacarias
                   ` (39 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/librsvg/librsvg.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/librsvg/librsvg.mk b/package/librsvg/librsvg.mk
index 9385fe9..86dce41 100644
--- a/package/librsvg/librsvg.mk
+++ b/package/librsvg/librsvg.mk
@@ -10,6 +10,8 @@ LIBRSVG_SITE = http://ftp.gnome.org/pub/GNOME/sources/librsvg/$(LIBRSVG_VERSION_
 LIBRSVG_INSTALL_STAGING = YES
 LIBRSVG_CONF_OPT = --disable-tools
 LIBRSVG_DEPENDENCIES = libxml2 cairo pango libglib2 gdk-pixbuf
+LIBRSVG_LICENSE = LGPLv2+
+LIBRSVG_LICENSE_FILES = COPYING.LIB
 
 # If we have Gtk2, let's build it first to benefit from librsvg Gtk
 # support.
-- 
1.8.5.5

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

* [Buildroot] [PATCH 17/54] libsvgtiny: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (14 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 16/54] librsvg: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 19:38   ` Yann E. MORIN
  2014-06-25 20:55   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 18/54] libsysfs: " Gustavo Zacarias
                   ` (38 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libsvgtiny/libsvgtiny.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libsvgtiny/libsvgtiny.mk b/package/libsvgtiny/libsvgtiny.mk
index dd40452..a2d494e 100644
--- a/package/libsvgtiny/libsvgtiny.mk
+++ b/package/libsvgtiny/libsvgtiny.mk
@@ -8,6 +8,8 @@ LIBSVGTINY_SITE = svn://svn.netsurf-browser.org/trunk/libsvgtiny
 LIBSVGTINY_VERSION = 12121
 LIBSVGTINY_INSTALL_STAGING = YES
 LIBSVGTINY_DEPENDENCIES = libxml2 host-gperf host-pkgconf
+LIBSVGTINY_LICENSE = MIT
+LIBSVGTINY_LICENSE_FILES = README
 
 define LIBSVGTINY_BUILD_CMDS
 	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=/usr
-- 
1.8.5.5

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

* [Buildroot] [PATCH 18/54] libsysfs: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (15 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 17/54] libsvgtiny: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 19:41   ` Yann E. MORIN
                     ` (2 more replies)
  2014-06-24 18:55 ` [Buildroot] [PATCH 19/54] libv4l: " Gustavo Zacarias
                   ` (37 subsequent siblings)
  54 siblings, 3 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libsysfs/libsysfs.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libsysfs/libsysfs.mk b/package/libsysfs/libsysfs.mk
index 6bd3c5c..fb0310f 100644
--- a/package/libsysfs/libsysfs.mk
+++ b/package/libsysfs/libsysfs.mk
@@ -8,5 +8,7 @@ LIBSYSFS_VERSION = 2.1.0
 LIBSYSFS_SITE = http://downloads.sourceforge.net/project/linux-diag/sysfsutils/$(LIBSYSFS_VERSION)
 LIBSYSFS_SOURCE = sysfsutils-$(LIBSYSFS_VERSION).tar.gz
 LIBSYSFS_INSTALL_STAGING = YES
+LIBSYSFS_LICENSE = GPLv2 (utilities), LGPLv2.1+ (library)
+LIBSYSFS_LICENSE_FILES = cmd/GPL lib/LGPL
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 19/54] libv4l: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (16 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 18/54] libsysfs: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 19:50   ` Yann E. MORIN
  2014-06-24 18:55 ` [Buildroot] [PATCH 20/54] lsuio: " Gustavo Zacarias
                   ` (36 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/libv4l/libv4l.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/libv4l/libv4l.mk b/package/libv4l/libv4l.mk
index f62a4b6..56523d0 100644
--- a/package/libv4l/libv4l.mk
+++ b/package/libv4l/libv4l.mk
@@ -10,6 +10,8 @@ LIBV4L_SITE = http://linuxtv.org/downloads/v4l-utils/
 LIBV4L_INSTALL_STAGING = YES
 LIBV4L_MAKE_OPTS = PREFIX=/usr
 LIBV4L_DEPENDENCIES = jpeg
+LIBV4L_LICENSE = GPLv2+ (utiltiies), LGPLv2.1+ (libraries)
+LIBV4L_LICENSE_FILES = COPYING COPYING.LIB
 
 LIBV4L_DIRS_y += lib
 LIBV4L_DIRS_$(BR2_PACKAGE_LIBV4L_DECODE_TM6000)	+= utils/libv4l2util utils/decode_tm6000
-- 
1.8.5.5

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

* [Buildroot] [PATCH 20/54] lsuio: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (17 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 19/54] libv4l: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 20:08   ` Yann E. MORIN
  2014-06-25 21:03   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 21/54] nasm: " Gustavo Zacarias
                   ` (35 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/lsuio/lsuio.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/lsuio/lsuio.mk b/package/lsuio/lsuio.mk
index 4e4f592..5f8a965 100644
--- a/package/lsuio/lsuio.mk
+++ b/package/lsuio/lsuio.mk
@@ -6,5 +6,7 @@
 
 LSUIO_VERSION = 0.2.0
 LSUIO_SITE = http://www.osadl.org/projects/downloads/UIO/user
+LSUIO_LICENSE = GPLv2
+LSUIO_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 21/54] nasm: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (18 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 20/54] lsuio: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 20:10   ` Yann E. MORIN
  2014-06-25 21:03   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 22/54] ndisc6: " Gustavo Zacarias
                   ` (34 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/nasm/nasm.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/nasm/nasm.mk b/package/nasm/nasm.mk
index 18efa4a..b9077eb 100644
--- a/package/nasm/nasm.mk
+++ b/package/nasm/nasm.mk
@@ -5,8 +5,10 @@
 ################################################################################
 
 NASM_VERSION = 2.11.02
-NASM_SOURCE  = nasm-$(NASM_VERSION).tar.xz
-NASM_SITE    = http://www.nasm.us/pub/nasm/releasebuilds/$(NASM_VERSION)
+NASM_SOURCE = nasm-$(NASM_VERSION).tar.xz
+NASM_SITE = http://www.nasm.us/pub/nasm/releasebuilds/$(NASM_VERSION)
+NASM_LICENSE = BSD-2c
+NASM_LICENSE_FILES = LICENSE
 
 $(eval $(autotools-package))
 $(eval $(host-autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 22/54] ndisc6: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (19 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 21/54] nasm: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 20:14   ` Yann E. MORIN
  2014-06-25 21:04   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 23/54] netplug: " Gustavo Zacarias
                   ` (33 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/ndisc6/ndisc6.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/ndisc6/ndisc6.mk b/package/ndisc6/ndisc6.mk
index 719f85d..257289d 100644
--- a/package/ndisc6/ndisc6.mk
+++ b/package/ndisc6/ndisc6.mk
@@ -9,6 +9,8 @@ NDISC6_SOURCE = ndisc6-$(NDISC6_VERSION).tar.bz2
 NDISC6_SITE = http://www.remlab.net/files/ndisc6/
 NDISC6_CONF_ENV = CC="$(TARGET_CC) -std=gnu99"
 NDISC6_CONF_OPT = --localstatedir=/var --disable-rpath --disable-suid-install
+NDISC6_LICENSE = GPLv2 or GPLv3
+NDISC6_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
 NDISC6_DEPENDENCIES += gettext
-- 
1.8.5.5

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

* [Buildroot] [PATCH 23/54] netplug: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (20 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 22/54] ndisc6: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 20:20   ` Yann E. MORIN
  2014-06-25 21:07   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 24/54] network-manager: " Gustavo Zacarias
                   ` (32 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/netplug/netplug.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/netplug/netplug.mk b/package/netplug/netplug.mk
index 5756281..0bd7c78 100644
--- a/package/netplug/netplug.mk
+++ b/package/netplug/netplug.mk
@@ -7,6 +7,8 @@
 NETPLUG_VERSION = 1.2.9.2
 NETPLUG_SOURCE = netplug-$(NETPLUG_VERSION).tar.bz2
 NETPLUG_SITE = http://www.red-bean.com/~bos/netplug
+NETPLUG_LICENSE = GPLv2
+NETPLUG_LICENSE_FILES = COPYING
 
 define NETPLUG_BUILD_CMDS
 	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
-- 
1.8.5.5

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

* [Buildroot] [PATCH 24/54] network-manager: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (21 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 23/54] netplug: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 20:26   ` Yann E. MORIN
  2014-06-25 21:07   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 25/54] open2300: " Gustavo Zacarias
                   ` (31 subsequent siblings)
  54 siblings, 2 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/network-manager/network-manager.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/network-manager/network-manager.mk b/package/network-manager/network-manager.mk
index 3555f00..932ce8f 100644
--- a/package/network-manager/network-manager.mk
+++ b/package/network-manager/network-manager.mk
@@ -11,6 +11,8 @@ NETWORK_MANAGER_SITE = http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/$(N
 NETWORK_MANAGER_INSTALL_STAGING = YES
 NETWORK_MANAGER_DEPENDENCIES = host-pkgconf udev dbus-glib libnl gnutls \
 	libgcrypt wireless_tools util-linux host-intltool readline libndp
+NETWORK_MANAGER_LICENSE = GPLv2+ (app), LGPLv2+ (libnm-util, libgsystem)
+NETWORK_MANAGER_LICENSE_FILES = COPYING libnm-util/COPYING libgsystem/COPYING
 
 NETWORK_MANAGER_CONF_ENV = \
 	ac_cv_path_LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 25/54] open2300: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (22 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 24/54] network-manager: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 21:08   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 26/54] openocd: " Gustavo Zacarias
                   ` (30 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/open2300/open2300.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/open2300/open2300.mk b/package/open2300/open2300.mk
index a89c9a2..307fffe 100644
--- a/package/open2300/open2300.mk
+++ b/package/open2300/open2300.mk
@@ -4,9 +4,11 @@
 #
 ################################################################################
 
-OPEN2300_SITE        = http://www.lavrsen.dk/svn/open2300/trunk/
+OPEN2300_SITE = http://www.lavrsen.dk/svn/open2300/trunk/
 OPEN2300_SITE_METHOD = svn
-OPEN2300_VERSION     = 12
+OPEN2300_VERSION = 12
+OPEN2300_LICENSE = GPLv2
+OPEN2300_LICENSE_FILES = COPYING
 
 OPEN2300_BINS = open2300 dump2300 log2300 fetch2300 wu2300 cw2300 history2300 \
 		histlog2300 bin2300 xml2300 light2300 interval2300 minmax2300
-- 
1.8.5.5

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

* [Buildroot] [PATCH 26/54] openocd: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (23 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 25/54] open2300: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 21:10   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 27/54] pango: " Gustavo Zacarias
                   ` (29 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/openocd/openocd.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/openocd/openocd.mk b/package/openocd/openocd.mk
index ac3cd77..24ac0ca 100644
--- a/package/openocd/openocd.mk
+++ b/package/openocd/openocd.mk
@@ -7,6 +7,8 @@
 OPENOCD_VERSION = 0.5.0
 OPENOCD_SOURCE = openocd-$(OPENOCD_VERSION).tar.bz2
 OPENOCD_SITE = http://downloads.sourceforge.net/project/openocd/openocd/$(OPENOCD_VERSION)
+OPENOCD_LICENSE = GPLv2+
+OPENOCD_LICENSE_FILES = COPYING
 
 OPENOCD_AUTORECONF = YES
 OPENOCD_CONF_OPT = \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 27/54] pango: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (24 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 26/54] openocd: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-25 21:10   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 28/54] proxychains-ng: " Gustavo Zacarias
                   ` (28 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/pango/pango.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/pango/pango.mk b/package/pango/pango.mk
index 31d92ba..7e5f9a7 100644
--- a/package/pango/pango.mk
+++ b/package/pango/pango.mk
@@ -6,11 +6,12 @@
 
 PANGO_VERSION_MAJOR = 1.28
 PANGO_VERSION = $(PANGO_VERSION_MAJOR).4
-
 PANGO_SOURCE = pango-$(PANGO_VERSION).tar.bz2
 PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/$(PANGO_VERSION_MAJOR)
 PANGO_AUTORECONF = YES
 PANGO_INSTALL_STAGING = YES
+PANGO_LICENSE = LGPLv2+
+PANGO_LICENSE_FILES = COPYING
 
 PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
 		glib_cv_uscore=no ac_cv_func_strtod=yes \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 28/54] proxychains-ng: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (25 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 27/54] pango: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26  7:47   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 29/54] python-id3: " Gustavo Zacarias
                   ` (27 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/proxychains-ng/proxychains-ng.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/proxychains-ng/proxychains-ng.mk b/package/proxychains-ng/proxychains-ng.mk
index 7c2ffbf..5415f04 100644
--- a/package/proxychains-ng/proxychains-ng.mk
+++ b/package/proxychains-ng/proxychains-ng.mk
@@ -7,6 +7,8 @@
 PROXYCHAINS_NG_VERSION = 4.6
 PROXYCHAINS_NG_SOURCE = proxychains-$(PROXYCHAINS_NG_VERSION).tar.bz2
 PROXYCHAINS_NG_SITE = http://downloads.sourceforge.net/project/proxychains-ng
+PROXYCHAINS_NG_LICENSE = GPLv2+
+PROXYCHAINS_NG_LICENSE_FILES =  COPYING
 
 define PROXYCHAINS_NG_CONFIGURE_CMDS
 	cd $(@D) && \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 29/54] python-id3: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (26 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 28/54] proxychains-ng: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26  9:41   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 30/54] python-dpkt: " Gustavo Zacarias
                   ` (26 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/python-id3/python-id3.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/python-id3/python-id3.mk b/package/python-id3/python-id3.mk
index 5957f64..157576e 100644
--- a/package/python-id3/python-id3.mk
+++ b/package/python-id3/python-id3.mk
@@ -8,5 +8,7 @@ PYTHON_ID3_VERSION = 1.2
 PYTHON_ID3_SOURCE = id3-py_$(PYTHON_ID3_VERSION).tar.gz
 PYTHON_ID3_SITE = http://downloads.sourceforge.net/project/id3-py/id3-py/$(PYTHON_ID3_VERSION)
 PYTHON_ID3_SETUP_TYPE = distutils
+PYTHON_ID3_LICENSE = GPLv2+
+PYTHON_ID3_LICENSE_FILES = COPYING
 
 $(eval $(python-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 30/54] python-dpkt: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (27 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 29/54] python-id3: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 11:06   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 31/54] python-mad: " Gustavo Zacarias
                   ` (25 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/python-dpkt/python-dpkt.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/python-dpkt/python-dpkt.mk b/package/python-dpkt/python-dpkt.mk
index 0b3dc11..fb630fb 100644
--- a/package/python-dpkt/python-dpkt.mk
+++ b/package/python-dpkt/python-dpkt.mk
@@ -5,8 +5,10 @@
 ################################################################################
 
 PYTHON_DPKT_VERSION = 1.7
-PYTHON_DPKT_SOURCE  = dpkt-$(PYTHON_DPKT_VERSION).tar.gz
-PYTHON_DPKT_SITE    = http://dpkt.googlecode.com/files
+PYTHON_DPKT_SOURCE = dpkt-$(PYTHON_DPKT_VERSION).tar.gz
+PYTHON_DPKT_SITE = http://dpkt.googlecode.com/files
 PYTHON_DPKT_SETUP_TYPE = distutils
+PYTHON_DPKT_LICENSE = BSD-3c
+PYTHON_DPKT_LICENSE_FILES = LICENSE
 
 $(eval $(python-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 31/54] python-mad: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (28 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 30/54] python-dpkt: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 11:27   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 32/54] python-pygame: " Gustavo Zacarias
                   ` (24 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/python-mad/python-mad.mk | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/package/python-mad/python-mad.mk b/package/python-mad/python-mad.mk
index 1b3cb75..a476fe1 100644
--- a/package/python-mad/python-mad.mk
+++ b/package/python-mad/python-mad.mk
@@ -5,9 +5,11 @@
 ################################################################################
 
 PYTHON_MAD_VERSION = 0.6
-PYTHON_MAD_SOURCE  = pymad-$(PYTHON_MAD_VERSION).tar.gz
-PYTHON_MAD_SITE    = http://spacepants.org/src/pymad/download/
+PYTHON_MAD_SOURCE = pymad-$(PYTHON_MAD_VERSION).tar.gz
+PYTHON_MAD_SITE = http://spacepants.org/src/pymad/download/
 PYTHON_MAD_SETUP_TYPE = distutils
+PYTHON_MAD_LICENSE = GPLv2+
+PYTHON_MAD_LICENSE_FILES = COPYING
 
 PYTHON_MAD_DEPENDENCIES = libmad
 
-- 
1.8.5.5

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

* [Buildroot] [PATCH 32/54] python-pygame: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (29 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 31/54] python-mad: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 11:50   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 33/54] rubix: " Gustavo Zacarias
                   ` (23 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/python-pygame/python-pygame.mk | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/package/python-pygame/python-pygame.mk b/package/python-pygame/python-pygame.mk
index 2278a5c..51f1c20 100644
--- a/package/python-pygame/python-pygame.mk
+++ b/package/python-pygame/python-pygame.mk
@@ -7,10 +7,12 @@
 # stable 1.9.1 release requires V4L which has been wiped out of recent Linux
 # kernels, so use latest mercurial revision until next stable release is out.
 PYTHON_PYGAME_VERSION = f0bb4a4b365d
-PYTHON_PYGAME_SOURCE  = pygame-$(PYTHON_PYGAME_VERSION).tar.gz
+PYTHON_PYGAME_SOURCE = pygame-$(PYTHON_PYGAME_VERSION).tar.gz
 PYTHON_PYGAME_SITE = https://bitbucket.org/pygame/pygame
 PYTHON_PYGAME_SITE_METHOD = hg
 PYTHON_PYGAME_SETUP_TYPE = distutils
+PYTHON_PYGAME_LICENSE = LGPLv2.1+
+PYTHON_PYGAME_LICENSE_FILES = LGPL
 
 ifeq ($(BR2_PACKAGE_PYTHON_PYGAME_IMAGE),y)
 PYTHON_PYGAME_OPT_DEPENDS += sdl_image
-- 
1.8.5.5

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

* [Buildroot] [PATCH 33/54] rubix: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (30 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 32/54] python-pygame: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 14:35   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 34/54] sane-backends: " Gustavo Zacarias
                   ` (22 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/rubix/rubix.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/rubix/rubix.mk b/package/rubix/rubix.mk
index 732f807..5427830 100644
--- a/package/rubix/rubix.mk
+++ b/package/rubix/rubix.mk
@@ -8,6 +8,8 @@ RUBIX_VERSION = 1.0.5
 RUBIX_SOURCE = rubix-$(RUBIX_VERSION).tar.bz2
 RUBIX_SITE = http://mirror.egtvedt.no/avr32linux.org/twiki/pub/Main/Rubix
 RUBIX_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
+RUBIX_LICENSE = Public Domain
+RUBIX_LICENSE_FILES = LICENCE
 
 RUBIX_MAKE_OPT = CC="$(TARGET_CC)" XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11"
 
-- 
1.8.5.5

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

* [Buildroot] [PATCH 34/54] sane-backends: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (31 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 33/54] rubix: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 14:35   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 35/54] shared-mime-info: " Gustavo Zacarias
                   ` (21 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sane-backends/sane-backends.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/sane-backends/sane-backends.mk b/package/sane-backends/sane-backends.mk
index 52c5aa7..6a6fa0b 100644
--- a/package/sane-backends/sane-backends.mk
+++ b/package/sane-backends/sane-backends.mk
@@ -7,6 +7,8 @@
 SANE_BACKENDS_VERSION = 1.0.22
 SANE_BACKENDS_SITE = http://sources.buildroot.net/
 SANE_BACKENDS_CONFIG_SCRIPTS = sane-config
+SANE_BACKENDS_LICENSE = GPLv2+
+SANE_BACKENDS_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_LIBUSB),y)
 SANE_BACKENDS_DEPENDENCIES += libusb
-- 
1.8.5.5

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

* [Buildroot] [PATCH 35/54] shared-mime-info: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (32 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 34/54] sane-backends: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 14:36   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 36/54] socketcand: " Gustavo Zacarias
                   ` (20 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/shared-mime-info/shared-mime-info.mk | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/package/shared-mime-info/shared-mime-info.mk b/package/shared-mime-info/shared-mime-info.mk
index d147bb7..2f9126b 100644
--- a/package/shared-mime-info/shared-mime-info.mk
+++ b/package/shared-mime-info/shared-mime-info.mk
@@ -7,14 +7,13 @@
 SHARED_MIME_INFO_VERSION = 0.90
 SHARED_MIME_INFO_SOURCE = shared-mime-info-$(SHARED_MIME_INFO_VERSION).tar.bz2
 SHARED_MIME_INFO_SITE = http://freedesktop.org/~hadess
-
 SHARED_MIME_INFO_INSTALL_STAGING = YES
-
 SHARED_MIME_INFO_CONF_ENV = XMLLINT=$(HOST_DIR)/usr/bin/xmllint
 SHARED_MIME_INFO_DEPENDENCIES = host-pkgconf host-libglib2 host-libxml2 host-shared-mime-info libxml2 libglib2
-
 SHARED_MIME_INFO_CONF_OPT = --disable-update-mimedb
 SHARED_MIME_INFO_MAKE = $(MAKE1)
+SHARED_MIME_INFO_LICENSE = GPLv2
+SHARED_MIME_INFO_LICENSE_FILES = COPYING
 
 HOST_SHARED_MIME_INFO_DEPENDENCIES = host-pkgconf host-intltool
 
-- 
1.8.5.5

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

* [Buildroot] [PATCH 36/54] socketcand: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (33 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 35/54] shared-mime-info: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:00   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 37/54] squashfs: " Gustavo Zacarias
                   ` (19 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/socketcand/socketcand.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/socketcand/socketcand.mk b/package/socketcand/socketcand.mk
index fdba96e..51aa224 100644
--- a/package/socketcand/socketcand.mk
+++ b/package/socketcand/socketcand.mk
@@ -7,6 +7,7 @@
 SOCKETCAND_VERSION = 274e4e44107f6138a29bbc4e20f9fbd2a7d4dab1
 SOCKETCAND_SITE = $(call github,dschanoeh,socketcand,$(SOCKETCAND_VERSION))
 SOCKETCAND_AUTORECONF = YES
+SOCKETCAND_LICENSE = BSD-3c or GPLv2
 
 ifeq ($(BR2_PACKAGE_LIBCONFIG),y)
 SOCKETCAND_DEPENDENCIES = libconfig
-- 
1.8.5.5

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

* [Buildroot] [PATCH 37/54] squashfs: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (34 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 36/54] socketcand: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:01   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 38/54] sredird: " Gustavo Zacarias
                   ` (18 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/squashfs/squashfs.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/squashfs/squashfs.mk b/package/squashfs/squashfs.mk
index aaf568c..58dcb62 100644
--- a/package/squashfs/squashfs.mk
+++ b/package/squashfs/squashfs.mk
@@ -7,6 +7,8 @@
 SQUASHFS_VERSION = 4.3
 SQUASHFS_SOURCE = squashfs$(SQUASHFS_VERSION).tar.gz
 SQUASHFS_SITE = http://downloads.sourceforge.net/project/squashfs/squashfs/squashfs$(SQUASHFS_VERSION)
+SQUASHFS_LICENSE = GPLv2+
+SQUASHFS_LICENSE_FILES = COPYING
 
 # no libattr in BR
 SQUASHFS_MAKE_ARGS = XATTR_SUPPORT=0
-- 
1.8.5.5

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

* [Buildroot] [PATCH 38/54] sredird: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (35 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 37/54] squashfs: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:02   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 39/54] statserial: " Gustavo Zacarias
                   ` (17 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sredird/sredird.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/sredird/sredird.mk b/package/sredird/sredird.mk
index afb2dff..0a0f398 100644
--- a/package/sredird/sredird.mk
+++ b/package/sredird/sredird.mk
@@ -7,6 +7,8 @@
 SREDIRD_VERSION = 2.2.1-1.1
 SREDIRD_SOURCE = sredird_$(SREDIRD_VERSION).tar.gz
 SREDIRD_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/s/sredird
+SREDIRD_LICENSE = GPLv2+
+SREDIRD_LICENSE_FILES = COPYING
 
 define SREDIRD_BUILD_CMDS
 	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
-- 
1.8.5.5

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

* [Buildroot] [PATCH 39/54] statserial: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (36 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 38/54] sredird: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:02   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 40/54] synergy: " Gustavo Zacarias
                   ` (16 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/statserial/statserial.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/statserial/statserial.mk b/package/statserial/statserial.mk
index 25989bc..e59267a 100644
--- a/package/statserial/statserial.mk
+++ b/package/statserial/statserial.mk
@@ -7,6 +7,8 @@
 STATSERIAL_VERSION = 1.1
 STATSERIAL_SITE = http://www.ibiblio.org/pub/Linux/system/serial/
 STATSERIAL_DEPENDENCIES = ncurses
+STATSERIAL_LICENSE = GPLv2+
+STATSERIAL_LICENSE_FILES = COPYING
 
 define STATSERIAL_BUILD_CMDS
 	$(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" -C $(@D)
-- 
1.8.5.5

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

* [Buildroot] [PATCH 40/54] synergy: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (37 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 39/54] statserial: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:03   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 41/54] sysprof: " Gustavo Zacarias
                   ` (15 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/synergy/synergy.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/synergy/synergy.mk b/package/synergy/synergy.mk
index 89a3d49..cd5a7a5 100644
--- a/package/synergy/synergy.mk
+++ b/package/synergy/synergy.mk
@@ -6,12 +6,12 @@
 
 SYNERGY_VERSION = 1.3.1
 SYNERGY_SITE = http://downloads.sourceforge.net/project/synergy2/Sources/$(SYNERGY_VERSION)
-
 SYNERGY_AUTORECONF = YES
 SYNERGY_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
                    --x-libraries=$(STAGING_DIR)/usr/lib
-
 SYNERGY_DEPENDENCIES = xlib_libXtst \
 		$(if $(BR2_PACKAGE_XLIB_LIBXINERAMA),xlib_libXinerama)
+SYNERGY_LICENSE = GPLv2
+SYNERGY_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 41/54] sysprof: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (38 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 40/54] synergy: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:04   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 42/54] transmission: " Gustavo Zacarias
                   ` (14 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/sysprof/sysprof.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/sysprof/sysprof.mk b/package/sysprof/sysprof.mk
index 4f6ed54..0650781 100644
--- a/package/sysprof/sysprof.mk
+++ b/package/sysprof/sysprof.mk
@@ -7,6 +7,8 @@
 SYSPROF_VERSION = 1.2.0
 SYSPROF_SITE = http://sysprof.com
 SYSPROF_DEPENDENCIES = libglib2
+SYSPROF_LICENSE = GPLv2+
+SYSPROF_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_SYSPROF_GUI),y)
 SYSPROF_DEPENDENCIES += libgtk2 libglade gdk-pixbuf
-- 
1.8.5.5

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

* [Buildroot] [PATCH 42/54] transmission: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (39 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 41/54] sysprof: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:06   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 43/54] uclibc: " Gustavo Zacarias
                   ` (13 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/transmission/transmission.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/transmission/transmission.mk b/package/transmission/transmission.mk
index 37cc58b..f9fb9f8 100644
--- a/package/transmission/transmission.mk
+++ b/package/transmission/transmission.mk
@@ -15,10 +15,11 @@ TRANSMISSION_DEPENDENCIES = \
 	openssl \
 	zlib
 TRANSMISSION_AUTORECONF = YES
-
 TRANSMISSION_CONF_OPT = \
 	--disable-libnotify \
 	--enable-lightweight
+TRANSMISSION_LICENSE = GPLv2 or GPLv3
+TRANSMISSION_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_PACKAGE_TRANSMISSION_UTP),y)
 	TRANSMISSION_CONF_OPT += --enable-utp
-- 
1.8.5.5

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

* [Buildroot] [PATCH 43/54] uclibc: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (40 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 42/54] transmission: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:09   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 44/54] xapp_xinit: " Gustavo Zacarias
                   ` (12 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/uclibc/uclibc.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/uclibc/uclibc.mk b/package/uclibc/uclibc.mk
index 4394030..19eb484 100644
--- a/package/uclibc/uclibc.mk
+++ b/package/uclibc/uclibc.mk
@@ -6,6 +6,8 @@
 
 UCLIBC_VERSION = $(call qstrip,$(BR2_UCLIBC_VERSION_STRING))
 UCLIBC_SOURCE ?= uClibc-$(UCLIBC_VERSION).tar.bz2
+UCLIBC_LICENSE = LGPLv2.1+
+UCLIBC_LICENSE_FILES = COPYING.LIB
 
 ifeq ($(BR2_UCLIBC_VERSION_SNAPSHOT),y)
 UCLIBC_SITE = http://www.uclibc.org/downloads/snapshots
-- 
1.8.5.5

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

* [Buildroot] [PATCH 44/54] xapp_xinit: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (41 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 43/54] uclibc: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:09   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 45/54] x11vnc: " Gustavo Zacarias
                   ` (11 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/x11r7/xapp_xinit/xapp_xinit.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/x11r7/xapp_xinit/xapp_xinit.mk b/package/x11r7/xapp_xinit/xapp_xinit.mk
index 77d3dd4..76197e5 100644
--- a/package/x11r7/xapp_xinit/xapp_xinit.mk
+++ b/package/x11r7/xapp_xinit/xapp_xinit.mk
@@ -8,5 +8,7 @@ XAPP_XINIT_VERSION = 1.3.3
 XAPP_XINIT_SOURCE = xinit-$(XAPP_XINIT_VERSION).tar.bz2
 XAPP_XINIT_SITE = http://xorg.freedesktop.org/releases/individual/app
 XAPP_XINIT_DEPENDENCIES = xapp_xauth xlib_libX11
+XAPP_XINIT_LICENSE = MIT
+XAPP_XINIT_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 45/54] x11vnc: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (42 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 44/54] xapp_xinit: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:10   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 46/54] nbd: updatel icense information Gustavo Zacarias
                   ` (10 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/x11vnc/x11vnc.mk | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/x11vnc/x11vnc.mk b/package/x11vnc/x11vnc.mk
index a2d68f6..bd0f530 100644
--- a/package/x11vnc/x11vnc.mk
+++ b/package/x11vnc/x11vnc.mk
@@ -9,8 +9,9 @@ X11VNC_SITE = http://downloads.sourceforge.net/project/libvncserver/x11vnc/$(X11
 # sdl support is not used in x11vnc, but host include / library search paths
 # leak in if host has sdl-config
 X11VNC_CONF_OPT = --without-sdl
-
 X11VNC_DEPENDENCIES = xlib_libXt xlib_libXext xlib_libXtst
+X11VNC_LICENSE = GPLv2+
+X11VNC_LICENSE_FILES = COPYING
 
 ifneq ($(BR2_INET_IPV6),y)
 # configure option only used for libvncserver
-- 
1.8.5.5

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

* [Buildroot] [PATCH 46/54] nbd: updatel icense information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (43 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 45/54] x11vnc: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-26 15:11   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 47/54] avrdude: add license information Gustavo Zacarias
                   ` (9 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/nbd/nbd.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/nbd/nbd.mk b/package/nbd/nbd.mk
index 6c31180..7348e0e 100644
--- a/package/nbd/nbd.mk
+++ b/package/nbd/nbd.mk
@@ -10,6 +10,7 @@ NBD_SITE = http://downloads.sourceforge.net/project/nbd/nbd/$(NBD_VERSION)
 NBD_CONF_OPT = $(if $(BR2_LARGEFILE),--enable-lfs,--disable-lfs)
 NBD_DEPENDENCIES = libglib2
 NBD_LICENSE = GPLv2
+NBD_LICENSE_FILES = COPYING
 
 ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y)
 # We have linux/falloc.h
-- 
1.8.5.5

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

* [Buildroot] [PATCH 47/54] avrdude: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (44 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 46/54] nbd: updatel icense information Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:47   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 48/54] freerdp: fix typo in " Gustavo Zacarias
                   ` (8 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/avrdude/avrdude.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/avrdude/avrdude.mk b/package/avrdude/avrdude.mk
index b45baaf..7876c1d 100644
--- a/package/avrdude/avrdude.mk
+++ b/package/avrdude/avrdude.mk
@@ -14,6 +14,8 @@ AVRDUDE_SUBDIR = avrdude
 AVRDUDE_AUTORECONF = YES
 AVRDUDE_DEPENDENCIES = libelf libusb libusb-compat ncurses \
 	host-flex host-bison
+AVRDUDE_LICENSE = GPLv2+
+AVRDUDE_LICENSE_FILES = avrdude/COPYING
 
 ifeq ($(BR2_PACKAGE_LIBFTDI),y)
 AVRDUDE_DEPENDENCIES += libftdi
-- 
1.8.5.5

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

* [Buildroot] [PATCH 48/54] freerdp: fix typo in license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (45 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 47/54] avrdude: add license information Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:47   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 49/54] gqview: add " Gustavo Zacarias
                   ` (7 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/freerdp/freerdp.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/freerdp/freerdp.mk b/package/freerdp/freerdp.mk
index 90ede04..26688aa 100644
--- a/package/freerdp/freerdp.mk
+++ b/package/freerdp/freerdp.mk
@@ -9,7 +9,7 @@ FREERDP_SITE = $(call github,FreeRDP,FreeRDP,$(FREERDP_VERSION))
 FREERDP_DEPENDENCIES = openssl zlib \
 	xlib_libX11 xlib_libXt xlib_libXext xlib_libXcursor
 FREERDP_LICENSE = Apache-2.0
-FREEDRP_LICENSE_FILES = LICENSE
+FREERDP_LICENSE_FILES = LICENSE
 
 ifeq ($(BR2_PACKAGE_CUPS),y)
 FREERDP_CONF_OPT += -DWITH_CUPS=ON
-- 
1.8.5.5

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

* [Buildroot] [PATCH 49/54] gqview: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (46 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 48/54] freerdp: fix typo in " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:48   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 50/54] gptfdisk: " Gustavo Zacarias
                   ` (6 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gqview/gqview.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/gqview/gqview.mk b/package/gqview/gqview.mk
index 07cb5ad..8962025 100644
--- a/package/gqview/gqview.mk
+++ b/package/gqview/gqview.mk
@@ -8,5 +8,7 @@ GQVIEW_VERSION = 2.1.5
 GQVIEW_SITE = http://prdownloads.sourceforge.net/gqview
 GQVIEW_DEPENDENCIES = host-pkgconf libgtk2
 GQVIEW_CONF_ENV = LIBS="-lm"
+GQVIEW_LICENSE = GPLv2
+GQVIEW_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 50/54] gptfdisk: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (47 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 49/54] gqview: add " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:49   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 51/54] startup-notification: " Gustavo Zacarias
                   ` (5 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gptfdisk/gptfdisk.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/gptfdisk/gptfdisk.mk b/package/gptfdisk/gptfdisk.mk
index 22bf180..6835f40 100644
--- a/package/gptfdisk/gptfdisk.mk
+++ b/package/gptfdisk/gptfdisk.mk
@@ -6,6 +6,8 @@
 
 GPTFDISK_VERSION = 0.8.6
 GPTFDISK_SITE = http://downloads.sourceforge.net/sourceforge/gptfdisk
+GPTFDISK_LICENSE = GPLv2+
+GPTFDISK_LICENSE_FILES = COPYING
 
 GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_GDISK) += gdisk
 GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_SGDISK) += sgdisk
-- 
1.8.5.5

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

* [Buildroot] [PATCH 51/54] startup-notification: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (48 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 50/54] gptfdisk: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:52   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 52/54] protobuf-c: update " Gustavo Zacarias
                   ` (4 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/startup-notification/startup-notification.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/startup-notification/startup-notification.mk b/package/startup-notification/startup-notification.mk
index 140b681..902805a 100644
--- a/package/startup-notification/startup-notification.mk
+++ b/package/startup-notification/startup-notification.mk
@@ -12,5 +12,7 @@ STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
 STARTUP_NOTIFICATION_CONF_OPT = --with-x \
 	--x-includes="$(STAGING_DIR)/usr/include/X11" \
 	--x-libraries="$(STAGING_DIR)/usr/lib"
+STARTUP_NOTIFICATION_LICENSE = LGPLv2
+STARTUP_NOTIFICATION_LICENSE_FILES = COPYING
 
 $(eval $(autotools-package))
-- 
1.8.5.5

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

* [Buildroot] [PATCH 52/54] protobuf-c: update license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (49 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 51/54] startup-notification: " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:54   ` Peter Korsgaard
  2014-06-24 18:55 ` [Buildroot] [PATCH 53/54] ti-utils: add " Gustavo Zacarias
                   ` (3 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/protobuf-c/protobuf-c.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/protobuf-c/protobuf-c.mk b/package/protobuf-c/protobuf-c.mk
index da0b139..7cfc2e1 100644
--- a/package/protobuf-c/protobuf-c.mk
+++ b/package/protobuf-c/protobuf-c.mk
@@ -12,6 +12,7 @@ PROTOBUF_C_MAKE = $(MAKE1)
 PROTOBUF_C_CONF_OPT = --disable-protoc
 PROTOBUF_C_INSTALL_STAGING = YES
 PROTOBUF_C_LICENSE = BSD-3c
+PROTOBUF_C_LICENSE_FILES = LICENSE
 PROTOBUF_C_AUTORECONF = YES
 HOST_PROTOBUF_C_AUTORECONF = YES
 
-- 
1.8.5.5

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

* [Buildroot] [PATCH 53/54] ti-utils: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (50 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 52/54] protobuf-c: update " Gustavo Zacarias
@ 2014-06-24 18:55 ` Gustavo Zacarias
  2014-06-27  6:57   ` Peter Korsgaard
  2014-06-24 18:56 ` [Buildroot] [PATCH 54/54] metacity: " Gustavo Zacarias
                   ` (2 subsequent siblings)
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:55 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/ti-utils/ti-utils.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/ti-utils/ti-utils.mk b/package/ti-utils/ti-utils.mk
index 1d1c1e6..c0a3663 100644
--- a/package/ti-utils/ti-utils.mk
+++ b/package/ti-utils/ti-utils.mk
@@ -7,6 +7,8 @@
 TI_UTILS_VERSION = 06dbdb2727354b5f3ad7c723897f40051fddee49
 TI_UTILS_SITE = $(call github,gxk,ti-utils,$(TI_UTILS_VERSION))
 TI_UTILS_DEPENDENCIES = libnl
+TI_UTILS_LICENSE = BSD-3c
+TI_UTILS_LICENSE_FILES = COPYING
 
 define TI_UTILS_BUILD_CMDS
 	$(MAKE1) NFSROOT="$(STAGING_DIR)" \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 54/54] metacity: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (51 preceding siblings ...)
  2014-06-24 18:55 ` [Buildroot] [PATCH 53/54] ti-utils: add " Gustavo Zacarias
@ 2014-06-24 18:56 ` Gustavo Zacarias
  2014-06-27  6:57   ` Peter Korsgaard
  2014-06-24 21:33 ` [Buildroot] [PATCH 01/54] gvfs: " Yann E. MORIN
  2014-06-25 20:38 ` Peter Korsgaard
  54 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 18:56 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/metacity/metacity.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/package/metacity/metacity.mk b/package/metacity/metacity.mk
index 0df09c4..6ded5d1 100644
--- a/package/metacity/metacity.mk
+++ b/package/metacity/metacity.mk
@@ -9,6 +9,8 @@ METACITY_VERSION_MAJOR = 2.25
 METACITY_VERSION = $(METACITY_VERSION_MAJOR).1
 METACITY_SOURCE = metacity-$(METACITY_VERSION).tar.bz2
 METACITY_SITE = http://ftp.gnome.org/pub/gnome/sources/metacity/$(METACITY_VERSION_MAJOR)
+METACITY_LICENSE = GPLv2+
+METACITY_LICENSE_FILES = COPYING
 
 METACITY_CONF_OPT = --x-includes=$(STAGING_DIR)/usr/include/X11 \
 		--x-libraries=$(STAGING_DIR)/usr/lib \
-- 
1.8.5.5

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

* [Buildroot] [PATCH 02/54] irda-utils: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 02/54] irda-utils: " Gustavo Zacarias
@ 2014-06-24 19:12   ` Yann E. MORIN
  2014-06-24 19:13     ` Gustavo Zacarias
  0 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 19:12 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/gtkperf/gtkperf.mk       | 2 ++
>  package/irda-utils/irda-utils.mk | 2 ++

Maybe this should have been two patches? ;-)

Hey, I can understand how repetitive this taks must have been. ;-)

Regards,
Yann E. MORIN.

>  2 files changed, 4 insertions(+)
> 
> diff --git a/package/gtkperf/gtkperf.mk b/package/gtkperf/gtkperf.mk
> index fa9531d..0542a26 100644
> --- a/package/gtkperf/gtkperf.mk
> +++ b/package/gtkperf/gtkperf.mk
> @@ -8,5 +8,7 @@ GTKPERF_VERSION = 0.40
>  GTKPERF_SOURCE = gtkperf_$(GTKPERF_VERSION).tar.gz
>  GTKPERF_SITE = http://downloads.sourceforge.net/project/gtkperf/gtkperf/$(GTKPERF_VERSION)
>  GTKPERF_DEPENDENCIES = libgtk2
> +GTKPERF_LICENSE = GPLv2
> +GTKPERF_LICENSE_FILES = COPYING
>  
>  $(eval $(autotools-package))
> diff --git a/package/irda-utils/irda-utils.mk b/package/irda-utils/irda-utils.mk
> index 4be80d7..e4958e5 100644
> --- a/package/irda-utils/irda-utils.mk
> +++ b/package/irda-utils/irda-utils.mk
> @@ -6,6 +6,8 @@
>  
>  IRDA_UTILS_VERSION = 0.9.18
>  IRDA_UTILS_SITE = http://downloads.sourceforge.net/project/irda/irda-utils/$(IRDA_UTILS_VERSION)
> +IRDA_UTILS_LICENSE = GPLv2+
> +IRDA_UTILS_LICENSE_FILES = man/COPYING
>  
>  IRDA_UTILS_CFLAGS = $(TARGET_CFLAGS) -I.
>  ifeq ($(BR2_USE_MMU),)
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 02/54] irda-utils: add license information
  2014-06-24 19:12   ` Yann E. MORIN
@ 2014-06-24 19:13     ` Gustavo Zacarias
  0 siblings, 0 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 19:13 UTC (permalink / raw)
  To: buildroot

On 06/24/2014 04:12 PM, Yann E. MORIN wrote:

> Gustavo, All,
> 
> On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
>> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
>> ---
>>  package/gtkperf/gtkperf.mk       | 2 ++
>>  package/irda-utils/irda-utils.mk | 2 ++
> 
> Maybe this should have been two patches? ;-)
> 
> Hey, I can understand how repetitive this taks must have been. ;-)
> 
> Regards,
> Yann E. MORIN.

Ouch, yes, shit happens.
Regards.

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

* [Buildroot] [PATCH 04/54] leafpad: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 04/54] leafpad: " Gustavo Zacarias
@ 2014-06-24 20:19   ` Thomas Petazzoni
  2014-06-25 20:39   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Thomas Petazzoni @ 2014-06-24 20:19 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Tue, 24 Jun 2014 15:55:10 -0300, Gustavo Zacarias wrote:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/leafpad/leafpad.mk | 2 ++
>  1 file changed, 2 insertions(+)

Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

(verified existence of COPYING file, checked that license is indeed
GPLv2+ by looking at a few random source files.)
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH 01/54] gvfs: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (52 preceding siblings ...)
  2014-06-24 18:56 ` [Buildroot] [PATCH 54/54] metacity: " Gustavo Zacarias
@ 2014-06-24 21:33 ` Yann E. MORIN
  2014-06-24 21:36   ` Gustavo Zacarias
  2014-06-25 20:38 ` Peter Korsgaard
  54 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:33 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

I looked at random files: most have a license header refering to
LGPLv2+, while some do not have this header. The COPYING file is
here.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/gvfs/gvfs.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
> index dbf234e..58707aa 100644
> --- a/package/gvfs/gvfs.mk
> +++ b/package/gvfs/gvfs.mk
> @@ -10,6 +10,8 @@ GVFS_SOURCE = gvfs-$(GVFS_VERSION).tar.xz
>  GVFS_SITE = http://ftp.gnome.org/pub/GNOME/sources/gvfs/$(GVFS_VERSION_MAJOR)
>  GVFS_INSTALL_STAGING = YES
>  GVFS_DEPENDENCIES = host-pkgconf host-libglib2 libglib2 dbus shared-mime-info
> +GVFS_LICENSE = LGPLv2+
> +GVFS_LICENSE = COPYING
>  
>  # Export ac_cv_path_LIBGCRYPT_CONFIG unconditionally to prevent
>  # build system from searching the host paths.
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 03/54] kexec: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 03/54] kexec: " Gustavo Zacarias
@ 2014-06-24 21:35   ` Yann E. MORIN
  2014-06-25 20:39   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:35 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

COPYING is indeed GPLv2. Files seem to all be missing a license header.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/kexec/kexec.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/kexec/kexec.mk b/package/kexec/kexec.mk
> index 9787038..609825a 100644
> --- a/package/kexec/kexec.mk
> +++ b/package/kexec/kexec.mk
> @@ -7,6 +7,8 @@
>  KEXEC_VERSION = 2.0.7
>  KEXEC_SOURCE = kexec-tools-$(KEXEC_VERSION).tar.xz
>  KEXEC_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/kernel/kexec
> +KEXEC_LICENSE = GPLv2
> +KEXEC_LICENSE_FILES = COPYING
>  
>  ifeq ($(BR2_PACKAGE_KEXEC_ZLIB),y)
>  KEXEC_CONF_OPT += --with-zlib
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 01/54] gvfs: add license information
  2014-06-24 21:33 ` [Buildroot] [PATCH 01/54] gvfs: " Yann E. MORIN
@ 2014-06-24 21:36   ` Gustavo Zacarias
  0 siblings, 0 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 21:36 UTC (permalink / raw)
  To: buildroot

On 06/24/2014 06:33 PM, Yann E. MORIN wrote:
> I looked at random files: most have a license header refering to
> LGPLv2+, while some do not have this header. The COPYING file is
> here.

Yes, some packages are a bit tricky, they may seem like + but they are
not since it's just inherited code from some other X project/lib.
Regards.

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

* [Buildroot] [PATCH 05/54] libart: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 05/54] libart: " Gustavo Zacarias
@ 2014-06-24 21:39   ` Yann E. MORIN
  2014-06-25 20:40   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:39 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

COPYING is LGPLv2; files refer to LGPLv2+

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libart/libart.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libart/libart.mk b/package/libart/libart.mk
> index 39c72cc..a103f23 100644
> --- a/package/libart/libart.mk
> +++ b/package/libart/libart.mk
> @@ -11,5 +11,7 @@ LIBART_SITE = http://ftp.gnome.org/pub/gnome/sources/libart_lgpl/$(LIBART_VERSIO
>  LIBART_AUTORECONF = YES
>  LIBART_INSTALL_STAGING = YES
>  LIBART_CONFIG_SCRIPTS = libart2-config
> +LIBART_LICENSE = LGPLv2+
> +LIBART_LICENSE_FILES = COPYING
>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 06/54] liesmtp: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 06/54] liesmtp: " Gustavo Zacarias
@ 2014-06-24 21:45   ` Yann E. MORIN
  2014-06-24 21:51   ` Yann E. MORIN
  2014-06-25 20:40   ` Peter Korsgaard
  2 siblings, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:45 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

COPYING is GPLv2; COPYING.LIB is LGPLv2.1.
Files either refer to GPLv2+ or LGPLv2.1+.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libesmtp/libesmtp.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libesmtp/libesmtp.mk b/package/libesmtp/libesmtp.mk
> index f3f5611..cad2e27 100644
> --- a/package/libesmtp/libesmtp.mk
> +++ b/package/libesmtp/libesmtp.mk
> @@ -10,5 +10,7 @@ LIBESMTP_SITE = http://www.stafford.uklinux.net/libesmtp
>  LIBESMTP_INSTALL_STAGING = YES
>  LIBESMTP_CONFIG_SCRIPTS = libesmtp-config
>  LIBESMTP_DEPENDENCIES = $(if $(BR2_PACKAGE_OPENSSL),openssl)
> +LIBESMTP_LICENSE = GPLv2+ (examples), LGPLv2.1+ (library)
> +LIBESMTP_LICENSE_FILES = COPYING COPYING.LIB
>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 07/54] libevent: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 07/54] libevent: " Gustavo Zacarias
@ 2014-06-24 21:49   ` Yann E. MORIN
  2014-06-24 21:54     ` Gustavo Zacarias
  0 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:49 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/libevent/libevent.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libevent/libevent.mk b/package/libevent/libevent.mk
> index 14ebf72..ec1ec5a 100644
> --- a/package/libevent/libevent.mk
> +++ b/package/libevent/libevent.mk
> @@ -8,6 +8,8 @@ LIBEVENT_VERSION = 2.0.21
>  LIBEVENT_SOURCE = libevent-$(LIBEVENT_VERSION)-stable.tar.gz
>  LIBEVENT_SITE = https://github.com/downloads/libevent/libevent
>  LIBEVENT_INSTALL_STAGING = YES
> +LIBEVENT_LICENSE = BSD-3c

The LICENSE file refer to at least those three licenses:
  - the BSD-3c license
  - the "OpenBSD" license
  - the MIT license

Regards,
Yann E. MORIN.

> +LIBEVENT_LICENSE_FILES = LICENSE
>  
>  define LIBEVENT_REMOVE_PYSCRIPT
>  	rm $(TARGET_DIR)/usr/bin/event_rpcgen.py
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 06/54] liesmtp: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 06/54] liesmtp: " Gustavo Zacarias
  2014-06-24 21:45   ` Yann E. MORIN
@ 2014-06-24 21:51   ` Yann E. MORIN
  2014-06-25 20:40   ` Peter Korsgaard
  2 siblings, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:51 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

BTW, small typo in the subject:  s/liesmtp/libesmtp/

Regards,
Yann E. MORIN.

> ---
>  package/libesmtp/libesmtp.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libesmtp/libesmtp.mk b/package/libesmtp/libesmtp.mk
> index f3f5611..cad2e27 100644
> --- a/package/libesmtp/libesmtp.mk
> +++ b/package/libesmtp/libesmtp.mk
> @@ -10,5 +10,7 @@ LIBESMTP_SITE = http://www.stafford.uklinux.net/libesmtp
>  LIBESMTP_INSTALL_STAGING = YES
>  LIBESMTP_CONFIG_SCRIPTS = libesmtp-config
>  LIBESMTP_DEPENDENCIES = $(if $(BR2_PACKAGE_OPENSSL),openssl)
> +LIBESMTP_LICENSE = GPLv2+ (examples), LGPLv2.1+ (library)
> +LIBESMTP_LICENSE_FILES = COPYING COPYING.LIB
>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 08/54] libfreefare: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 08/54] libfreefare: " Gustavo Zacarias
@ 2014-06-24 21:52   ` Yann E. MORIN
  2014-06-24 21:57     ` Gustavo Zacarias
  0 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:52 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/libfreefare/libfreefare.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libfreefare/libfreefare.mk b/package/libfreefare/libfreefare.mk
> index 362cab2..27a3b34 100644
> --- a/package/libfreefare/libfreefare.mk
> +++ b/package/libfreefare/libfreefare.mk
> @@ -7,6 +7,8 @@
>  LIBFREEFARE_VERSION = 0.3.4
>  LIBFREEFARE_SITE = http://libfreefare.googlecode.com/files
>  LIBFREEFARE_DEPENDENCIES = libnfc openssl
> +LIBFREEFARE_LICENSE = LGPLv3+

The COPYING file has an exeption, so I believe this should be:
    LIBFREEFARE_LICENSE = LGPLv3+ with exception

Regards,
Yann E. MORIN.

> +LIBFREEFARE_LICENSE_FILES = COPYING
>  
>  ifeq ($(BR2_PREFER_STATIC_LIB),y)
>  # openssl needs zlib even if the libfreefare example itself doesn't
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 07/54] libevent: add license information
  2014-06-24 21:49   ` Yann E. MORIN
@ 2014-06-24 21:54     ` Gustavo Zacarias
  2014-06-24 21:59       ` Yann E. MORIN
  0 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 21:54 UTC (permalink / raw)
  To: buildroot

On 06/24/2014 06:49 PM, Yann E. MORIN wrote:

> The LICENSE file refer to at least those three licenses:
>   - the BSD-3c license
>   - the "OpenBSD" license
>   - the MIT license

Quote from line 31 of LICENSE:

Portions of Libevent are based on works by others, also made available
by them under the three-clause BSD license above.  The copyright notices
are available in the corresponding source files; the license is as above....

So BSD-3c as well.
Regards.

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

* [Buildroot] [PATCH 09/54] libgail: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 09/54] libgail: " Gustavo Zacarias
@ 2014-06-24 21:55   ` Yann E. MORIN
  2014-06-25 20:42   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:55 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

COPYING is LGPLv2; files refer to LGPLv2+.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libgail/libgail.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libgail/libgail.mk b/package/libgail/libgail.mk
> index 3034b41..02b2735 100644
> --- a/package/libgail/libgail.mk
> +++ b/package/libgail/libgail.mk
> @@ -10,6 +10,8 @@ LIBGAIL_SOURCE = gail-$(LIBGAIL_VERSION).tar.bz2
>  LIBGAIL_SITE = http://ftp.gnome.org/pub/gnome/sources/gail/$(LIBGAIL_VERSION_MAJOR)
>  LIBGAIL_AUTORECONF = YES
>  LIBGAIL_INSTALL_STAGING = YES
> +LIBGAIL_LICENSE = LGPLv2+
> +LIBGAIL_LICENSE_FILES = COPYING
>  
>  ifneq ($(BR2_PACKAGE_XLIB_LIBX11),y)
>  LIBGAIL_CONF_OPT += --disable-x
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 08/54] libfreefare: add license information
  2014-06-24 21:52   ` Yann E. MORIN
@ 2014-06-24 21:57     ` Gustavo Zacarias
  0 siblings, 0 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 21:57 UTC (permalink / raw)
  To: buildroot

On 06/24/2014 06:52 PM, Yann E. MORIN wrote:
> The COPYING file has an exeption, so I believe this should be:
>     LIBFREEFARE_LICENSE = LGPLv3+ with exception
> 
> Regards,
> Yann E. MORIN.

True, i'll send a v2, thanks for spotting it.
Regards.

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

* [Buildroot] [PATCH 07/54] libevent: add license information
  2014-06-24 21:54     ` Gustavo Zacarias
@ 2014-06-24 21:59       ` Yann E. MORIN
  2014-06-24 22:09         ` Gustavo Zacarias
  0 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 21:59 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 18:54 -0300, Gustavo Zacarias spake thusly:
> On 06/24/2014 06:49 PM, Yann E. MORIN wrote:
> 
> > The LICENSE file refer to at least those three licenses:
> >   - the BSD-3c license
> >   - the "OpenBSD" license
> >   - the MIT license
> 
> Quote from line 31 of LICENSE:
> 
> Portions of Libevent are based on works by others, also made available
> by them under the three-clause BSD license above.  The copyright notices
> are available in the corresponding source files; the license is as above....
> 
> So BSD-3c as well.

To be sure we're looking at the same file:
    https://github.com/libevent/libevent/blob/master/LICENSE

Look at lines 57:
    The arc4module is available under the following, sometimes called
    the "OpenBSD" license: [...]

And line 77:
    The Windows timer code is based on code from libutp, which is
    distributed under this license, sometimes called the "MIT" license.

Those two are properly separated from the others with a prominent line
of '=', so to me it clearly indicates the above license does apply to
neither arc4module nor the Windows timer code.

So, I stand by my comment. ;-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 10/54] libglade: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 10/54] libglade: " Gustavo Zacarias
@ 2014-06-24 22:03   ` Yann E. MORIN
  2014-06-25 20:43   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 22:03 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libglade/libglade.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libglade/libglade.mk b/package/libglade/libglade.mk
> index e197122..b29d4e5 100644
> --- a/package/libglade/libglade.mk
> +++ b/package/libglade/libglade.mk
> @@ -10,6 +10,8 @@ LIBGLADE_SOURCE = libglade-$(LIBGLADE_VERSION).tar.bz2
>  LIBGLADE_SITE = http://ftp.gnome.org/pub/GNOME/sources/libglade/$(LIBGLADE_VERSION_MAJOR)/
>  LIBGLADE_INSTALL_STAGING = YES
>  LIBGLADE_DEPENDENCIES = host-pkgconf libglib2 libgtk2 atk libxml2
> +LIBGLADE_LICENSE = LGPLV2+
> +LIBGLADE_LICENSE_FILES = COPYING
>  
>  define LIBGLADE_INSTALL_FIX
>  	rm -rf $(TARGET_DIR)/usr/share/xml/libglade \
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 11/54] libgtk2: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 11/54] libgtk2: " Gustavo Zacarias
@ 2014-06-24 22:05   ` Yann E. MORIN
  2014-06-25 20:44   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 22:05 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Ditto, COPYING OK; a few random files OK.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libgtk2/libgtk2.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libgtk2/libgtk2.mk b/package/libgtk2/libgtk2.mk
> index cadca63..2ba9469 100644
> --- a/package/libgtk2/libgtk2.mk
> +++ b/package/libgtk2/libgtk2.mk
> @@ -11,6 +11,8 @@ LIBGTK2_SOURCE = gtk+-$(LIBGTK2_VERSION).tar.xz
>  LIBGTK2_SITE = http://ftp.gnome.org/pub/gnome/sources/gtk+/$(LIBGTK2_VERSION_MAJOR)
>  LIBGTK2_INSTALL_STAGING = YES
>  LIBGTK2_INSTALL_TARGET = YES
> +LIBGTK2_LICENSE = LGPLv2+
> +LIBGTK2_LICENSE_FILES = COPYING
>  
>  LIBGTK2_AUTORECONF = YES
>  
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 07/54] libevent: add license information
  2014-06-24 21:59       ` Yann E. MORIN
@ 2014-06-24 22:09         ` Gustavo Zacarias
  0 siblings, 0 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-24 22:09 UTC (permalink / raw)
  To: buildroot

On 06/24/2014 06:59 PM, Yann E. MORIN wrote:

> To be sure we're looking at the same file:
>     https://github.com/libevent/libevent/blob/master/LICENSE
> 
> Look at lines 57:
>     The arc4module is available under the following, sometimes called
>     the "OpenBSD" license: [...]
> 
> And line 77:
>     The Windows timer code is based on code from libutp, which is
>     distributed under this license, sometimes called the "MIT" license.
> 
> Those two are properly separated from the others with a prominent line
> of '=', so to me it clearly indicates the above license does apply to
> neither arc4module nor the Windows timer code.
> 
> So, I stand by my comment. ;-)
> 
> Regards,
> Yann E. MORIN.

I'm using the tarball, but yeah it looks the same.
Pffft damn legal language.
I'll spin v2 too with _LICENSE = BSD-3c, OpenBSD
Regards.

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

* [Buildroot] [PATCH 12/54] libhid: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 12/54] libhid: " Gustavo Zacarias
@ 2014-06-24 22:13   ` Yann E. MORIN
  2014-06-25 20:47   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 22:13 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

COPYING OK, yadda yadda... ;-)

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libhid/libhid.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libhid/libhid.mk b/package/libhid/libhid.mk
> index 30501d5..469a607 100644
> --- a/package/libhid/libhid.mk
> +++ b/package/libhid/libhid.mk
> @@ -9,6 +9,8 @@ LIBHID_SITE = http://sources.buildroot.net/
>  LIBHID_DEPENDENCIES = libusb-compat libusb
>  LIBHID_INSTALL_STAGING = YES
>  LIBHID_AUTORECONF = YES
> +LIBHID_LICENSE = GPLv2
> +LIBHID_LICENSE_FILES = COPYING
>  # configure runs libusb-config for cflags/ldflags. Ensure it picks up
>  # the target version
>  LIBHID_CONF_ENV = PATH=$(STAGING_DIR)/usr/bin:$(BR_PATH)
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 13/54] libical: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 13/54] libical: " Gustavo Zacarias
@ 2014-06-24 22:21   ` Yann E. MORIN
  2014-06-25 20:50     ` Peter Korsgaard
  0 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 22:21 UTC (permalink / raw)
  To: buildroot

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

LICENSE file, random files, yadda yadda... 

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

But see below...

> ---
>  package/libical/libical.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libical/libical.mk b/package/libical/libical.mk
> index cdee006..4025627 100644
> --- a/package/libical/libical.mk
> +++ b/package/libical/libical.mk
> @@ -7,5 +7,7 @@
>  LIBICAL_VERSION = 0.48
>  LIBICAL_SITE = http://downloads.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
>  LIBICAL_INSTALL_STAGING = YES
> +LIBICAL_LICENSE = MPLv1.0 or LGPLv2.1
> +LIBICAL_LICENSE_FILES = LICENSE

There's also a COPYING file, which content appear to be the exact same
as the LICENSE file. So, OK to get only one of them. I'd have prefered
COPYING, but that's equally equal. ;-)

Regards,
Yann E. MORIN.

>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 14/54] libiqrf: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 14/54] libiqrf: " Gustavo Zacarias
@ 2014-06-24 22:23   ` Yann E. MORIN
  2014-06-25 20:52   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 22:23 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

All files refer to LGPLv2.1+.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libiqrf/libiqrf.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/libiqrf/libiqrf.mk b/package/libiqrf/libiqrf.mk
> index ec0d599..0531602 100644
> --- a/package/libiqrf/libiqrf.mk
> +++ b/package/libiqrf/libiqrf.mk
> @@ -7,7 +7,7 @@
>  LIBIQRF_VERSION = v0.1.2
>  LIBIQRF_SITE = $(call github,nandra,libiqrf,$(LIBIQRF_VERSION))
>  LIBIQRF_INSTALL_STAGING = YES
> -
>  LIBIQRF_DEPENDENCIES = libusb
> +LIBIQRF_LICENSE = LGPLv2.1+
>  
>  $(eval $(cmake-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 15/54] libraw1394: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 15/54] libraw1394: " Gustavo Zacarias
@ 2014-06-24 22:26   ` Yann E. MORIN
  2014-06-25 20:53   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-24 22:26 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libraw1394/libraw1394.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libraw1394/libraw1394.mk b/package/libraw1394/libraw1394.mk
> index 166c782..108dde9 100644
> --- a/package/libraw1394/libraw1394.mk
> +++ b/package/libraw1394/libraw1394.mk
> @@ -8,5 +8,7 @@ LIBRAW1394_VERSION = 2.0.7
>  LIBRAW1394_SOURCE = libraw1394-$(LIBRAW1394_VERSION).tar.xz
>  LIBRAW1394_SITE = $(BR2_KERNEL_MIRROR)/linux/libs/ieee1394
>  LIBRAW1394_INSTALL_STAGING = YES
> +LIBRAW1394_LICENSE = LGPLv2.1+
> +LIBRAW1394_LICENSE_FILES = COPYING.LIB
>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 16/54] librsvg: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 16/54] librsvg: " Gustavo Zacarias
@ 2014-06-25 19:34   ` Yann E. MORIN
  2014-06-25 20:55   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 19:34 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/librsvg/librsvg.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/librsvg/librsvg.mk b/package/librsvg/librsvg.mk
> index 9385fe9..86dce41 100644
> --- a/package/librsvg/librsvg.mk
> +++ b/package/librsvg/librsvg.mk
> @@ -10,6 +10,8 @@ LIBRSVG_SITE = http://ftp.gnome.org/pub/GNOME/sources/librsvg/$(LIBRSVG_VERSION_
>  LIBRSVG_INSTALL_STAGING = YES
>  LIBRSVG_CONF_OPT = --disable-tools
>  LIBRSVG_DEPENDENCIES = libxml2 cairo pango libglib2 gdk-pixbuf
> +LIBRSVG_LICENSE = LGPLv2+

We will have to be *extra* carefull when we bump this: there is one file
that is LGPLv2.1+ in the current master, so the result would be LGPLV2.1+,
I think:
    https://git.gnome.org/browse/librsvg/tree/rsvg-xml.c

But since we only package the 2.26, this file is not yet present. So:

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> +LIBRSVG_LICENSE_FILES = COPYING.LIB
>  
>  # If we have Gtk2, let's build it first to benefit from librsvg Gtk
>  # support.
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 17/54] libsvgtiny: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 17/54] libsvgtiny: " Gustavo Zacarias
@ 2014-06-25 19:38   ` Yann E. MORIN
  2014-06-25 19:48     ` Gustavo Zacarias
  2014-06-25 20:55   ` Peter Korsgaard
  1 sibling, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 19:38 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

As a side note, there is now a git tree with proper tags for this;
    http://git.netsurf-browser.org/libsvgtiny.git/

I noticed that a lot of the packages have changed home, or have no home
any more, or that we are packaging a very old version... I'll try to get
some time this WE to do a pass on all this (and try to revived the
script to check that...

Regards,
Yann E. MORIN.

> ---
>  package/libsvgtiny/libsvgtiny.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libsvgtiny/libsvgtiny.mk b/package/libsvgtiny/libsvgtiny.mk
> index dd40452..a2d494e 100644
> --- a/package/libsvgtiny/libsvgtiny.mk
> +++ b/package/libsvgtiny/libsvgtiny.mk
> @@ -8,6 +8,8 @@ LIBSVGTINY_SITE = svn://svn.netsurf-browser.org/trunk/libsvgtiny
>  LIBSVGTINY_VERSION = 12121
>  LIBSVGTINY_INSTALL_STAGING = YES
>  LIBSVGTINY_DEPENDENCIES = libxml2 host-gperf host-pkgconf
> +LIBSVGTINY_LICENSE = MIT
> +LIBSVGTINY_LICENSE_FILES = README
>  
>  define LIBSVGTINY_BUILD_CMDS
>  	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) PREFIX=/usr
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 18/54] libsysfs: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 18/54] libsysfs: " Gustavo Zacarias
@ 2014-06-25 19:41   ` Yann E. MORIN
  2014-06-25 19:45     ` Gustavo Zacarias
  2014-06-25 19:52   ` Yann E. MORIN
  2014-06-25 20:56   ` Peter Korsgaard
  2 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 19:41 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/libsysfs/libsysfs.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libsysfs/libsysfs.mk b/package/libsysfs/libsysfs.mk
> index 6bd3c5c..fb0310f 100644
> --- a/package/libsysfs/libsysfs.mk
> +++ b/package/libsysfs/libsysfs.mk
> @@ -8,5 +8,7 @@ LIBSYSFS_VERSION = 2.1.0
>  LIBSYSFS_SITE = http://downloads.sourceforge.net/project/linux-diag/sysfsutils/$(LIBSYSFS_VERSION)
>  LIBSYSFS_SOURCE = sysfsutils-$(LIBSYSFS_VERSION).tar.gz
>  LIBSYSFS_INSTALL_STAGING = YES
> +LIBSYSFS_LICENSE = GPLv2 (utilities), LGPLv2.1+ (library)
> +LIBSYSFS_LICENSE_FILES = cmd/GPL lib/LGPL

I would also add the COPYING file at the root of the package:

    The commands and utilities under the "test" directory are licensed under the
    GNU General Public License (GPL) Version 2, June 1991. The full text of the
    GPL is located at:

    sysfsutils/cmd/GPL

    The sysfs library is licensed under the GNU Lesser Public License (LGPL)
    Version 2.1, February 1999. The full text of the LGPL is located at:

    sysfsutils/lib/LGPL 

Regards,
Yann E. MORIN.

>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 18/54] libsysfs: add license information
  2014-06-25 19:41   ` Yann E. MORIN
@ 2014-06-25 19:45     ` Gustavo Zacarias
  2014-06-25 19:51       ` Yann E. MORIN
  0 siblings, 1 reply; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-25 19:45 UTC (permalink / raw)
  To: buildroot

On 06/25/2014 04:41 PM, Yann E. MORIN wrote:

>> +LIBSYSFS_LICENSE = GPLv2 (utilities), LGPLv2.1+ (library)
>> +LIBSYSFS_LICENSE_FILES = cmd/GPL lib/LGPL
> 
> I would also add the COPYING file at the root of the package:
> 
>     The commands and utilities under the "test" directory are licensed under the
>     GNU General Public License (GPL) Version 2, June 1991. The full text of the
>     GPL is located at:
> 
>     sysfsutils/cmd/GPL
> 
>     The sysfs library is licensed under the GNU Lesser Public License (LGPL)
>     Version 2.1, February 1999. The full text of the LGPL is located at:
> 
>     sysfsutils/lib/LGPL 
> 
> Regards,
> Yann E. MORIN.

But COPYING is confusing and a half-truth, that's why i avoided it.
If you look at the source under cmd/ that's also just GPL, and it's not
under "test", by the COPYING terms one could consider them LGPL.
Regards.

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

* [Buildroot] [PATCH 17/54] libsvgtiny: add license information
  2014-06-25 19:38   ` Yann E. MORIN
@ 2014-06-25 19:48     ` Gustavo Zacarias
  0 siblings, 0 replies; 141+ messages in thread
From: Gustavo Zacarias @ 2014-06-25 19:48 UTC (permalink / raw)
  To: buildroot

On 06/25/2014 04:38 PM, Yann E. MORIN wrote:

> I noticed that a lot of the packages have changed home, or have no home
> any more, or that we are packaging a very old version... I'll try to get
> some time this WE to do a pass on all this (and try to revived the
> script to check that...

Like metacity? :)
Regards.

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

* [Buildroot] [PATCH 19/54] libv4l: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 19/54] libv4l: " Gustavo Zacarias
@ 2014-06-25 19:50   ` Yann E. MORIN
  2014-06-25 21:02     ` Peter Korsgaard
  0 siblings, 1 reply; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 19:50 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Small typo, see below...

> ---
>  package/libv4l/libv4l.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libv4l/libv4l.mk b/package/libv4l/libv4l.mk
> index f62a4b6..56523d0 100644
> --- a/package/libv4l/libv4l.mk
> +++ b/package/libv4l/libv4l.mk
> @@ -10,6 +10,8 @@ LIBV4L_SITE = http://linuxtv.org/downloads/v4l-utils/
>  LIBV4L_INSTALL_STAGING = YES
>  LIBV4L_MAKE_OPTS = PREFIX=/usr
>  LIBV4L_DEPENDENCIES = jpeg
> +LIBV4L_LICENSE = GPLv2+ (utiltiies), LGPLv2.1+ (libraries)

utiltiies -> utilities


> +LIBV4L_LICENSE_FILES = COPYING COPYING.LIB

There's also:
    lib/libv4l1/libv4l1-kernelcode-license.txt

since libv4l1 includes GPLv2-licensed code from the Linux kernel, but
libv4l1 is tiself LGPLV2.1+.

If the end-user believes this is not needed, he can still trash this
file out of his compliance archive. However, we should install it into
legal-info.

Regards,
Yann E. MORIN.

>  LIBV4L_DIRS_y += lib
>  LIBV4L_DIRS_$(BR2_PACKAGE_LIBV4L_DECODE_TM6000)	+= utils/libv4l2util utils/decode_tm6000
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 18/54] libsysfs: add license information
  2014-06-25 19:45     ` Gustavo Zacarias
@ 2014-06-25 19:51       ` Yann E. MORIN
  0 siblings, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 19:51 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-25 16:45 -0300, Gustavo Zacarias spake thusly:
> On 06/25/2014 04:41 PM, Yann E. MORIN wrote:
> 
> >> +LIBSYSFS_LICENSE = GPLv2 (utilities), LGPLv2.1+ (library)
> >> +LIBSYSFS_LICENSE_FILES = cmd/GPL lib/LGPL
> > 
> > I would also add the COPYING file at the root of the package:
> > 
> >     The commands and utilities under the "test" directory are licensed under the
> >     GNU General Public License (GPL) Version 2, June 1991. The full text of the
> >     GPL is located at:
> > 
> >     sysfsutils/cmd/GPL
> > 
> >     The sysfs library is licensed under the GNU Lesser Public License (LGPL)
> >     Version 2.1, February 1999. The full text of the LGPL is located at:
> > 
> >     sysfsutils/lib/LGPL 
> > 
> > Regards,
> > Yann E. MORIN.
> 
> But COPYING is confusing and a half-truth, that's why i avoided it.
> If you look at the source under cmd/ that's also just GPL, and it's not
> under "test", by the COPYING terms one could consider them LGPL.

OK.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 18/54] libsysfs: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 18/54] libsysfs: " Gustavo Zacarias
  2014-06-25 19:41   ` Yann E. MORIN
@ 2014-06-25 19:52   ` Yann E. MORIN
  2014-06-25 20:56   ` Peter Korsgaard
  2 siblings, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 19:52 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/libsysfs/libsysfs.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/libsysfs/libsysfs.mk b/package/libsysfs/libsysfs.mk
> index 6bd3c5c..fb0310f 100644
> --- a/package/libsysfs/libsysfs.mk
> +++ b/package/libsysfs/libsysfs.mk
> @@ -8,5 +8,7 @@ LIBSYSFS_VERSION = 2.1.0
>  LIBSYSFS_SITE = http://downloads.sourceforge.net/project/linux-diag/sysfsutils/$(LIBSYSFS_VERSION)
>  LIBSYSFS_SOURCE = sysfsutils-$(LIBSYSFS_VERSION).tar.gz
>  LIBSYSFS_INSTALL_STAGING = YES
> +LIBSYSFS_LICENSE = GPLv2 (utilities), LGPLv2.1+ (library)
> +LIBSYSFS_LICENSE_FILES = cmd/GPL lib/LGPL
>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 20/54] lsuio: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 20/54] lsuio: " Gustavo Zacarias
@ 2014-06-25 20:08   ` Yann E. MORIN
  2014-06-25 21:03   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 20:08 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/lsuio/lsuio.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/lsuio/lsuio.mk b/package/lsuio/lsuio.mk
> index 4e4f592..5f8a965 100644
> --- a/package/lsuio/lsuio.mk
> +++ b/package/lsuio/lsuio.mk
> @@ -6,5 +6,7 @@
>  
>  LSUIO_VERSION = 0.2.0
>  LSUIO_SITE = http://www.osadl.org/projects/downloads/UIO/user
> +LSUIO_LICENSE = GPLv2
> +LSUIO_LICENSE_FILES = COPYING
>  
>  $(eval $(autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 21/54] nasm: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 21/54] nasm: " Gustavo Zacarias
@ 2014-06-25 20:10   ` Yann E. MORIN
  2014-06-25 21:03   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 20:10 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

LICENSE is here, a few random files are indeed BSD-2c.

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/nasm/nasm.mk | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/package/nasm/nasm.mk b/package/nasm/nasm.mk
> index 18efa4a..b9077eb 100644
> --- a/package/nasm/nasm.mk
> +++ b/package/nasm/nasm.mk
> @@ -5,8 +5,10 @@
>  ################################################################################
>  
>  NASM_VERSION = 2.11.02
> -NASM_SOURCE  = nasm-$(NASM_VERSION).tar.xz
> -NASM_SITE    = http://www.nasm.us/pub/nasm/releasebuilds/$(NASM_VERSION)
> +NASM_SOURCE = nasm-$(NASM_VERSION).tar.xz
> +NASM_SITE = http://www.nasm.us/pub/nasm/releasebuilds/$(NASM_VERSION)
> +NASM_LICENSE = BSD-2c
> +NASM_LICENSE_FILES = LICENSE
>  
>  $(eval $(autotools-package))
>  $(eval $(host-autotools-package))
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 22/54] ndisc6: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 22/54] ndisc6: " Gustavo Zacarias
@ 2014-06-25 20:14   ` Yann E. MORIN
  2014-06-25 21:04   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 20:14 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

To be noted, the files compat/fdatasync.c and compat/ppoll.c are GPLV2+,
but as a whole, the project is indeed GPLv2 or GPLv3.

Regards,
Yann E. MORIN.

> ---
>  package/ndisc6/ndisc6.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/ndisc6/ndisc6.mk b/package/ndisc6/ndisc6.mk
> index 719f85d..257289d 100644
> --- a/package/ndisc6/ndisc6.mk
> +++ b/package/ndisc6/ndisc6.mk
> @@ -9,6 +9,8 @@ NDISC6_SOURCE = ndisc6-$(NDISC6_VERSION).tar.bz2
>  NDISC6_SITE = http://www.remlab.net/files/ndisc6/
>  NDISC6_CONF_ENV = CC="$(TARGET_CC) -std=gnu99"
>  NDISC6_CONF_OPT = --localstatedir=/var --disable-rpath --disable-suid-install
> +NDISC6_LICENSE = GPLv2 or GPLv3
> +NDISC6_LICENSE_FILES = COPYING
>  
>  ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
>  NDISC6_DEPENDENCIES += gettext
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 23/54] netplug: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 23/54] netplug: " Gustavo Zacarias
@ 2014-06-25 20:20   ` Yann E. MORIN
  2014-06-25 21:07   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 20:20 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/netplug/netplug.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/netplug/netplug.mk b/package/netplug/netplug.mk
> index 5756281..0bd7c78 100644
> --- a/package/netplug/netplug.mk
> +++ b/package/netplug/netplug.mk
> @@ -7,6 +7,8 @@
>  NETPLUG_VERSION = 1.2.9.2
>  NETPLUG_SOURCE = netplug-$(NETPLUG_VERSION).tar.bz2
>  NETPLUG_SITE = http://www.red-bean.com/~bos/netplug
> +NETPLUG_LICENSE = GPLv2
> +NETPLUG_LICENSE_FILES = COPYING
>  
>  define NETPLUG_BUILD_CMDS
>  	$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 24/54] network-manager: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 24/54] network-manager: " Gustavo Zacarias
@ 2014-06-25 20:26   ` Yann E. MORIN
  2014-06-25 21:07   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 20:26 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/network-manager/network-manager.mk | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/package/network-manager/network-manager.mk b/package/network-manager/network-manager.mk
> index 3555f00..932ce8f 100644
> --- a/package/network-manager/network-manager.mk
> +++ b/package/network-manager/network-manager.mk
> @@ -11,6 +11,8 @@ NETWORK_MANAGER_SITE = http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/$(N
>  NETWORK_MANAGER_INSTALL_STAGING = YES
>  NETWORK_MANAGER_DEPENDENCIES = host-pkgconf udev dbus-glib libnl gnutls \
>  	libgcrypt wireless_tools util-linux host-intltool readline libndp
> +NETWORK_MANAGER_LICENSE = GPLv2+ (app), LGPLv2+ (libnm-util, libgsystem)
> +NETWORK_MANAGER_LICENSE_FILES = COPYING libnm-util/COPYING libgsystem/COPYING
>  
>  NETWORK_MANAGER_CONF_ENV = \
>  	ac_cv_path_LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config \
> -- 
> 1.8.5.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 01/54] gvfs: add license information
  2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
                   ` (53 preceding siblings ...)
  2014-06-24 21:33 ` [Buildroot] [PATCH 01/54] gvfs: " Yann E. MORIN
@ 2014-06-25 20:38 ` Peter Korsgaard
  54 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:38 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  package/gvfs/gvfs.mk | 2 ++
 >  1 file changed, 2 insertions(+)

 > diff --git a/package/gvfs/gvfs.mk b/package/gvfs/gvfs.mk
 > index dbf234e..58707aa 100644
 > --- a/package/gvfs/gvfs.mk
 > +++ b/package/gvfs/gvfs.mk
 > @@ -10,6 +10,8 @@ GVFS_SOURCE = gvfs-$(GVFS_VERSION).tar.xz
 >  GVFS_SITE = http://ftp.gnome.org/pub/GNOME/sources/gvfs/$(GVFS_VERSION_MAJOR)
 >  GVFS_INSTALL_STAGING = YES
 >  GVFS_DEPENDENCIES = host-pkgconf host-libglib2 libglib2 dbus shared-mime-info
 > +GVFS_LICENSE = LGPLv2+
 > +GVFS_LICENSE = COPYING

The last line should be _LICENSE_FILES. Committed with that fixed,
thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 03/54] kexec: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 03/54] kexec: " Gustavo Zacarias
  2014-06-24 21:35   ` Yann E. MORIN
@ 2014-06-25 20:39   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:39 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 04/54] leafpad: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 04/54] leafpad: " Gustavo Zacarias
  2014-06-24 20:19   ` Thomas Petazzoni
@ 2014-06-25 20:39   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:39 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 05/54] libart: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 05/54] libart: " Gustavo Zacarias
  2014-06-24 21:39   ` Yann E. MORIN
@ 2014-06-25 20:40   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:40 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 06/54] liesmtp: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 06/54] liesmtp: " Gustavo Zacarias
  2014-06-24 21:45   ` Yann E. MORIN
  2014-06-24 21:51   ` Yann E. MORIN
@ 2014-06-25 20:40   ` Peter Korsgaard
  2 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:40 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed with subject fixed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 09/54] libgail: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 09/54] libgail: " Gustavo Zacarias
  2014-06-24 21:55   ` Yann E. MORIN
@ 2014-06-25 20:42   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:42 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 10/54] libglade: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 10/54] libglade: " Gustavo Zacarias
  2014-06-24 22:03   ` Yann E. MORIN
@ 2014-06-25 20:43   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:43 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 11/54] libgtk2: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 11/54] libgtk2: " Gustavo Zacarias
  2014-06-24 22:05   ` Yann E. MORIN
@ 2014-06-25 20:44   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:44 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 12/54] libhid: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 12/54] libhid: " Gustavo Zacarias
  2014-06-24 22:13   ` Yann E. MORIN
@ 2014-06-25 20:47   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  package/libhid/libhid.mk | 2 ++
 >  1 file changed, 2 insertions(+)

 > diff --git a/package/libhid/libhid.mk b/package/libhid/libhid.mk
 > index 30501d5..469a607 100644
 > --- a/package/libhid/libhid.mk
 > +++ b/package/libhid/libhid.mk
 > @@ -9,6 +9,8 @@ LIBHID_SITE = http://sources.buildroot.net/
 >  LIBHID_DEPENDENCIES = libusb-compat libusb
 >  LIBHID_INSTALL_STAGING = YES
 >  LIBHID_AUTORECONF = YES
 > +LIBHID_LICENSE = GPLv2
 > +LIBHID_LICENSE_FILES = COPYING

There's actually also a hidparsers/COPYING with some trivial
differences, and those files are explicitly marked as GPLv2+, but I
guess libhid as a whole is just GPLv2 - So I guess it is ok.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 13/54] libical: add license information
  2014-06-24 22:21   ` Yann E. MORIN
@ 2014-06-25 20:50     ` Peter Korsgaard
  2014-06-25 21:01       ` Yann E. MORIN
  0 siblings, 1 reply; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:50 UTC (permalink / raw)
  To: buildroot

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

 > On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
 >> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

 > LICENSE file, random files, yadda yadda... 

 > Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

 > But see below...

 >> ---
 >> package/libical/libical.mk | 2 ++
 >> 1 file changed, 2 insertions(+)
 >> 
 >> diff --git a/package/libical/libical.mk b/package/libical/libical.mk
 >> index cdee006..4025627 100644
 >> --- a/package/libical/libical.mk
 >> +++ b/package/libical/libical.mk
 >> @@ -7,5 +7,7 @@
 >> LIBICAL_VERSION = 0.48
 >> LIBICAL_SITE = http://downloads.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
 >> LIBICAL_INSTALL_STAGING = YES
 >> +LIBICAL_LICENSE = MPLv1.0 or LGPLv2.1
 >> +LIBICAL_LICENSE_FILES = LICENSE

 > There's also a COPYING file, which content appear to be the exact same
 > as the LICENSE file. So, OK to get only one of them. I'd have prefered
 > COPYING, but that's equally equal. ;-)

LICENSE has a few extra lines clarifying the license, so I'll leave it
like this.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 14/54] libiqrf: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 14/54] libiqrf: " Gustavo Zacarias
  2014-06-24 22:23   ` Yann E. MORIN
@ 2014-06-25 20:52   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:52 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 15/54] libraw1394: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 15/54] libraw1394: " Gustavo Zacarias
  2014-06-24 22:26   ` Yann E. MORIN
@ 2014-06-25 20:53   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:53 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 16/54] librsvg: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 16/54] librsvg: " Gustavo Zacarias
  2014-06-25 19:34   ` Yann E. MORIN
@ 2014-06-25 20:55   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 17/54] libsvgtiny: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 17/54] libsvgtiny: " Gustavo Zacarias
  2014-06-25 19:38   ` Yann E. MORIN
@ 2014-06-25 20:55   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:55 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 18/54] libsysfs: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 18/54] libsysfs: " Gustavo Zacarias
  2014-06-25 19:41   ` Yann E. MORIN
  2014-06-25 19:52   ` Yann E. MORIN
@ 2014-06-25 20:56   ` Peter Korsgaard
  2 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 20:56 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 13/54] libical: add license information
  2014-06-25 20:50     ` Peter Korsgaard
@ 2014-06-25 21:01       ` Yann E. MORIN
  0 siblings, 0 replies; 141+ messages in thread
From: Yann E. MORIN @ 2014-06-25 21:01 UTC (permalink / raw)
  To: buildroot

Peter, All,

On 2014-06-25 22:50 +0200, Peter Korsgaard spake thusly:
> >>>>> "Yann" == Yann E MORIN <yann.morin.1998@free.fr> writes:
> 
>  > On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
>  >> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> 
>  > LICENSE file, random files, yadda yadda... 
> 
>  > Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> 
>  > But see below...
> 
>  >> ---
>  >> package/libical/libical.mk | 2 ++
>  >> 1 file changed, 2 insertions(+)
>  >> 
>  >> diff --git a/package/libical/libical.mk b/package/libical/libical.mk
>  >> index cdee006..4025627 100644
>  >> --- a/package/libical/libical.mk
>  >> +++ b/package/libical/libical.mk
>  >> @@ -7,5 +7,7 @@
>  >> LIBICAL_VERSION = 0.48
>  >> LIBICAL_SITE = http://downloads.sourceforge.net/project/freeassociation/libical/libical-$(LIBICAL_VERSION)
>  >> LIBICAL_INSTALL_STAGING = YES
>  >> +LIBICAL_LICENSE = MPLv1.0 or LGPLv2.1
>  >> +LIBICAL_LICENSE_FILES = LICENSE
> 
>  > There's also a COPYING file, which content appear to be the exact same
>  > as the LICENSE file. So, OK to get only one of them. I'd have prefered
>  > COPYING, but that's equally equal. ;-)
> 
> LICENSE has a few extra lines clarifying the license, so I'll leave it
> like this.

Gah, I clicked twice on the same file... So I check LICENSE was the same
as... LICENSE. Doh... :-(

Thanks!

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 19/54] libv4l: add license information
  2014-06-25 19:50   ` Yann E. MORIN
@ 2014-06-25 21:02     ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:02 UTC (permalink / raw)
  To: buildroot

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

 > Gustavo, All,
 > On 2014-06-24 15:55 -0300, Gustavo Zacarias spake thusly:
 >> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

 > Small typo, see below...

 >> ---
 >> package/libv4l/libv4l.mk | 2 ++
 >> 1 file changed, 2 insertions(+)
 >> 
 >> diff --git a/package/libv4l/libv4l.mk b/package/libv4l/libv4l.mk
 >> index f62a4b6..56523d0 100644
 >> --- a/package/libv4l/libv4l.mk
 >> +++ b/package/libv4l/libv4l.mk
 >> @@ -10,6 +10,8 @@ LIBV4L_SITE = http://linuxtv.org/downloads/v4l-utils/
 >> LIBV4L_INSTALL_STAGING = YES
 >> LIBV4L_MAKE_OPTS = PREFIX=/usr
 >> LIBV4L_DEPENDENCIES = jpeg
 >> +LIBV4L_LICENSE = GPLv2+ (utiltiies), LGPLv2.1+ (libraries)

 > utiltiies -> utilities


 >> +LIBV4L_LICENSE_FILES = COPYING COPYING.LIB

 > There's also:
 >     lib/libv4l1/libv4l1-kernelcode-license.txt

 > since libv4l1 includes GPLv2-licensed code from the Linux kernel, but
 > libv4l1 is tiself LGPLV2.1+.

 > If the end-user believes this is not needed, he can still trash this
 > file out of his compliance archive. However, we should install it into
 > legal-info.

True. Committed with these changes, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 20/54] lsuio: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 20/54] lsuio: " Gustavo Zacarias
  2014-06-25 20:08   ` Yann E. MORIN
@ 2014-06-25 21:03   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 21/54] nasm: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 21/54] nasm: " Gustavo Zacarias
  2014-06-25 20:10   ` Yann E. MORIN
@ 2014-06-25 21:03   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 22/54] ndisc6: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 22/54] ndisc6: " Gustavo Zacarias
  2014-06-25 20:14   ` Yann E. MORIN
@ 2014-06-25 21:04   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:04 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 23/54] netplug: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 23/54] netplug: " Gustavo Zacarias
  2014-06-25 20:20   ` Yann E. MORIN
@ 2014-06-25 21:07   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:07 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 24/54] network-manager: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 24/54] network-manager: " Gustavo Zacarias
  2014-06-25 20:26   ` Yann E. MORIN
@ 2014-06-25 21:07   ` Peter Korsgaard
  1 sibling, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:07 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 25/54] open2300: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 25/54] open2300: " Gustavo Zacarias
@ 2014-06-25 21:08   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:08 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 26/54] openocd: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 26/54] openocd: " Gustavo Zacarias
@ 2014-06-25 21:10   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 27/54] pango: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 27/54] pango: " Gustavo Zacarias
@ 2014-06-25 21:10   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-25 21:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 28/54] proxychains-ng: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 28/54] proxychains-ng: " Gustavo Zacarias
@ 2014-06-26  7:47   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26  7:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  package/proxychains-ng/proxychains-ng.mk | 2 ++
 >  1 file changed, 2 insertions(+)

 > diff --git a/package/proxychains-ng/proxychains-ng.mk b/package/proxychains-ng/proxychains-ng.mk
 > index 7c2ffbf..5415f04 100644
 > --- a/package/proxychains-ng/proxychains-ng.mk
 > +++ b/package/proxychains-ng/proxychains-ng.mk
 > @@ -7,6 +7,8 @@
 >  PROXYCHAINS_NG_VERSION = 4.6
 >  PROXYCHAINS_NG_SOURCE = proxychains-$(PROXYCHAINS_NG_VERSION).tar.bz2
 >  PROXYCHAINS_NG_SITE = http://downloads.sourceforge.net/project/proxychains-ng
 > +PROXYCHAINS_NG_LICENSE = GPLv2+
 > +PROXYCHAINS_NG_LICENSE_FILES =  COPYING

Dropped the extra space before COPYING and committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 29/54] python-id3: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 29/54] python-id3: " Gustavo Zacarias
@ 2014-06-26  9:41   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26  9:41 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 30/54] python-dpkt: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 30/54] python-dpkt: " Gustavo Zacarias
@ 2014-06-26 11:06   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 11:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 31/54] python-mad: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 31/54] python-mad: " Gustavo Zacarias
@ 2014-06-26 11:27   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 11:27 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 32/54] python-pygame: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 32/54] python-pygame: " Gustavo Zacarias
@ 2014-06-26 11:50   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 11:50 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 33/54] rubix: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 33/54] rubix: " Gustavo Zacarias
@ 2014-06-26 14:35   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 14:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 34/54] sane-backends: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 34/54] sane-backends: " Gustavo Zacarias
@ 2014-06-26 14:35   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 14:35 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 35/54] shared-mime-info: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 35/54] shared-mime-info: " Gustavo Zacarias
@ 2014-06-26 14:36   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 14:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 36/54] socketcand: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 36/54] socketcand: " Gustavo Zacarias
@ 2014-06-26 15:00   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:00 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  package/socketcand/socketcand.mk | 1 +
 >  1 file changed, 1 insertion(+)

 > diff --git a/package/socketcand/socketcand.mk b/package/socketcand/socketcand.mk
 > index fdba96e..51aa224 100644
 > --- a/package/socketcand/socketcand.mk
 > +++ b/package/socketcand/socketcand.mk
 > @@ -7,6 +7,7 @@
 >  SOCKETCAND_VERSION = 274e4e44107f6138a29bbc4e20f9fbd2a7d4dab1
 >  SOCKETCAND_SITE = $(call github,dschanoeh,socketcand,$(SOCKETCAND_VERSION))
 >  SOCKETCAND_AUTORECONF = YES
 > +SOCKETCAND_LICENSE = BSD-3c or GPLv2

While not a true license file, I think it makes sense to point
_LICENSE_FILES to socketcand.c as it has all the needed details.

Committed with that fixed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 37/54] squashfs: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 37/54] squashfs: " Gustavo Zacarias
@ 2014-06-26 15:01   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:01 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 38/54] sredird: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 38/54] sredird: " Gustavo Zacarias
@ 2014-06-26 15:02   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:02 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 39/54] statserial: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 39/54] statserial: " Gustavo Zacarias
@ 2014-06-26 15:02   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:02 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 40/54] synergy: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 40/54] synergy: " Gustavo Zacarias
@ 2014-06-26 15:03   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:03 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 41/54] sysprof: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 41/54] sysprof: " Gustavo Zacarias
@ 2014-06-26 15:04   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:04 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 42/54] transmission: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 42/54] transmission: " Gustavo Zacarias
@ 2014-06-26 15:06   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  package/transmission/transmission.mk | 3 ++-
 >  1 file changed, 2 insertions(+), 1 deletion(-)

 > diff --git a/package/transmission/transmission.mk b/package/transmission/transmission.mk
 > index 37cc58b..f9fb9f8 100644
 > --- a/package/transmission/transmission.mk
 > +++ b/package/transmission/transmission.mk
 > @@ -15,10 +15,11 @@ TRANSMISSION_DEPENDENCIES = \
 >  	openssl \
 >  	zlib
 >  TRANSMISSION_AUTORECONF = YES
 > -
 >  TRANSMISSION_CONF_OPT = \
 >  	--disable-libnotify \
 >  	--enable-lightweight
 > +TRANSMISSION_LICENSE = GPLv2 or GPLv3

There's also an openssl exception, so I've added that.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 43/54] uclibc: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 43/54] uclibc: " Gustavo Zacarias
@ 2014-06-26 15:09   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 44/54] xapp_xinit: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 44/54] xapp_xinit: " Gustavo Zacarias
@ 2014-06-26 15:09   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 45/54] x11vnc: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 45/54] x11vnc: " Gustavo Zacarias
@ 2014-06-26 15:10   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:10 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 46/54] nbd: updatel icense information
  2014-06-24 18:55 ` [Buildroot] [PATCH 46/54] nbd: updatel icense information Gustavo Zacarias
@ 2014-06-26 15:11   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-26 15:11 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed with the typo in subject fixed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 47/54] avrdude: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 47/54] avrdude: add license information Gustavo Zacarias
@ 2014-06-27  6:47   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 48/54] freerdp: fix typo in license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 48/54] freerdp: fix typo in " Gustavo Zacarias
@ 2014-06-27  6:47   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:47 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 49/54] gqview: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 49/54] gqview: add " Gustavo Zacarias
@ 2014-06-27  6:48   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:48 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 50/54] gptfdisk: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 50/54] gptfdisk: " Gustavo Zacarias
@ 2014-06-27  6:49   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:49 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 51/54] startup-notification: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 51/54] startup-notification: " Gustavo Zacarias
@ 2014-06-27  6:52   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:52 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 52/54] protobuf-c: update license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 52/54] protobuf-c: update " Gustavo Zacarias
@ 2014-06-27  6:54   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:54 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
 > ---
 >  package/protobuf-c/protobuf-c.mk | 1 +
 >  1 file changed, 1 insertion(+)

 > diff --git a/package/protobuf-c/protobuf-c.mk b/package/protobuf-c/protobuf-c.mk
 > index da0b139..7cfc2e1 100644
 > --- a/package/protobuf-c/protobuf-c.mk
 > +++ b/package/protobuf-c/protobuf-c.mk
 > @@ -12,6 +12,7 @@ PROTOBUF_C_MAKE = $(MAKE1)
 >  PROTOBUF_C_CONF_OPT = --disable-protoc
 >  PROTOBUF_C_INSTALL_STAGING = YES
 >  PROTOBUF_C_LICENSE = BSD-3c
 > +PROTOBUF_C_LICENSE_FILES = LICENSE

Looking at the license I see that it is actually BSD-2c, so I've updated
that as well and committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 53/54] ti-utils: add license information
  2014-06-24 18:55 ` [Buildroot] [PATCH 53/54] ti-utils: add " Gustavo Zacarias
@ 2014-06-27  6:57   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 54/54] metacity: add license information
  2014-06-24 18:56 ` [Buildroot] [PATCH 54/54] metacity: " Gustavo Zacarias
@ 2014-06-27  6:57   ` Peter Korsgaard
  0 siblings, 0 replies; 141+ messages in thread
From: Peter Korsgaard @ 2014-06-27  6:57 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2014-06-27  6:57 UTC | newest]

Thread overview: 141+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-24 18:55 [Buildroot] [PATCH 01/54] gvfs: add license information Gustavo Zacarias
2014-06-24 18:55 ` [Buildroot] [PATCH 02/54] irda-utils: " Gustavo Zacarias
2014-06-24 19:12   ` Yann E. MORIN
2014-06-24 19:13     ` Gustavo Zacarias
2014-06-24 18:55 ` [Buildroot] [PATCH 03/54] kexec: " Gustavo Zacarias
2014-06-24 21:35   ` Yann E. MORIN
2014-06-25 20:39   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 04/54] leafpad: " Gustavo Zacarias
2014-06-24 20:19   ` Thomas Petazzoni
2014-06-25 20:39   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 05/54] libart: " Gustavo Zacarias
2014-06-24 21:39   ` Yann E. MORIN
2014-06-25 20:40   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 06/54] liesmtp: " Gustavo Zacarias
2014-06-24 21:45   ` Yann E. MORIN
2014-06-24 21:51   ` Yann E. MORIN
2014-06-25 20:40   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 07/54] libevent: " Gustavo Zacarias
2014-06-24 21:49   ` Yann E. MORIN
2014-06-24 21:54     ` Gustavo Zacarias
2014-06-24 21:59       ` Yann E. MORIN
2014-06-24 22:09         ` Gustavo Zacarias
2014-06-24 18:55 ` [Buildroot] [PATCH 08/54] libfreefare: " Gustavo Zacarias
2014-06-24 21:52   ` Yann E. MORIN
2014-06-24 21:57     ` Gustavo Zacarias
2014-06-24 18:55 ` [Buildroot] [PATCH 09/54] libgail: " Gustavo Zacarias
2014-06-24 21:55   ` Yann E. MORIN
2014-06-25 20:42   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 10/54] libglade: " Gustavo Zacarias
2014-06-24 22:03   ` Yann E. MORIN
2014-06-25 20:43   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 11/54] libgtk2: " Gustavo Zacarias
2014-06-24 22:05   ` Yann E. MORIN
2014-06-25 20:44   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 12/54] libhid: " Gustavo Zacarias
2014-06-24 22:13   ` Yann E. MORIN
2014-06-25 20:47   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 13/54] libical: " Gustavo Zacarias
2014-06-24 22:21   ` Yann E. MORIN
2014-06-25 20:50     ` Peter Korsgaard
2014-06-25 21:01       ` Yann E. MORIN
2014-06-24 18:55 ` [Buildroot] [PATCH 14/54] libiqrf: " Gustavo Zacarias
2014-06-24 22:23   ` Yann E. MORIN
2014-06-25 20:52   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 15/54] libraw1394: " Gustavo Zacarias
2014-06-24 22:26   ` Yann E. MORIN
2014-06-25 20:53   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 16/54] librsvg: " Gustavo Zacarias
2014-06-25 19:34   ` Yann E. MORIN
2014-06-25 20:55   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 17/54] libsvgtiny: " Gustavo Zacarias
2014-06-25 19:38   ` Yann E. MORIN
2014-06-25 19:48     ` Gustavo Zacarias
2014-06-25 20:55   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 18/54] libsysfs: " Gustavo Zacarias
2014-06-25 19:41   ` Yann E. MORIN
2014-06-25 19:45     ` Gustavo Zacarias
2014-06-25 19:51       ` Yann E. MORIN
2014-06-25 19:52   ` Yann E. MORIN
2014-06-25 20:56   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 19/54] libv4l: " Gustavo Zacarias
2014-06-25 19:50   ` Yann E. MORIN
2014-06-25 21:02     ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 20/54] lsuio: " Gustavo Zacarias
2014-06-25 20:08   ` Yann E. MORIN
2014-06-25 21:03   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 21/54] nasm: " Gustavo Zacarias
2014-06-25 20:10   ` Yann E. MORIN
2014-06-25 21:03   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 22/54] ndisc6: " Gustavo Zacarias
2014-06-25 20:14   ` Yann E. MORIN
2014-06-25 21:04   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 23/54] netplug: " Gustavo Zacarias
2014-06-25 20:20   ` Yann E. MORIN
2014-06-25 21:07   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 24/54] network-manager: " Gustavo Zacarias
2014-06-25 20:26   ` Yann E. MORIN
2014-06-25 21:07   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 25/54] open2300: " Gustavo Zacarias
2014-06-25 21:08   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 26/54] openocd: " Gustavo Zacarias
2014-06-25 21:10   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 27/54] pango: " Gustavo Zacarias
2014-06-25 21:10   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 28/54] proxychains-ng: " Gustavo Zacarias
2014-06-26  7:47   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 29/54] python-id3: " Gustavo Zacarias
2014-06-26  9:41   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 30/54] python-dpkt: " Gustavo Zacarias
2014-06-26 11:06   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 31/54] python-mad: " Gustavo Zacarias
2014-06-26 11:27   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 32/54] python-pygame: " Gustavo Zacarias
2014-06-26 11:50   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 33/54] rubix: " Gustavo Zacarias
2014-06-26 14:35   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 34/54] sane-backends: " Gustavo Zacarias
2014-06-26 14:35   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 35/54] shared-mime-info: " Gustavo Zacarias
2014-06-26 14:36   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 36/54] socketcand: " Gustavo Zacarias
2014-06-26 15:00   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 37/54] squashfs: " Gustavo Zacarias
2014-06-26 15:01   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 38/54] sredird: " Gustavo Zacarias
2014-06-26 15:02   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 39/54] statserial: " Gustavo Zacarias
2014-06-26 15:02   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 40/54] synergy: " Gustavo Zacarias
2014-06-26 15:03   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 41/54] sysprof: " Gustavo Zacarias
2014-06-26 15:04   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 42/54] transmission: " Gustavo Zacarias
2014-06-26 15:06   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 43/54] uclibc: " Gustavo Zacarias
2014-06-26 15:09   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 44/54] xapp_xinit: " Gustavo Zacarias
2014-06-26 15:09   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 45/54] x11vnc: " Gustavo Zacarias
2014-06-26 15:10   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 46/54] nbd: updatel icense information Gustavo Zacarias
2014-06-26 15:11   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 47/54] avrdude: add license information Gustavo Zacarias
2014-06-27  6:47   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 48/54] freerdp: fix typo in " Gustavo Zacarias
2014-06-27  6:47   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 49/54] gqview: add " Gustavo Zacarias
2014-06-27  6:48   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 50/54] gptfdisk: " Gustavo Zacarias
2014-06-27  6:49   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 51/54] startup-notification: " Gustavo Zacarias
2014-06-27  6:52   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 52/54] protobuf-c: update " Gustavo Zacarias
2014-06-27  6:54   ` Peter Korsgaard
2014-06-24 18:55 ` [Buildroot] [PATCH 53/54] ti-utils: add " Gustavo Zacarias
2014-06-27  6:57   ` Peter Korsgaard
2014-06-24 18:56 ` [Buildroot] [PATCH 54/54] metacity: " Gustavo Zacarias
2014-06-27  6:57   ` Peter Korsgaard
2014-06-24 21:33 ` [Buildroot] [PATCH 01/54] gvfs: " Yann E. MORIN
2014-06-24 21:36   ` Gustavo Zacarias
2014-06-25 20:38 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.