* [Buildroot] [PATCH 1/4] at: add license information
@ 2014-07-03 20:00 Gustavo Zacarias
2014-07-03 20:00 ` [Buildroot] [PATCH 2/4] bootutils: " Gustavo Zacarias
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2014-07-03 20:00 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/at/at.mk | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/at/at.mk b/package/at/at.mk
index 0fe5b9a..f09548d 100644
--- a/package/at/at.mk
+++ b/package/at/at.mk
@@ -11,6 +11,8 @@ AT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/a/at
AT_MAKE = $(MAKE1)
AT_AUTORECONF = YES
AT_DEPENDENCIES = $(if $(BR2_PACKAGE_FLEX),flex) host-bison host-flex
+AT_LICENSE = GPLv2+
+AT_LICENSE_FILES = Copyright
AT_CONF_OPT = \
--with-jobdir=/var/spool/cron/atjobs \
--
1.8.5.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 2/4] bootutils: add license information
2014-07-03 20:00 [Buildroot] [PATCH 1/4] at: add license information Gustavo Zacarias
@ 2014-07-03 20:00 ` Gustavo Zacarias
2014-07-09 13:34 ` Peter Korsgaard
2014-07-03 20:00 ` [Buildroot] [PATCH 3/4] cloop: " Gustavo Zacarias
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2014-07-03 20:00 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/bootutils/bootutils.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/bootutils/bootutils.mk b/package/bootutils/bootutils.mk
index caee2fd..014df8f 100644
--- a/package/bootutils/bootutils.mk
+++ b/package/bootutils/bootutils.mk
@@ -6,7 +6,7 @@
BOOTUTILS_VERSION = 1.0.0
BOOTUTILS_SITE = http://downloads.sourceforge.net/project/bootutils/Stable/v$(BOOTUTILS_VERSION)
-
BOOTUTILS_CONF_OPT = --prefix=/ --exec-prefix=/
+BOOTUTILS_LICENSE = GPLv2+
$(eval $(autotools-package))
--
1.8.5.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 3/4] cloop: add license information
2014-07-03 20:00 [Buildroot] [PATCH 1/4] at: add license information Gustavo Zacarias
2014-07-03 20:00 ` [Buildroot] [PATCH 2/4] bootutils: " Gustavo Zacarias
@ 2014-07-03 20:00 ` Gustavo Zacarias
2014-07-09 13:42 ` Peter Korsgaard
2014-07-03 20:00 ` [Buildroot] [PATCH 4/4] cryptodev-linux: fix " Gustavo Zacarias
2014-07-04 14:13 ` [Buildroot] [PATCH 1/4] at: add " Peter Korsgaard
3 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2014-07-03 20:00 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/cloop/cloop.mk | 2 ++
1 file changed, 2 insertions(+)
diff --git a/package/cloop/cloop.mk b/package/cloop/cloop.mk
index adbd69a..fb0bdf3 100644
--- a/package/cloop/cloop.mk
+++ b/package/cloop/cloop.mk
@@ -7,6 +7,8 @@
CLOOP_VERSION = 2.634-1
CLOOP_SOURCE = cloop_$(CLOOP_VERSION).tar.gz
CLOOP_SITE = http://debian-knoppix.alioth.debian.org/packages/sources/cloop
+CLOOP_LICENSE = GPLv2
+CLOOP_LICENSE_FILES = README
HOST_CLOOP_DEPENDENCIES = host-zlib
--
1.8.5.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 4/4] cryptodev-linux: fix license information
2014-07-03 20:00 [Buildroot] [PATCH 1/4] at: add license information Gustavo Zacarias
2014-07-03 20:00 ` [Buildroot] [PATCH 2/4] bootutils: " Gustavo Zacarias
2014-07-03 20:00 ` [Buildroot] [PATCH 3/4] cloop: " Gustavo Zacarias
@ 2014-07-03 20:00 ` Gustavo Zacarias
2014-07-09 13:45 ` Peter Korsgaard
2014-07-04 14:13 ` [Buildroot] [PATCH 1/4] at: add " Peter Korsgaard
3 siblings, 1 reply; 9+ messages in thread
From: Gustavo Zacarias @ 2014-07-03 20:00 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/cryptodev-linux/cryptodev-linux.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/cryptodev-linux/cryptodev-linux.mk b/package/cryptodev-linux/cryptodev-linux.mk
index 7ec327e..03e3126 100644
--- a/package/cryptodev-linux/cryptodev-linux.mk
+++ b/package/cryptodev-linux/cryptodev-linux.mk
@@ -8,8 +8,8 @@ CRYPTODEV_LINUX_VERSION = 1.6
CRYPTODEV_LINUX_SITE = http://download.gna.org/cryptodev-linux
CRYPTODEV_LINUX_DEPENDENCIES = linux
CRYPTODEV_LINUX_INSTALL_STAGING = YES
-CRYPTODEV_LICENSE = GPLv2+
-CRYPTODEV_LICENSE_FILES = COPYING
+CRYPTODEV_LINUX_LICENSE = GPLv2+
+CRYPTODEV_LINUX_LICENSE_FILES = COPYING
define CRYPTODEV_LINUX_BUILD_CMDS
$(MAKE) -C $(@D) $(LINUX_MAKE_FLAGS) KERNEL_DIR=$(LINUX_DIR)
--
1.8.5.5
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 1/4] at: add license information
2014-07-03 20:00 [Buildroot] [PATCH 1/4] at: add license information Gustavo Zacarias
` (2 preceding siblings ...)
2014-07-03 20:00 ` [Buildroot] [PATCH 4/4] cryptodev-linux: fix " Gustavo Zacarias
@ 2014-07-04 14:13 ` Peter Korsgaard
2014-07-04 14:17 ` Gustavo Zacarias
3 siblings, 1 reply; 9+ messages in thread
From: Peter Korsgaard @ 2014-07-04 14:13 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/at/at.mk | 2 ++
> 1 file changed, 2 insertions(+)
> diff --git a/package/at/at.mk b/package/at/at.mk
> index 0fe5b9a..f09548d 100644
> --- a/package/at/at.mk
> +++ b/package/at/at.mk
> @@ -11,6 +11,8 @@ AT_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/a/at
> AT_MAKE = $(MAKE1)
> AT_AUTORECONF = YES
> AT_DEPENDENCIES = $(if $(BR2_PACKAGE_FLEX),flex) host-bison host-flex
> +AT_LICENSE = GPLv2+
> +AT_LICENSE_FILES = Copyright
That file lists files under GPLv2+, GPLv3+ and the NTP
license. parsetime.pl is only used for 'make test', but wouldn't the
combined license be GPLv3+ instead?
The COPYING file (which we probably should add to _LICENSE_FILES) is
GPLv2 though.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 1/4] at: add license information
2014-07-04 14:13 ` [Buildroot] [PATCH 1/4] at: add " Peter Korsgaard
@ 2014-07-04 14:17 ` Gustavo Zacarias
0 siblings, 0 replies; 9+ messages in thread
From: Gustavo Zacarias @ 2014-07-04 14:17 UTC (permalink / raw)
To: buildroot
On 07/04/2014 11:13 AM, Peter Korsgaard wrote:
> > +AT_LICENSE = GPLv2+
> > +AT_LICENSE_FILES = Copyright
>
> That file lists files under GPLv2+, GPLv3+ and the NTP
> license. parsetime.pl is only used for 'make test', but wouldn't the
> combined license be GPLv3+ instead?
>
> The COPYING file (which we probably should add to _LICENSE_FILES) is
> GPLv2 though.
Yeah i went for Copyright because of the complexities.
at.c which we could call main() is GPLv2+
parsetime.pl should be ingnored (tests, not installed, not used).
Only posixtm.c is v3+ but since it's linked to the other bits that are
v2+ the whole thing should probably be called v3+ (you can go down is my
interpretation, but you can go up).
Regards.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 2/4] bootutils: add license information
2014-07-03 20:00 ` [Buildroot] [PATCH 2/4] bootutils: " Gustavo Zacarias
@ 2014-07-09 13:34 ` Peter Korsgaard
0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2014-07-09 13:34 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/bootutils/bootutils.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> diff --git a/package/bootutils/bootutils.mk b/package/bootutils/bootutils.mk
> index caee2fd..014df8f 100644
> --- a/package/bootutils/bootutils.mk
> +++ b/package/bootutils/bootutils.mk
> @@ -6,7 +6,7 @@
> BOOTUTILS_VERSION = 1.0.0
> BOOTUTILS_SITE = http://downloads.sourceforge.net/project/bootutils/Stable/v$(BOOTUTILS_VERSION)
> -
> BOOTUTILS_CONF_OPT = --prefix=/ --exec-prefix=/
> +BOOTUTILS_LICENSE = GPLv2+
It has a normal COPYING, so I've added it to _LICENSE_FILES and
committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 3/4] cloop: add license information
2014-07-03 20:00 ` [Buildroot] [PATCH 3/4] cloop: " Gustavo Zacarias
@ 2014-07-09 13:42 ` Peter Korsgaard
0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2014-07-09 13:42 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/cloop/cloop.mk | 2 ++
> 1 file changed, 2 insertions(+)
> diff --git a/package/cloop/cloop.mk b/package/cloop/cloop.mk
> index adbd69a..fb0bdf3 100644
> --- a/package/cloop/cloop.mk
> +++ b/package/cloop/cloop.mk
> @@ -7,6 +7,8 @@
> CLOOP_VERSION = 2.634-1
> CLOOP_SOURCE = cloop_$(CLOOP_VERSION).tar.gz
> CLOOP_SITE = http://debian-knoppix.alioth.debian.org/packages/sources/cloop
> +CLOOP_LICENSE = GPLv2
> +CLOOP_LICENSE_FILES = README
The kernel module is indeed GPLv2, but the advancecomp userspace stuff
is GPLv2+ (and has a COPYING), so I've extended it to also cover that.
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Buildroot] [PATCH 4/4] cryptodev-linux: fix license information
2014-07-03 20:00 ` [Buildroot] [PATCH 4/4] cryptodev-linux: fix " Gustavo Zacarias
@ 2014-07-09 13:45 ` Peter Korsgaard
0 siblings, 0 replies; 9+ messages in thread
From: Peter Korsgaard @ 2014-07-09 13:45 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] 9+ messages in thread
end of thread, other threads:[~2014-07-09 13:45 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-03 20:00 [Buildroot] [PATCH 1/4] at: add license information Gustavo Zacarias
2014-07-03 20:00 ` [Buildroot] [PATCH 2/4] bootutils: " Gustavo Zacarias
2014-07-09 13:34 ` Peter Korsgaard
2014-07-03 20:00 ` [Buildroot] [PATCH 3/4] cloop: " Gustavo Zacarias
2014-07-09 13:42 ` Peter Korsgaard
2014-07-03 20:00 ` [Buildroot] [PATCH 4/4] cryptodev-linux: fix " Gustavo Zacarias
2014-07-09 13:45 ` Peter Korsgaard
2014-07-04 14:13 ` [Buildroot] [PATCH 1/4] at: add " Peter Korsgaard
2014-07-04 14:17 ` Gustavo Zacarias
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox