All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/14] quicky:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
@ 2010-11-26  2:26 ` Mei Lei
  2010-11-26  7:23 ` [PATCH 02/14] modutils-collateral:Add " Mei Lei
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  2:26 UTC (permalink / raw)
  To: poky

Add version.h file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/recipes-qt/qt-apps/quicky_0.4.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-qt/qt-apps/quicky_0.4.bb b/meta/recipes-qt/qt-apps/quicky_0.4.bb
index ece8ead..639d715 100644
--- a/meta/recipes-qt/qt-apps/quicky_0.4.bb
+++ b/meta/recipes-qt/qt-apps/quicky_0.4.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "A simple note-taking application with Wiki-style syntax and behaviour"
 HOMEPAGE = "http://qt-apps.org/content/show.php/Quicky?content=80325"
 LICENSE = "GPLv2+"
+LIC_FILES_CHKSUM = "file://version.h;endline=19;md5=878bdaff438dab86298301fd1a210e14"
 SECTION = "x11/apps"
 
 DEPENDS = "qt4-x11-free"
-- 
1.6.3.3



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

* [PATCH 02/14] modutils-collateral:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
  2010-11-26  2:26 ` [PATCH 01/14] quicky:Add license checksum to bb file Mei Lei
@ 2010-11-26  7:23 ` Mei Lei
  2010-11-26  7:52 ` [PATCH 03/14] opkg-config-base:Add " Mei Lei
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  7:23 UTC (permalink / raw)
  To: poky

Get md5sum of COPYING.MIT file which under the meta directory, because this recipe is a local recipe, so we need to find the license file under the meta.
Import a new varible "L" to record the license file path.

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/classes/insane.bbclass                        |    2 +-
 meta/conf/bitbake.conf                             |    2 +-
 .../recipes-kernel/modutils/modutils-collateral.bb |    5 +++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index b06d021..0f3ddb8 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -351,7 +351,7 @@ def package_qa_check_license(workdir, d):
         bb.warn(pn + ": Recipe file does not have license file information (LIC_FILES_CHKSUM)")
         return True
 
-    srcdir = bb.data.getVar('S', d, True)
+    srcdir = bb.data.getVar('L', d, True)
 
     for url in lic_files.split():
         (type, host, path, user, pswd, parm) = bb.decodeurl(url)
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index abd2bb5..9982b48 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -243,7 +243,7 @@ FILESDIR = "${@bb.which(bb.data.getVar('FILESPATH', d, 1), '.')}"
 ##################################################################
 # General work and output directories for the build system.
 ##################################################################
-
+L = ${S}
 TMPDIR ?= "${TOPDIR}/tmp"
 CACHE = "${TMPDIR}/cache${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}${@['', '/' + str(bb.data.getVar('SDKMACHINE', d, 1))][bool(bb.data.getVar('SDKMACHINE', d, 1))]}"
 # The persistent cache should be shared by all builds
diff --git a/meta/recipes-kernel/modutils/modutils-collateral.bb b/meta/recipes-kernel/modutils/modutils-collateral.bb
index 6d010a5..1924770 100644
--- a/meta/recipes-kernel/modutils/modutils-collateral.bb
+++ b/meta/recipes-kernel/modutils/modutils-collateral.bb
@@ -2,9 +2,10 @@ SECTION = "base"
 DESCRIPTION = "modutils configuration files"
 PR = "r3"
 LICENSE = "MIT"
-
+L = ${OEROOT}/meta
+LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 SRC_URI = "file://modules \
-	   file://modules.conf"
+	   file://modules.conf" 
 
 do_compile () {
 }
-- 
1.6.3.3



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

* [PATCH 03/14] opkg-config-base:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
  2010-11-26  2:26 ` [PATCH 01/14] quicky:Add license checksum to bb file Mei Lei
  2010-11-26  7:23 ` [PATCH 02/14] modutils-collateral:Add " Mei Lei
@ 2010-11-26  7:52 ` Mei Lei
  2010-11-26  7:57 ` [PATCH 04/14] opkg-collateral:Add " Mei Lei
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  7:52 UTC (permalink / raw)
  To: poky

Add COPYING.MIT file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/recipes-devtools/opkg/opkg-config-base_1.0.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/opkg/opkg-config-base_1.0.bb b/meta/recipes-devtools/opkg/opkg-config-base_1.0.bb
index 9e27e93..54ab7d8 100644
--- a/meta/recipes-devtools/opkg/opkg-config-base_1.0.bb
+++ b/meta/recipes-devtools/opkg/opkg-config-base_1.0.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "Base configuration files for opkg"
+L = ${OEROOT}/meta
 LICENSE = "MIT"
-
+LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
 do_compile() {
-- 
1.6.3.3



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

* [PATCH 04/14] opkg-collateral:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (2 preceding siblings ...)
  2010-11-26  7:52 ` [PATCH 03/14] opkg-config-base:Add " Mei Lei
@ 2010-11-26  7:57 ` Mei Lei
  2010-11-26  8:00 ` [PATCH 05/14] poky-feed-config-opkg:Add " Mei Lei
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  7:57 UTC (permalink / raw)
  To: poky

Add COPYING.MIT file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/recipes-devtools/opkg/opkg-collateral.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/opkg/opkg-collateral.bb b/meta/recipes-devtools/opkg/opkg-collateral.bb
index 79c741d..3c3e95d 100644
--- a/meta/recipes-devtools/opkg/opkg-collateral.bb
+++ b/meta/recipes-devtools/opkg/opkg-collateral.bb
@@ -1,7 +1,8 @@
 DESCRIPTION = "opkg configuration files"
 SECTION = "base"
+L = ${OEROOT}/meta
 LICENSE = "MIT"
-
+LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 SRC_URI = "file://opkg.conf.comments \
 	   file://lists \
 	   file://dest \
-- 
1.6.3.3



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

* [PATCH 05/14] poky-feed-config-opkg:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (3 preceding siblings ...)
  2010-11-26  7:57 ` [PATCH 04/14] opkg-collateral:Add " Mei Lei
@ 2010-11-26  8:00 ` Mei Lei
  2010-11-26  8:07 ` [PATCH 06/14] consolekit:Add " Mei Lei
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  8:00 UTC (permalink / raw)
  To: poky

Add COPYING file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../feed-config/poky-feed-config-opkg_1.0.bb       |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb b/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb
index f36b38a..d355979 100644
--- a/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb
+++ b/meta/recipes-core/feed-config/poky-feed-config-opkg_1.0.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "Poky example feed configuration"
+L = ${OEROOT}/meta
 LICENSE = "MIT"
-
+LIC_FILES_CHKSUM = "file://COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
 PR = "r1"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-- 
1.6.3.3



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

* [PATCH 06/14] consolekit:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (4 preceding siblings ...)
  2010-11-26  8:00 ` [PATCH 05/14] poky-feed-config-opkg:Add " Mei Lei
@ 2010-11-26  8:07 ` Mei Lei
  2010-11-26  8:31 ` [PATCH 07/14] gobject-introspection:Add " Mei Lei
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  8:07 UTC (permalink / raw)
  To: poky

Add COPYING file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../recipes-support/consolekit/consolekit_0.3.0.bb |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-support/consolekit/consolekit_0.3.0.bb b/meta/recipes-support/consolekit/consolekit_0.3.0.bb
index fcd735d..0d0dfea 100644
--- a/meta/recipes-support/consolekit/consolekit_0.3.0.bb
+++ b/meta/recipes-support/consolekit/consolekit_0.3.0.bb
@@ -1,5 +1,6 @@
 DESCRIPTION = "ConsoleKit is a framework for defining and tracking users, login sessions, and seats."
 LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
 DEPENDS = "dbus"
 
 inherit gnome
-- 
1.6.3.3



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

* [PATCH 07/14] gobject-introspection:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (5 preceding siblings ...)
  2010-11-26  8:07 ` [PATCH 06/14] consolekit:Add " Mei Lei
@ 2010-11-26  8:31 ` Mei Lei
  2010-11-26  8:54 ` [PATCH 08/14] console-tools:Add license checksum and update the GPL information Mei Lei
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  8:31 UTC (permalink / raw)
  To: poky

Add COPYING.lib and COPYING.tools files checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../gnome/gobject-introspection_git.bb             |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-gnome/gnome/gobject-introspection_git.bb b/meta/recipes-gnome/gnome/gobject-introspection_git.bb
index b5e33fe..81d279a 100644
--- a/meta/recipes-gnome/gnome/gobject-introspection_git.bb
+++ b/meta/recipes-gnome/gnome/gobject-introspection_git.bb
@@ -6,7 +6,8 @@ SRC_URI_virtclass-native = "git://git.gnome.org/gobject-introspection;protocol=g
                             file://pathfix.patch;patch=1"
 
 LICENSE = "GPLv2+ & LGPLv2+"
-
+LIC_FILES_CHKSUM = "file://COPYING.tools;md5=94d55d512a9ba36caa9b7df079bae19f \
+		    file://COPYING.lib;md5=3bf50002aefd002f49e7bb854063f7e7"
 PV = "0.0+git${SRCREV}"
 PR = "r3"
 
-- 
1.6.3.3



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

* [PATCH 08/14] console-tools:Add license checksum and update the GPL information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (6 preceding siblings ...)
  2010-11-26  8:31 ` [PATCH 07/14] gobject-introspection:Add " Mei Lei
@ 2010-11-26  8:54 ` Mei Lei
  2010-11-26 10:55 ` [PATCH 09/14] libxml-parser-perl:Add license checksum to bb file Mei Lei
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26  8:54 UTC (permalink / raw)
  To: poky

Add COPYING.kbd file checksum to bb file and update the "GPL" to "GPLv2" according to the COPYING file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../console-tools/console-tools_0.3.2.bb           |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/console-tools/console-tools_0.3.2.bb b/meta/recipes-core/console-tools/console-tools_0.3.2.bb
index 02ca5b9..907bf27 100644
--- a/meta/recipes-core/console-tools/console-tools_0.3.2.bb
+++ b/meta/recipes-core/console-tools/console-tools_0.3.2.bb
@@ -1,5 +1,6 @@
 SECTION = "base"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING.kbd;md5=9b2d91511d3d80d4d20ac6e6b0137fe9"
 SUMMARY = "Allows you to set-up and manipulate the Linux console."
 DESCRIPTION = "Provides tools that enable the set-up and manipulation of the linux console and console-font files."
 DEPENDS = "gettext"
-- 
1.6.3.3



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

* [PATCH 09/14] libxml-parser-perl:Add license checksum to bb file
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (7 preceding siblings ...)
  2010-11-26  8:54 ` [PATCH 08/14] console-tools:Add license checksum and update the GPL information Mei Lei
@ 2010-11-26 10:55 ` Mei Lei
  2010-11-26 11:03 ` [PATCH 10/14] libtimedate-perl:Add license checksum and update the GPL information Mei Lei
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 10:55 UTC (permalink / raw)
  To: poky

Add README file checksum to bb file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../perl/libxml-parser-perl_2.36.bb                |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-devtools/perl/libxml-parser-perl_2.36.bb b/meta/recipes-devtools/perl/libxml-parser-perl_2.36.bb
index 8188405..b9ebd7f 100644
--- a/meta/recipes-devtools/perl/libxml-parser-perl_2.36.bb
+++ b/meta/recipes-devtools/perl/libxml-parser-perl_2.36.bb
@@ -1,5 +1,6 @@
 SECTION = "libs"
 LICENSE = "Artistic"
+LIC_FILES_CHKSUM = "file://README;endline=6;md5=fa7bbbd54d37d6ecf4ef33b7c98b9cd7"
 DEPENDS += "expat expat-native"
 
 SRC_URI = "http://www.cpan.org/modules/by-module/XML/XML-Parser-${PV}.tar.gz"
-- 
1.6.3.3



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

* [PATCH 10/14] libtimedate-perl:Add license checksum and update the GPL information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (8 preceding siblings ...)
  2010-11-26 10:55 ` [PATCH 09/14] libxml-parser-perl:Add license checksum to bb file Mei Lei
@ 2010-11-26 11:03 ` Mei Lei
  2010-11-26 11:07 ` [PATCH 11/14] libconvert-ans1-perl:Add " Mei Lei
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 11:03 UTC (permalink / raw)
  To: poky

Add README file checksum to bb file and update the "GPL" to "GPLv1+" according to the COPYING file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../recipes-extended/perl/libtimedate-perl_1.20.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/perl/libtimedate-perl_1.20.bb b/meta/recipes-extended/perl/libtimedate-perl_1.20.bb
index 84406ad..7298f37 100644
--- a/meta/recipes-extended/perl/libtimedate-perl_1.20.bb
+++ b/meta/recipes-extended/perl/libtimedate-perl_1.20.bb
@@ -1,7 +1,8 @@
 DESCRIPTION = "TimeDate - parser for absolute times"
 SECTION = "libs"
 # You can redistribute it and/or modify it under the same terms as Perl itself.
-LICENSE = "Artistic|GPL"
+LICENSE = "Artistic|GPLv1+"
+LIC_FILES_CHKSUM = "file://README;beginline=21;md5=576b7cb41e5e821501a01ed66f0f9d9e"
 PR = "r2"
 
 
-- 
1.6.3.3



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

* [PATCH 11/14] libconvert-ans1-perl:Add license checksum and update the GPL information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (9 preceding siblings ...)
  2010-11-26 11:03 ` [PATCH 10/14] libtimedate-perl:Add license checksum and update the GPL information Mei Lei
@ 2010-11-26 11:07 ` Mei Lei
  2010-11-26 13:45 ` [PATCH 12/14] gnu-config:Add " Mei Lei
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 11:07 UTC (permalink / raw)
  To: poky

Add README file checksum to bb file and update the "GPL" to "GPLv1+" according to the COPYING file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../perl/libconvert-asn1-perl_0.21.bb              |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/perl/libconvert-asn1-perl_0.21.bb b/meta/recipes-extended/perl/libconvert-asn1-perl_0.21.bb
index 3292ee3..6f6e75c 100644
--- a/meta/recipes-extended/perl/libconvert-asn1-perl_0.21.bb
+++ b/meta/recipes-extended/perl/libconvert-asn1-perl_0.21.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "Convert::ASN1 - ASN.1 Encode/Decode library"
 SECTION = "libs"
-LICENSE = "Artistic|GPL"
+LICENSE = "Artistic|GPLv1+"
+LIC_FILES_CHKSUM = "file://README;beginline=10;endline=12;md5=a64b291b13ffddeef33b14f047ee8b26"
 PR = "r0"
 
 SRC_URI = "http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Convert-ASN1-${PV}.tar.gz"
-- 
1.6.3.3



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

* [PATCH 12/14] gnu-config:Add license checksum and update the GPL information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (10 preceding siblings ...)
  2010-11-26 11:07 ` [PATCH 11/14] libconvert-ans1-perl:Add " Mei Lei
@ 2010-11-26 13:45 ` Mei Lei
  2010-11-26 14:26 ` [PATCH 13/14] gdb:Add " Mei Lei
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 13:45 UTC (permalink / raw)
  To: poky

Add config.guess file checksum to bb file and update the "GPL" to "GPLv1+" according to the license file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 .../gnu-config/gnu-config_20080123.bb              |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb b/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb
index 1ca5c89..5d7d646 100644
--- a/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb
+++ b/meta/recipes-devtools/gnu-config/gnu-config_20080123.bb
@@ -1,6 +1,7 @@
 DESCRIPTION = "gnu-configize"
 SECTION = "devel"
-LICENSE = "GPL"
+LICENSE = "GPLv1+"
+LIC_FILES_CHKSUM = "file://config.guess;endline=39;md5=a089987af4a25cb0419d1c2fd6d495e3"
 DEPENDS = ""
 INHIBIT_DEFAULT_DEPS = "1"
 
-- 
1.6.3.3



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

* [PATCH 13/14] gdb:Add license checksum and update the GPL information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (11 preceding siblings ...)
  2010-11-26 13:45 ` [PATCH 12/14] gnu-config:Add " Mei Lei
@ 2010-11-26 14:26 ` Mei Lei
  2010-11-26 14:44 ` [PATCH 14/14] gcc:Add " Mei Lei
  2010-12-02 18:04 ` [PATCH 00/14]Update 14 recipes license files MD5sum information Saul Wold
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 14:26 UTC (permalink / raw)
  To: poky

Add COPYING COPYING3 COPYING.LIB COPYING3.LIB files checksum to bb file and add the "GPLv3" "GPLv2" "LGPLv2" "LGPLv3" information according
to the COPYING file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/recipes-devtools/gdb/gdb_7.2.bb |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gdb/gdb_7.2.bb b/meta/recipes-devtools/gdb/gdb_7.2.bb
index ec413a1..4d3d9d4 100644
--- a/meta/recipes-devtools/gdb/gdb_7.2.bb
+++ b/meta/recipes-devtools/gdb/gdb_7.2.bb
@@ -1,3 +1,7 @@
 require gdb.inc
-
+LICENSE="GPLv2&GPLv3&LGPLv2&LGPLv3"
+LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
+		    file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
+		    file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
+		    file://COPYING.LIB;md5=9f604d8a4f8e74f4f5140845a21b6674"
 PR = "r0"
-- 
1.6.3.3



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

* [PATCH 14/14] gcc:Add license checksum and update the GPL information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (12 preceding siblings ...)
  2010-11-26 14:26 ` [PATCH 13/14] gdb:Add " Mei Lei
@ 2010-11-26 14:44 ` Mei Lei
  2010-12-02 18:04 ` [PATCH 00/14]Update 14 recipes license files MD5sum information Saul Wold
  14 siblings, 0 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 14:44 UTC (permalink / raw)
  To: poky

Add COPYING COPYING3 COPYING.LIB COPYING3.LIB COPYING.RUNTIME files checksum to bb file and add the "GCC RUNTIME LIBRARY EXCEPTION"
 "GPLv3" "GPLv2" "LGPLv2" "LGPLv3" information according to the COPYING file

Signed-off-by: Mei Lei <lei.mei@intel.com>
---
 meta/recipes-devtools/gcc/gcc_4.5.1.bb |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc_4.5.1.bb b/meta/recipes-devtools/gcc/gcc_4.5.1.bb
index 0e77725..91b782f 100644
--- a/meta/recipes-devtools/gcc/gcc_4.5.1.bb
+++ b/meta/recipes-devtools/gcc/gcc_4.5.1.bb
@@ -1,5 +1,10 @@
 PR = "r0"
-
+LICENSE="GCC RUNTIME LIBRARY EXCEPTION & GPLv2 & GPLv3 & LGPLv2.1 & LGPLv3"
+LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
+                   file://COPYING3;md5=d32239bcb673463ab874e80d47fae504 \
+                   file://COPYING3.LIB;md5=6a6a8e020838b23406c81b19c1d46df6 \
+                   file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
+		   file://COPYING.RUNTIME;md5=fe60d87048567d4fe8c8a0ed2448bcc8"
 require gcc-${PV}.inc
 require gcc-configure-target.inc
 require gcc-package-target.inc
-- 
1.6.3.3



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

* [PATCH 00/14]Update 14 recipes license files MD5sum information
@ 2010-11-26 15:31 Mei Lei
  2010-11-26  2:26 ` [PATCH 01/14] quicky:Add license checksum to bb file Mei Lei
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Mei Lei @ 2010-11-26 15:31 UTC (permalink / raw)
  To: poky

This includes 14 recipes update

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: lmei3/chksum3
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lmei3/chksum3

Thanks,
    Mei Lei <lei.mei@intel.com>
---


Mei Lei (14):
  quicky:Add license checksum to bb file
  modutils-collateral:Add license checksum to bb file
  opkg-config-base:Add license checksum to bb file
  opkg-collateral:Add license checksum to bb file
  poky-feed-config-opkg:Add license checksum to bb file
  consolekit:Add license checksum to bb file
  gobject-introspection:Add license checksum to bb file
  console-tools:Add license checksum and update the GPL information
  libxml-parser-perl:Add license checksum to bb file
  libtimedate-perl:Add license checksum and update the GPL information
  libconvert-ans1-perl:Add license checksum and update the GPL
    information
  gnu-config:Add license checksum and update the GPL information
  gdb:Add license checksum and update the GPL information
  gcc:Add license checksum and update the GPL information

 meta/classes/insane.bbclass                        |    2 +-
 meta/conf/bitbake.conf                             |    2 +-
 .../console-tools/console-tools_0.3.2.bb           |    3 ++-
 .../feed-config/poky-feed-config-opkg_1.0.bb       |    3 ++-
 meta/recipes-devtools/gcc/gcc_4.5.1.bb             |    7 ++++++-
 meta/recipes-devtools/gdb/gdb_7.2.bb               |    6 +++++-
 .../gnu-config/gnu-config_20080123.bb              |    3 ++-
 meta/recipes-devtools/opkg/opkg-collateral.bb      |    3 ++-
 meta/recipes-devtools/opkg/opkg-config-base_1.0.bb |    3 ++-
 .../perl/libxml-parser-perl_2.36.bb                |    1 +
 .../perl/libconvert-asn1-perl_0.21.bb              |    3 ++-
 .../recipes-extended/perl/libtimedate-perl_1.20.bb |    3 ++-
 .../gnome/gobject-introspection_git.bb             |    3 ++-
 .../recipes-kernel/modutils/modutils-collateral.bb |    5 +++--
 meta/recipes-qt/qt-apps/quicky_0.4.bb              |    1 +
 .../recipes-support/consolekit/consolekit_0.3.0.bb |    1 +
 16 files changed, 35 insertions(+), 14 deletions(-)



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

* Re: [PATCH 00/14]Update 14 recipes license files MD5sum information
  2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
                   ` (13 preceding siblings ...)
  2010-11-26 14:44 ` [PATCH 14/14] gcc:Add " Mei Lei
@ 2010-12-02 18:04 ` Saul Wold
  14 siblings, 0 replies; 16+ messages in thread
From: Saul Wold @ 2010-12-02 18:04 UTC (permalink / raw)
  To: Mei Lei; +Cc: poky@yoctoproject.org

On 11/26/2010 07:31 AM, Mei Lei wrote:
> This includes 14 recipes update
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: lmei3/chksum3
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=lmei3/chksum3
>
> Thanks,
>      Mei Lei<lei.mei@intel.com>
> ---
>
>
> Mei Lei (14):
>    quicky:Add license checksum to bb file
>    modutils-collateral:Add license checksum to bb file
>    opkg-config-base:Add license checksum to bb file
>    opkg-collateral:Add license checksum to bb file
>    poky-feed-config-opkg:Add license checksum to bb file
>    consolekit:Add license checksum to bb file
>    gobject-introspection:Add license checksum to bb file
>    console-tools:Add license checksum and update the GPL information
>    libxml-parser-perl:Add license checksum to bb file
>    libtimedate-perl:Add license checksum and update the GPL information
>    libconvert-ans1-perl:Add license checksum and update the GPL
>      information
>    gnu-config:Add license checksum and update the GPL information
>    gdb:Add license checksum and update the GPL information
>    gcc:Add license checksum and update the GPL information
>
>   meta/classes/insane.bbclass                        |    2 +-
>   meta/conf/bitbake.conf                             |    2 +-
>   .../console-tools/console-tools_0.3.2.bb           |    3 ++-
>   .../feed-config/poky-feed-config-opkg_1.0.bb       |    3 ++-
>   meta/recipes-devtools/gcc/gcc_4.5.1.bb             |    7 ++++++-
>   meta/recipes-devtools/gdb/gdb_7.2.bb               |    6 +++++-
>   .../gnu-config/gnu-config_20080123.bb              |    3 ++-
>   meta/recipes-devtools/opkg/opkg-collateral.bb      |    3 ++-
>   meta/recipes-devtools/opkg/opkg-config-base_1.0.bb |    3 ++-
>   .../perl/libxml-parser-perl_2.36.bb                |    1 +
>   .../perl/libconvert-asn1-perl_0.21.bb              |    3 ++-
>   .../recipes-extended/perl/libtimedate-perl_1.20.bb |    3 ++-
>   .../gnome/gobject-introspection_git.bb             |    3 ++-
>   .../recipes-kernel/modutils/modutils-collateral.bb |    5 +++--
>   meta/recipes-qt/qt-apps/quicky_0.4.bb              |    1 +
>   .../recipes-support/consolekit/consolekit_0.3.0.bb |    1 +
>   16 files changed, 35 insertions(+), 14 deletions(-)
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>
Pull into Master

Thanks
    Sau!



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

end of thread, other threads:[~2010-12-02 18:04 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-26 15:31 [PATCH 00/14]Update 14 recipes license files MD5sum information Mei Lei
2010-11-26  2:26 ` [PATCH 01/14] quicky:Add license checksum to bb file Mei Lei
2010-11-26  7:23 ` [PATCH 02/14] modutils-collateral:Add " Mei Lei
2010-11-26  7:52 ` [PATCH 03/14] opkg-config-base:Add " Mei Lei
2010-11-26  7:57 ` [PATCH 04/14] opkg-collateral:Add " Mei Lei
2010-11-26  8:00 ` [PATCH 05/14] poky-feed-config-opkg:Add " Mei Lei
2010-11-26  8:07 ` [PATCH 06/14] consolekit:Add " Mei Lei
2010-11-26  8:31 ` [PATCH 07/14] gobject-introspection:Add " Mei Lei
2010-11-26  8:54 ` [PATCH 08/14] console-tools:Add license checksum and update the GPL information Mei Lei
2010-11-26 10:55 ` [PATCH 09/14] libxml-parser-perl:Add license checksum to bb file Mei Lei
2010-11-26 11:03 ` [PATCH 10/14] libtimedate-perl:Add license checksum and update the GPL information Mei Lei
2010-11-26 11:07 ` [PATCH 11/14] libconvert-ans1-perl:Add " Mei Lei
2010-11-26 13:45 ` [PATCH 12/14] gnu-config:Add " Mei Lei
2010-11-26 14:26 ` [PATCH 13/14] gdb:Add " Mei Lei
2010-11-26 14:44 ` [PATCH 14/14] gcc:Add " Mei Lei
2010-12-02 18:04 ` [PATCH 00/14]Update 14 recipes license files MD5sum information Saul Wold

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.