* [PATCH 0/4] A few LICENSE fixes
@ 2015-01-13 12:23 Paul Eggleton
2015-01-13 12:23 ` [PATCH 1/4] pigz: add Apache-2.0 to LICENSE Paul Eggleton
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-01-13 12:23 UTC (permalink / raw)
To: openembedded-core
The following changes since commit b61a2acc321489c3427f0afa3059486dc144a13b:
bind: Update libxml2 check to make it deterministic. (2015-01-08 09:21:18 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/licenses
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/licenses
Paul Eggleton (4):
pigz: add Apache-2.0 to LICENSE
perl: fix LICENSE to be more accurate
libxml-simple-perl: fix LICENSE to be more accurate
libxml-parser-perl: fix LICENSE to be more accurate
meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb | 2 +-
meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb | 2 +-
meta/recipes-devtools/perl/perl-native_5.20.0.bb | 2 +-
meta/recipes-devtools/perl/perl_5.20.0.bb | 2 +-
meta/recipes-extended/pigz/pigz.inc | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
--
1.9.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/4] pigz: add Apache-2.0 to LICENSE
2015-01-13 12:23 [PATCH 0/4] A few LICENSE fixes Paul Eggleton
@ 2015-01-13 12:23 ` Paul Eggleton
2015-01-13 12:23 ` [PATCH 2/4] perl: fix LICENSE to be more accurate Paul Eggleton
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-01-13 12:23 UTC (permalink / raw)
To: openembedded-core
As of version 2.3, pigz ships a copy of zopfli, which is Apache-2.0
licensed, so we need to add this to LICENSE.
Thanks to Clemens Lang for reporting this.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-extended/pigz/pigz.inc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc
index 355fb2a..d313f2f 100644
--- a/meta/recipes-extended/pigz/pigz.inc
+++ b/meta/recipes-extended/pigz/pigz.inc
@@ -5,7 +5,7 @@ multiple cores to the hilt when compressing data. pigz was written by Mark \
Adler, and uses the zlib and pthread libraries."
HOMEPAGE = "http://zlib.net/pigz/"
SECTION = "console/utils"
-LICENSE = "Zlib"
+LICENSE = "Zlib & Apache-2.0"
SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz"
--
1.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/4] perl: fix LICENSE to be more accurate
2015-01-13 12:23 [PATCH 0/4] A few LICENSE fixes Paul Eggleton
2015-01-13 12:23 ` [PATCH 1/4] pigz: add Apache-2.0 to LICENSE Paul Eggleton
@ 2015-01-13 12:23 ` Paul Eggleton
2015-01-13 12:23 ` [PATCH 3/4] libxml-simple-perl: " Paul Eggleton
2015-01-13 12:23 ` [PATCH 4/4] libxml-parser-perl: " Paul Eggleton
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-01-13 12:23 UTC (permalink / raw)
To: openembedded-core
The Perl license is the Artistic License, or GPL version 1 or (at your
option) any later version:
http://dev.perl.org/licenses/
Update LICENSE accordingly. Thanks to Clemens Lang for reporting this.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-devtools/perl/perl-native_5.20.0.bb | 2 +-
meta/recipes-devtools/perl/perl_5.20.0.bb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-devtools/perl/perl-native_5.20.0.bb b/meta/recipes-devtools/perl/perl-native_5.20.0.bb
index 01d40fc..586a347 100644
--- a/meta/recipes-devtools/perl/perl-native_5.20.0.bb
+++ b/meta/recipes-devtools/perl/perl-native_5.20.0.bb
@@ -1,7 +1,7 @@
SUMMARY = "Perl scripting language"
HOMEPAGE = "http://www.perl.org/"
SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0"
+LICENSE = "Artistic-1.0 | GPL-1.0+"
LIC_FILES_CHKSUM = "file://Copying;md5=5b122a36d0f6dc55279a0ebc69f3c60b \
file://Artistic;md5=2e6fd2475335af892494fe1f7327baf3"
diff --git a/meta/recipes-devtools/perl/perl_5.20.0.bb b/meta/recipes-devtools/perl/perl_5.20.0.bb
index 3ca0f53..c1766fc 100644
--- a/meta/recipes-devtools/perl/perl_5.20.0.bb
+++ b/meta/recipes-devtools/perl/perl_5.20.0.bb
@@ -1,7 +1,7 @@
SUMMARY = "Perl scripting language"
HOMEPAGE = "http://www.perl.org/"
SECTION = "devel"
-LICENSE = "Artistic-1.0 | GPL-1.0"
+LICENSE = "Artistic-1.0 | GPL-1.0+"
LIC_FILES_CHKSUM = "file://Copying;md5=5b122a36d0f6dc55279a0ebc69f3c60b \
file://Artistic;md5=2e6fd2475335af892494fe1f7327baf3"
# We need gnugrep (for -I)
--
1.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/4] libxml-simple-perl: fix LICENSE to be more accurate
2015-01-13 12:23 [PATCH 0/4] A few LICENSE fixes Paul Eggleton
2015-01-13 12:23 ` [PATCH 1/4] pigz: add Apache-2.0 to LICENSE Paul Eggleton
2015-01-13 12:23 ` [PATCH 2/4] perl: fix LICENSE to be more accurate Paul Eggleton
@ 2015-01-13 12:23 ` Paul Eggleton
2015-01-13 12:23 ` [PATCH 4/4] libxml-parser-perl: " Paul Eggleton
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-01-13 12:23 UTC (permalink / raw)
To: openembedded-core
XML::Simple is distributed under the same licenses as Perl itself; its
accompanying license statement also explicitly restates Artistic license
or GPL version 1 or (at your option) any later version (i.e. the same as
Perl).
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb b/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb
index 1fcb322..b72afc0 100644
--- a/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb
+++ b/meta/recipes-devtools/perl/libxml-simple-perl_2.20.bb
@@ -6,7 +6,7 @@ on top of an underlying XML parsing module to maintain XML files \
where the original uses plain Perl or SAX parsers."
HOMEPAGE = "http://search.cpan.org/~markov/XML-LibXML-Simple-0.93/lib/XML/LibXML/Simple.pod"
SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0"
+LICENSE = "Artistic-1.0 | GPL-1.0+"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e7dbb3e2241fac8457967053fc1a1ddb"
DEPENDS += "libxml-parser-perl"
--
1.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 4/4] libxml-parser-perl: fix LICENSE to be more accurate
2015-01-13 12:23 [PATCH 0/4] A few LICENSE fixes Paul Eggleton
` (2 preceding siblings ...)
2015-01-13 12:23 ` [PATCH 3/4] libxml-simple-perl: " Paul Eggleton
@ 2015-01-13 12:23 ` Paul Eggleton
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2015-01-13 12:23 UTC (permalink / raw)
To: openembedded-core
XML::Parser is distributed under the same licenses as Perl itself.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb
index 26241e8..a2fa90c 100644
--- a/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb
+++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.41.bb
@@ -1,6 +1,6 @@
SUMMARY = "XML::Parser - A perl module for parsing XML documents"
SECTION = "libs"
-LICENSE = "Artistic-1.0 | GPL-1.0"
+LICENSE = "Artistic-1.0 | GPL-1.0+"
LIC_FILES_CHKSUM = "file://README;beginline=2;endline=6;md5=c8767d7516229f07b26e42d1cf8b51f1"
DEPENDS += "expat expat-native"
--
1.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-01-13 12:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-13 12:23 [PATCH 0/4] A few LICENSE fixes Paul Eggleton
2015-01-13 12:23 ` [PATCH 1/4] pigz: add Apache-2.0 to LICENSE Paul Eggleton
2015-01-13 12:23 ` [PATCH 2/4] perl: fix LICENSE to be more accurate Paul Eggleton
2015-01-13 12:23 ` [PATCH 3/4] libxml-simple-perl: " Paul Eggleton
2015-01-13 12:23 ` [PATCH 4/4] libxml-parser-perl: " Paul Eggleton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox