[oe] [PATCH] yavta: Update to latest sources

2014-06-05 Thread Chase Maupin
* Update the yavta test utility to the latest sources in the
  git repository.
* Updated the patch by Koen Kooi that allows stdout mode to be
  used to work with the latest sources.
* Added a CFLAGS setting to use the include directory in the
  sources which are more up-to-date and intended to be used
  when building the application.

Signed-off-by: Chase Maupin 
---
 ...mode-to-allow-streaming-over-the-network-.patch |  551 
 meta-oe/recipes-multimedia/v4l2apps/yavta_git.bb   |7 +-
 2 files changed, 335 insertions(+), 223 deletions(-)

diff --git 
a/meta-oe/recipes-multimedia/v4l2apps/yavta/0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch
 
b/meta-oe/recipes-multimedia/v4l2apps/yavta/0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch
index 430836f..41a5dbf 100644
--- 
a/meta-oe/recipes-multimedia/v4l2apps/yavta/0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch
+++ 
b/meta-oe/recipes-multimedia/v4l2apps/yavta/0001-Add-stdout-mode-to-allow-streaming-over-the-network-.patch
@@ -1,18 +1,35 @@
-From 1146a0f01fc8730d5633b46b85d00154a721abbe Mon Sep 17 00:00:00 2001
+From 141d3b3593722eb3d588e7c4b1542f810bc25853 Mon Sep 17 00:00:00 2001
 From: Koen Kooi 
-Date: Fri, 22 Jun 2012 12:40:23 +0200
+Date: Thu, 5 Jun 2014 11:29:20 -0500
 Subject: [PATCH] Add stdout mode to allow streaming over the network with nc
 
 Signed-off-by: Koen Kooi 
+Signed-off-by: Chase Maupin 
 ---
- yavta.c |  288 ++-
- 1 file changed, 157 insertions(+), 131 deletions(-)
+ yavta.c |  315 ++-
+ 1 file changed, 169 insertions(+), 146 deletions(-)
 
 diff --git a/yavta.c b/yavta.c
-index f3deae0..8020209 100644
+index 32adc26..b398da0 100644
 --- a/yavta.c
 +++ b/yavta.c
-@@ -188,12 +188,12 @@ static int video_open(struct device *dev, const char 
*devname, int no_query)
+@@ -309,7 +309,7 @@ static bool video_has_fd(struct device *dev)
+ static int video_set_fd(struct device *dev, int fd)
+ {
+   if (video_has_fd(dev)) {
+-  printf("Can't set fd (already open).\n");
++  fprintf(stderr, "Can't set fd (already open).\n");
+   return -1;
+   }
+ 
+@@ -321,18 +321,18 @@ static int video_set_fd(struct device *dev, int fd)
+ static int video_open(struct device *dev, const char *devname)
+ {
+   if (video_has_fd(dev)) {
+-  printf("Can't open device (already open).\n");
++  fprintf(stderr, "Can't open device (already open).\n");
+   return -1;
+   }
  
dev->fd = open(devname, O_RDWR);
if (dev->fd < 0) {
@@ -25,25 +42,27 @@ index f3deae0..8020209 100644
 -  printf("Device %s opened.\n", devname);
 +  fprintf(stderr, "Device %s opened.\n", devname);
  
-   if (no_query) {
-   /* Assume capture device. */
-@@ -211,13 +211,13 @@ static int video_open(struct device *dev, const char 
*devname, int no_query)
-   else if (cap.capabilities & V4L2_CAP_VIDEO_OUTPUT)
-   dev->type = V4L2_BUF_TYPE_VIDEO_OUTPUT;
-   else {
--  printf("Error opening device %s: neither video capture "
-+  fprintf(stderr, "Error opening device %s: neither video capture 
"
-   "nor video output supported.\n", devname);
-   close(dev->fd);
+   dev->opened = 1;
+ 
+@@ -352,7 +352,7 @@ static int video_querycap(struct device *dev, unsigned int 
*capabilities)
+   *capabilities = cap.capabilities & V4L2_CAP_DEVICE_CAPS
+? cap.device_caps : cap.capabilities;
+ 
+-  printf("Device `%s' on `%s' is a video %s (%s mplanes) device.\n",
++  fprintf(stderr, "Device `%s' on `%s' is a video %s (%s mplanes) 
device.\n",
+   cap.card, cap.bus_info,
+   video_is_capture(dev) ? "capture" : "output",
+   video_is_mplane(dev) ? "with" : "without");
+@@ -370,7 +370,7 @@ static int cap_get_buf_type(unsigned int capabilities)
+   } else if (capabilities & V4L2_CAP_VIDEO_OUTPUT) {
+   return V4L2_BUF_TYPE_VIDEO_OUTPUT;
+   } else {
+-  printf("Device supports neither capture nor output.\n");
++  fprintf(stderr, "Device supports neither capture nor 
output.\n");
return -EINVAL;
}
  
--  printf("Device `%s' on `%s' is a video %s device.\n",
-+  fprintf(stderr, "Device `%s' on `%s' is a video %s device.\n",
-   cap.card, cap.bus_info,
-   dev->type == V4L2_BUF_TYPE_VIDEO_CAPTURE ? "capture" : 
"output");
-   return 0;
-@@ -280,7 +280,7 @@ static int get_con

[oe] [PATCHv2] pm-qa: Add power management test utils

2014-03-21 Thread Chase Maupin
* The power management test utilities from Linaro can be used
  to test multiple PM features such as cpufreq, cpuidle, thermal
  control and suspend operations.
* These utilities are not platform specific and can be used by
  a broader base of users.

Signed-off-by: Chase Maupin 
---
* Updated in version 2
* Updated version to 0.4.8 to address feedback from Fathi Boudra
* Removed reference to Linaro in DESCRIPTION field to address
  feedback from Fathi Boudra
* Changed installation directory for helper scripts to
  ${libdir}/${PN} instead of ${bindir}/linaro-pm-qa-include
  as per feedback from Koen Kooi
* Changed name of the package to pm-qa instead of pm-qa-utils
  to bring the name in line with the name at he SRC_URI, etc.
  This addresses feedback from Koen Kooi
* Updated comments to reflect the above changes
---
 meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb |   65 +++
 1 file changed, 65 insertions(+)
 create mode 100644 meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb

diff --git a/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb 
b/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb
new file mode 100644
index 000..4d33975
--- /dev/null
+++ b/meta-oe/recipes-devtools/pm-qa/pm-qa_git.bb
@@ -0,0 +1,65 @@
+DESCRIPTION = "Utilities for testing Power Management"
+HOMEPAGE = 
"https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/TestSuite/PmQa";
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+PV = "0.4.8"
+
+BRANCH ?= "master"
+
+# Corresponds to tag pm-qa-v0.4.8
+SRCREV = "6a8c2ae8a6035b15a7fbe61b6ca56841e056fa37"
+
+SRC_URI = "git://git.linaro.org/tools/pm-qa.git;protocol=git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git"
+
+CFLAGS += "-pthread"
+
+do_compile () {
+# Find all the .c files in this project and build them.
+for x in `find . -name "*.c"`
+do
+util=`echo ${x} | sed s/.c$//`
+oe_runmake ${util}
+done
+}
+
+do_install () {
+install -d ${D}${bindir}
+install -d ${D}${libdir}/${PN}
+
+# Install the compiled binaries that were built in the previous step
+for x in `find . -name "*.c"`
+do
+util=`echo ${x} | sed s/.c$//`
+util_basename=`basename ${util}`
+install -m 0755 ${util} ${D}${bindir}/${util_basename}
+done
+
+# Install the helper scripts in a subdirectory of $libdir
+for script in `find . -name "*.sh" | grep include`
+do
+# Remove hardcoded relative paths
+sed -i -e 's#..\/utils\/##' ${script}
+
+script_basename=`basename ${script}`
+install -m 0755 $script ${D}${libdir}/${PN}/${script_basename}
+done
+
+# Install the shell scripts NOT in the $libdir directory since those
+# will be installed elsewhere
+for script in `find . -name "*.sh" | grep -v include`
+do
+# if the script includes any helper scripts from the $libdir
+# directory then change the source path to the absolute path
+# to reflect the install location of the helper scripts.
+sed -i -e "s#source ../include#source ${libdir}/${PN}#g" ${script}
+# Remove hardcoded relative paths
+sed -i -e 's#..\/utils\/##' ${script}
+
+script_basename=`basename ${script}`
+install -m 0755 $script ${D}${bindir}/${script_basename}
+done
+}
-- 
1.7.9.5

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [PATCH] pm-qa-utils: Add power management test utils

2014-03-20 Thread Chase Maupin
* The power management test utilities from Linaro can be used
  to test multiple PM features such as cpufreq, cpuidle, thermal
  control and suspend operations.
* These utilities are not platform specific and can be used by
  a broader base of users.

Signed-off-by: Chase Maupin 
---
 .../pm-qa-utils/pm-qa-utils_git.bb |   63 
 1 file changed, 63 insertions(+)
 create mode 100644 meta-oe/recipes-devtools/pm-qa-utils/pm-qa-utils_git.bb

diff --git a/meta-oe/recipes-devtools/pm-qa-utils/pm-qa-utils_git.bb 
b/meta-oe/recipes-devtools/pm-qa-utils/pm-qa-utils_git.bb
new file mode 100644
index 000..610f3a7
--- /dev/null
+++ b/meta-oe/recipes-devtools/pm-qa-utils/pm-qa-utils_git.bb
@@ -0,0 +1,63 @@
+DESCRIPTION = "Utilities from Linaro for testing Power Management"
+HOMEPAGE = 
"https://wiki.linaro.org/WorkingGroups/PowerManagement/Resources/TestSuite/PmQa";
+
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
+
+PV = "0.4.4"
+
+BRANCH ?= "master"
+SRCREV = "fbc2762359b863dfbf4fd0bab1e8abd2a6125ed4"
+
+SRC_URI = "git://git.linaro.org/tools/pm-qa.git;protocol=git;branch=${BRANCH}"
+
+S = "${WORKDIR}/git"
+
+CFLAGS += "-pthread"
+
+do_compile () {
+# Find all the .c files in this project and build them.
+for x in `find . -name "*.c"`
+do
+util=`echo ${x} | sed s/.c$//`
+oe_runmake ${util}
+done
+}
+
+do_install () {
+install -d ${D}${bindir}
+install -d ${D}${bindir}/linaro-pm-qa-include
+
+# Install the compiled binaries the were built in the previous step
+for x in `find . -name "*.c"`
+do
+util=`echo ${x} | sed s/.c$//`
+util_basename=`basename ${util}`
+install -m 0755 ${util} ${D}${bindir}/${util_basename}
+done
+
+# Install the helper scripts in the include directory
+for script in `find . -name "*.sh" | grep include`
+do
+# Remove hardcoded relative paths
+sed -i -e 's#..\/utils\/##' ${script}
+
+script_basename=`basename ${script}`
+install -m 0755 $script 
${D}${bindir}/linaro-pm-qa-include/${script_basename}
+done
+
+# Install the shell scripts NOT in the include directory since those
+# will be installed elsewhere
+for script in `find . -name "*.sh" | grep -v include`
+do
+# if the script includes any helper scripts from the include
+# directory then change the include path to the absolute path
+# to reflect the install location of the helper scripts.
+sed -i -e "s#source ../include#source 
${bindir}/linaro-pm-qa-include#g" ${script}
+# Remove hardcoded relative paths
+sed -i -e 's#..\/utils\/##' ${script}
+
+script_basename=`basename ${script}`
+install -m 0755 $script ${D}${bindir}/${script_basename}
+done
+}
-- 
1.7.9.5

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [PATCHv2][for-dora] php: update SRC_URI for new download location

2014-01-30 Thread Chase Maupin
* The old downloads location of http://www.php.net/distributions
  now points to a listing of all distributions and the mirrors or
  download locations where the sources can be downloaded.
* The new download location is http://museum.php.net/. where
  the rest of the URL is based on the major version on PHP being
  downloaded.  This is a change from the previous download server
  which had a flattened directory structure so that all versions
  were available in a single location.
* To account for this change in the directory structure a variable
  called PHP_MAJVER is used based off of the PV to point the
  SRC_URI to the proper subdirectory.
* This issue wsa first noted by Joshua Vanderpool at
  joshua.vanderp...@raymondcorp.com and there was discussion at
  
http://lists.openembedded.org/pipermail/openembedded-devel/2014-January/093757.html
* This patch has been commited to that master branch

Signed-off-by: Chase Maupin 
---
* Updated in version 2
* Remove the bump of INC_PR as per suggestion of
  Koen Kooi [k...@dominion.thruhere.net]
---
 meta-oe/recipes-devtools/php/php.inc |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/php/php.inc 
b/meta-oe/recipes-devtools/php/php.inc
index 5345f2a..d5e53c0 100644
--- a/meta-oe/recipes-devtools/php/php.inc
+++ b/meta-oe/recipes-devtools/php/php.inc
@@ -9,7 +9,11 @@ DEPENDS_virtclass-native = "zlib-native libxml2-native"
 
 INC_PR = "r5"
 
-SRC_URI = "http://www.php.net/distributions/php-${PV}.tar.bz2";
+# The new PHP downloads server groups PHP releases by major version so find
+# the major version of the PHP recipe.
+PHP_MAJVER = "${@d.getVar('PV',1).split('.')[0]}"
+
+SRC_URI = "http://museum.php.net/php${PHP_MAJVER}/php-${PV}.tar.bz2";
 
 S = "${WORKDIR}/php-${PV}"
 
-- 
1.7.9.5

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [PATCHv2] php: update SRC_URI for new download location

2014-01-29 Thread Chase Maupin
* The old downloads location of http://www.php.net/distributions
  now points to a listing of all distributions and the mirrors or
  download locations where the sources can be downloaded.
* The new download location is http://museum.php.net/. where
  the rest of the URL is based on the major version on PHP being
  downloaded.  This is a change from the previous download server
  which had a flattened directory structure so that all versions
  were available in a single location.
* To account for this change in the directory structure a variable
  called PHP_MAJVER is used based off of the PV to point the
  SRC_URI to the proper subdirectory.
* This issue wsa first noted by Joshua Vanderpool at
  joshua.vanderp...@raymondcorp.com and there was discussion at
  
http://lists.openembedded.org/pipermail/openembedded-devel/2014-January/093757.html

Signed-off-by: Chase Maupin 
---
* Updated in version 2
* Remove the bump of INC_PR as per suggestion of
  Koen Kooi [k...@dominion.thruhere.net]
---
 meta-oe/recipes-devtools/php/php.inc |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/php/php.inc 
b/meta-oe/recipes-devtools/php/php.inc
index 5345f2a..d5e53c0 100644
--- a/meta-oe/recipes-devtools/php/php.inc
+++ b/meta-oe/recipes-devtools/php/php.inc
@@ -9,7 +9,11 @@ DEPENDS_virtclass-native = "zlib-native libxml2-native"
 
 INC_PR = "r5"
 
-SRC_URI = "http://www.php.net/distributions/php-${PV}.tar.bz2";
+# The new PHP downloads server groups PHP releases by major version so find
+# the major version of the PHP recipe.
+PHP_MAJVER = "${@d.getVar('PV',1).split('.')[0]}"
+
+SRC_URI = "http://museum.php.net/php${PHP_MAJVER}/php-${PV}.tar.bz2";
 
 S = "${WORKDIR}/php-${PV}"
 
-- 
1.7.9.5

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [PATCH] php: update SRC_URI for new download location

2014-01-28 Thread Chase Maupin
* The old downloads location of http://www.php.net/distributions
  now points to a listing of all distributions and the mirrors or
  download locations where the sources can be downloaded.
* The new download location is http://museum.php.net/. where
  the rest of the URL is based on the major version on PHP being
  downloaded.  This is a change from the previous download server
  which had a flattened directory structure so that all versions
  were available in a single location.
* To account for this change in the directory structure a variable
  called PHP_MAJVER is used based off of the PV to point the
  SRC_URI to the proper subdirectory.
* This issue wsa first noted by Joshua Vanderpool at
  joshua.vanderp...@raymondcorp.com and there was discussion at
  
http://lists.openembedded.org/pipermail/openembedded-devel/2014-January/093757.html

Signed-off-by: Chase Maupin 
---
 meta-oe/recipes-devtools/php/php.inc |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-devtools/php/php.inc 
b/meta-oe/recipes-devtools/php/php.inc
index 5345f2a..75c3704 100644
--- a/meta-oe/recipes-devtools/php/php.inc
+++ b/meta-oe/recipes-devtools/php/php.inc
@@ -7,9 +7,13 @@ DEPENDS = "zlib libxml2 virtual/libiconv php-native 
lemon-native \
libc-client openssl"
 DEPENDS_virtclass-native = "zlib-native libxml2-native"
 
-INC_PR = "r5"
+INC_PR = "r6"
 
-SRC_URI = "http://www.php.net/distributions/php-${PV}.tar.bz2";
+# The new PHP downloads server groups PHP releases by major version so find
+# the major version of the PHP recipe.
+PHP_MAJVER = "${@d.getVar('PV',1).split('.')[0]}"
+
+SRC_URI = "http://museum.php.net/php${PHP_MAJVER}/php-${PV}.tar.bz2";
 
 S = "${WORKDIR}/php-${PV}"
 
-- 
1.7.9.5

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [PATCH][for-dora] php: update SRC_URI for new download location

2014-01-28 Thread Chase Maupin
* The old downloads location of http://www.php.net/distributions
  now points to a listing of all distributions and the mirrors or
  download locations where the sources can be downloaded.
* The new download location is http://museum.php.net/. where
  the rest of the URL is based on the major version on PHP being
  downloaded.  This is a change from the previous download server
  which had a flattened directory structure so that all versions
  were available in a single location.
* To account for this change in the directory structure a variable
  called PHP_MAJVER is used based off of the PV to point the
  SRC_URI to the proper subdirectory.
* This issue wsa first noted by Joshua Vanderpool at
  joshua.vanderp...@raymondcorp.com and there was discussion at
  
http://lists.openembedded.org/pipermail/openembedded-devel/2014-January/093757.html

Signed-off-by: Chase Maupin 
---
 meta-oe/recipes-devtools/php/php.inc |8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-devtools/php/php.inc 
b/meta-oe/recipes-devtools/php/php.inc
index 5345f2a..75c3704 100644
--- a/meta-oe/recipes-devtools/php/php.inc
+++ b/meta-oe/recipes-devtools/php/php.inc
@@ -7,9 +7,13 @@ DEPENDS = "zlib libxml2 virtual/libiconv php-native 
lemon-native \
libc-client openssl"
 DEPENDS_virtclass-native = "zlib-native libxml2-native"
 
-INC_PR = "r5"
+INC_PR = "r6"
 
-SRC_URI = "http://www.php.net/distributions/php-${PV}.tar.bz2";
+# The new PHP downloads server groups PHP releases by major version so find
+# the major version of the PHP recipe.
+PHP_MAJVER = "${@d.getVar('PV',1).split('.')[0]}"
+
+SRC_URI = "http://museum.php.net/php${PHP_MAJVER}/php-${PV}.tar.bz2";
 
 S = "${WORKDIR}/php-${PV}"
 
-- 
1.7.9.5

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH][for-danny] kernel bbclass: return to original directory in do_deploy

2013-03-18 Thread Chase Maupin
* During the base kernel_do_deploy function the directory is
  changed to DEPLOYDIR in order to do some cleanup and symlinking.
  However, the directory is not changed back to the original
  starting directory ${S} at the end.  For append functions this
  means that the starting directory is not ${S} as expected but
  instead ${DEPLOYDIR}.

  For functions like the do_deploy_append in
  recipes-kernel/linux/linux-dtb.inc there is an assumption that
  you are still in the source directory and not the DEPLOYDIR.
  Without this change the .dtb files are not copied because the
  check for the existence of ${DTS_FILE} which is a relative
  path from the ${S} directory fails.  This means that the .dtb
  files are not copied into the deploy directory and subsequently
  the deploy/images directory.

  In the log.do_deploy file you will see lines like:

Warning: arch/arm/boot/dts/x.dts is not available!

  This fix has also been picked up in the oe-core kernel.bbclass:

  
http://cgit.openembedded.org/openembedded-core/commit/?id=fd5d80ab1a405cb4ef94f2cde25f8c251da490f0

Signed-off-by: Chase Maupin 
---
 meta-oe/classes/kernel.bbclass |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass
index 25c5f64..a0f67f9 100644
--- a/meta-oe/classes/kernel.bbclass
+++ b/meta-oe/classes/kernel.bbclass
@@ -546,6 +546,7 @@ kernel_do_deploy() {
ln -sf ${KERNEL_IMAGE_BASE_NAME}.bin ${KERNEL_IMAGETYPE}
 
cp ${COREBASE}/meta/files/deploydir_readme.txt 
${DEPLOYDIR}/README_-_DO_NOT_DELETE_FILES_IN_THIS_DIRECTORY.txt
+   cd -
 }
 do_deploy[dirs] = "${DEPLOYDIR} ${B}"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 1/1][for-denzil] kernel: Add kernel headers to kernel-dev package

2012-10-10 Thread Chase Maupin
From: Darren Hart 

[YOCTO #1614]

Add the kernel headers to the kernel-dev package. This packages what was
already built and kept in sysroots for building modules with bitbake.
Making this available on the target requires removing some additional
host binaries.

Move the location to /usr/src/kernel

Before use on the target, the user will need to:

# cd /usr/src/kernel
# make scripts

This renders the kernel-misc recipe empty, so remove it.

As we use /usr/src/kernel in several places (and I missed one in the
previous version), add a KERNEL_SRC_DIR variable and use that throughout
the class to avoid update errors in the future.

Now that we package the kernel headers, drop the
kernel_package_preprocess function which removed them from PKGD.

All *-sdk image recipes include dev-pkgs, so the kernel-dev package will
be installed by default on all such images.

Signed-off-by: Darren Hart 
CC: Bruce Ashfield 
CC: Tom Zanussi 
CC: Khem Raj 
Signed-off-by: Martin Jansa 
Signed-off-by: Koen Kooi 
---
 meta-oe/classes/kernel.bbclass |   27 ---
 1 files changed, 12 insertions(+), 15 deletions(-)

diff --git a/meta-oe/classes/kernel.bbclass b/meta-oe/classes/kernel.bbclass
index ce82351..1af977e 100644
--- a/meta-oe/classes/kernel.bbclass
+++ b/meta-oe/classes/kernel.bbclass
@@ -82,6 +82,10 @@ EXTRA_OEMAKE = ""
 
 KERNEL_ALT_IMAGETYPE ??= ""
 
+# Define where the kernel headers are installed on the target as well as where
+# they are staged.
+KERNEL_SRC_PATH = "/usr/src/kernel"
+
 KERNEL_IMAGETYPE_FOR_MAKE = "${@(lambda s: s[:-3] if s[-3:] == ".gz" else 
s)(d.getVar('KERNEL_IMAGETYPE', True))}"
 
 kernel_do_compile() {
@@ -135,7 +139,7 @@ kernel_do_install() {
# Support for external module building - create a minimal copy of the
# kernel source tree.
#
-   kerneldir=${D}/kernel
+   kerneldir=${D}${KERNEL_SRC_PATH}
install -d $kerneldir
 
#
@@ -188,23 +192,18 @@ kernel_do_install() {
cp arch/powerpc/lib/crtsavres.o 
$kerneldir/arch/powerpc/lib/crtsavres.o
fi
 
-   # Remove the following binaries which cause strip errors
+   # Remove the following binaries which cause strip or arch QA errors
# during do_package for cross-compiled platforms
bin_files="arch/powerpc/boot/addnote arch/powerpc/boot/hack-coff \
-  arch/powerpc/boot/mktree"
+  arch/powerpc/boot/mktree scripts/kconfig/zconf.tab.o \
+  scripts/kconfig/conf.o"
for entry in $bin_files; do
rm -f $kerneldir/$entry
done
 }
 
-PACKAGE_PREPROCESS_FUNCS += "kernel_package_preprocess"
-
-kernel_package_preprocess () {
-   rm -rf ${PKGD}/kernel
-}
-
 sysroot_stage_all_append() {
-   sysroot_stage_dir ${D}/kernel ${SYSROOT_DESTDIR}/kernel
+   sysroot_stage_dir ${D}${KERNEL_SRC_PATH} 
${SYSROOT_DESTDIR}${KERNEL_SRC_PATH}
 }
 
 kernel_do_configure() {
@@ -252,13 +251,11 @@ EXPORT_FUNCTIONS do_compile do_install do_configure
 
 # kernel-base becomes kernel-${KERNEL_VERSION}
 # kernel-image becomes kernel-image-${KERNEL_VERISON}
-PACKAGES = "kernel kernel-base kernel-vmlinux kernel-image kernel-dev 
kernel-misc"
+PACKAGES = "kernel kernel-base kernel-vmlinux kernel-image kernel-dev"
 FILES = ""
 FILES_kernel-image = "/boot/${KERNEL_IMAGETYPE}*"
-FILES_kernel-dev = "/boot/System.map* /boot/Module.symvers* /boot/config*"
+FILES_kernel-dev = "/boot/System.map* /boot/Module.symvers* /boot/config* 
${KERNEL_SRC_PATH}"
 FILES_kernel-vmlinux = "/boot/vmlinux*"
-# misc is a package to contain files we need in staging
-FILES_kernel-misc = "/kernel/include/config /kernel/scripts 
/kernel/drivers/crypto /kernel/drivers/media"
 RDEPENDS_kernel = "kernel-base"
 # Allow machines to override this dependency if kernel image files are 
 # not wanted in images as standard
@@ -475,7 +472,7 @@ python populate_packages_prepend () {
metapkg = "kernel-modules"
d.setVar('ALLOW_EMPTY_' + metapkg, "1")
d.setVar('FILES_' + metapkg, "")
-   blacklist = [ 'kernel-dev', 'kernel-image', 'kernel-base', 
'kernel-vmlinux', 'perf', 'perf-dbg', 'kernel-misc' ]
+   blacklist = [ 'kernel-dev', 'kernel-image', 'kernel-base', 
'kernel-vmlinux', 'perf', 'perf-dbg' ]
for l in module_deps.values():
for i in l:
pkg = module_pattern % 
legitimize_package_name(re.match(module_regex, os.path.basename(i)).group(1))
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 0/1][for-denzil] kernel: cherry-pick header fix

2012-10-10 Thread Chase Maupin
All,

This patch is a cherry-pick of the change made in meta-openembedded
master to fix the kernel header staging location.  Without this
change builds of external modules using the denzil branch will fail
to find the staged headers because they will be looking in the
"kernel" directory instead of the "usr/src/kernel" directory.

The STAGING_KERNEL_DIR set in bitbake.conf of oe-core in the
denzil branch of the repository has already been updated to use
${STAGING_DIR_HOST}/usr/src/kernel

I hope I got this patch formatted right since I just did a
cherry-pick into my denzil branch and created the patch.  If this
is not the correct format please let me know.  The commit I
cherry-picked was 8c724c4ab8e946763c813e5174dbfd5ac8a5ddda

Darren Hart (1):
  kernel: Add kernel headers to kernel-dev package

 meta-oe/classes/kernel.bbclass |   27 ---
 1 files changed, 12 insertions(+), 15 deletions(-)


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH] sourceipk: modify excludes to include directory names

2012-06-06 Thread Chase Maupin
* When the S variable is set to WORKDIR in the sourceipk class
  a list of excludes is generated to prevent packaging the
  sourceipk data along with the actual source files.  This
  excludes list is a regular expression that currently does not
  also cover the directory names.  For example:
* temp/* is excluded but the directory temp is not
* This leads to the sourceipk still including the contents of
  the directories to be excluded.  By removing the wildcard the
  directory is excluded as well and the contents are not copied
  into the sourcipk.

Signed-off-by: Chase Maupin 
---
 classes/sourceipk.bbclass |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/sourceipk.bbclass b/classes/sourceipk.bbclass
index 546ec67..09d6eb8 100644
--- a/classes/sourceipk.bbclass
+++ b/classes/sourceipk.bbclass
@@ -110,7 +110,7 @@ sourceipk_do_create_srcipk() {
 mkdir -p $tmp_dir/${SRCIPK_INSTALL_DIR}
 if [ -e ${S} ]; then
if [ "${S}" = "${WORKDIR}" ]; then
-   excludes='--exclude ./temp/\* --exclude ./sourceipk-tmp/\* 
--exclude ./sourceipk-data/\*'
+   excludes='--exclude ./temp --exclude ./sourceipk-tmp --exclude 
./sourceipk-data'
fi
 tar -C ${S} -cO $excludes . | tar -C 
$tmp_dir/${SRCIPK_INSTALL_DIR} -xpf -
 fi
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 67/70] python-pycairo: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL/MPL to LGPLv2.1
  and MPL-1.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/python/python-pycairo_1.8.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/python/python-pycairo_1.8.0.bb 
b/recipes/python/python-pycairo_1.8.0.bb
index 6f96ea8..9706f60 100644
--- a/recipes/python/python-pycairo_1.8.0.bb
+++ b/recipes/python/python-pycairo_1.8.0.bb
@@ -1,10 +1,10 @@
 DESCRIPTION = "Python Bindings for the Cairo canvas library"
 SECTION = "devel/python"
 HOMEPAGE = "http://cairographics.org/pycairo";
-LICENSE = "LGPL MPL"
+LICENSE = "LGPLv2.1 MPL-1.1"
 # cairo >= 1.8.0
 DEPENDS = "cairo"
-PR = "ml4"
+PR = "ml5"
 
 SRC_URI = "http://cairographics.org/releases/pycairo-${PV}.tar.gz \
file://fix-setup-py.patch"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 70/70] time: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/time/time.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/time/time.inc b/recipes/time/time.inc
index c5e37d4..777142a 100644
--- a/recipes/time/time.inc
+++ b/recipes/time/time.inc
@@ -2,8 +2,8 @@ DESCRIPTION = "time measures many of the CPU resources, such as 
time and \
 memory, that other programs use."
 HOMEPAGE = "http://www.gnu.org/software/time/";
 SECTION = "utils"
-LICENSE = "GPL"
-PR = "r1"
+LICENSE = "GPLv2+"
+PR = "r2"
 
 # We only want rename for update-alternatives on the target
 do_install_append_pn-time () {
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 69/70] python-pygtk: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/python/python-pygtk_2.16.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/python/python-pygtk_2.16.0.bb 
b/recipes/python/python-pygtk_2.16.0.bb
index 699bd5d..170383f 100644
--- a/recipes/python/python-pygtk_2.16.0.bb
+++ b/recipes/python/python-pygtk_2.16.0.bb
@@ -5,8 +5,8 @@ DEPENDS = "gtk+ libglade python-pycairo python-pygobject"
 RDEPENDS_${PN} = "python-shell python-pycairo python-pygobject"
 PROVIDES = "python-pygtk2"
 SRCNAME = "pygtk"
-LICENSE = "LGPL"
-PR = "r3"
+LICENSE = "LGPLv2.1"
+PR = "r4"
 
 MAJ_VER = 
"${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
 SRC_URI = 
"ftp://ftp.gnome.org/pub/gnome/sources/pygtk/${MAJ_VER}/${SRCNAME}-${PV}.tar.bz2;name=pygtk
 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 68/70] python-pygobject: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/python/python-pygobject_2.20.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/python/python-pygobject_2.20.0.bb 
b/recipes/python/python-pygobject_2.20.0.bb
index 19a60ab..7eb9f69 100644
--- a/recipes/python/python-pygobject_2.20.0.bb
+++ b/recipes/python/python-pygobject_2.20.0.bb
@@ -1,10 +1,10 @@
 DESCRIPTION = "Python GObject bindings"
 SECTION = "devel/python"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1"
 DEPENDS = "libffi python-pygobject-native-${PV} glib-2.0"
 PE = "1"
 
-PR = "r3"
+PR = "r4"
 
 MAJ_VER = 
"${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 66/70] libnfnetlink: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to GPLv2+ to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libnfnetlink/libnfnetlink_1.0.0.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/libnfnetlink/libnfnetlink_1.0.0.bb 
b/recipes/libnfnetlink/libnfnetlink_1.0.0.bb
index ef6551e..40ed9c4 100644
--- a/recipes/libnfnetlink/libnfnetlink_1.0.0.bb
+++ b/recipes/libnfnetlink/libnfnetlink_1.0.0.bb
@@ -1,6 +1,8 @@
 include libnfnetlink.inc
 
-PR = "${INC_PR}.0"
+LICENSE = "GPLv2+"
+
+PR = "${INC_PR}.1"
 
 SRC_URI[libnfnetlink-1.0.0.md5sum] = "016fdec8389242615024c529acc1adb8"
 SRC_URI[libnfnetlink-1.0.0.sha256sum] = 
"3752b03a4c09821ee9a2528d69289423a01e7171f1a22dfdd11d5459e03972fb"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 65/70] neon: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/neon/neon_0.25.5.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/neon/neon_0.25.5.bb b/recipes/neon/neon_0.25.5.bb
index e67132f..a2db6a6 100644
--- a/recipes/neon/neon_0.25.5.bb
+++ b/recipes/neon/neon_0.25.5.bb
@@ -1,10 +1,10 @@
 DESCRIPTION = "neon is an HTTP and WebDAV client library, with a C interface."
 HOMEPAGE = "http://www.webdav.org/neon";
 SECTION = "libs"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2+"
 DEPENDS = "zlib libxml2 expat time gnutls"
 
-PR = "r4"
+PR = "r5"
 
 SRC_URI = "http://www.webdav.org/${PN}/${P}.tar.gz \
file://gnutls-force-and-detect.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 63/70] libmikmod: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libmikmod/libmikmod_3.1.12.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libmikmod/libmikmod_3.1.12.bb 
b/recipes/libmikmod/libmikmod_3.1.12.bb
index cf7b0f0..ad09219 100644
--- a/recipes/libmikmod/libmikmod_3.1.12.bb
+++ b/recipes/libmikmod/libmikmod_3.1.12.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "libmikmod is a module player library supporting many formats, 
including mod, s3m, it, and xm."
 SECTION = "libs"
 PRIORITY = "optional"
-LICENSE = "LGPL"
-PR = "r4"
+LICENSE = "LGPLv2.1"
+PR = "r5"
 
 SRC_URI = "\
   ${SOURCEFORGE_MIRROR}/mikmod/libmikmod-${PV}.tar.gz \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 64/70] libmusicbrainz: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/musicbrainz/libmusicbrainz.inc  |2 +-
 recipes/musicbrainz/libmusicbrainz_3.0.2.bb |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/musicbrainz/libmusicbrainz.inc 
b/recipes/musicbrainz/libmusicbrainz.inc
index ce9b6fa..87099df 100644
--- a/recipes/musicbrainz/libmusicbrainz.inc
+++ b/recipes/musicbrainz/libmusicbrainz.inc
@@ -1,7 +1,7 @@
 DESCRIPTION = "The MusicBrainz client is a library which can be built into 
other programs. \
 It allows you to access the data held on the MusicBrainz server."
 HOMEPAGE = "http://musicbrainz.org";
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1+"
 
 DEPENDS = "expat neon libdiscid"
 
diff --git a/recipes/musicbrainz/libmusicbrainz_3.0.2.bb 
b/recipes/musicbrainz/libmusicbrainz_3.0.2.bb
index 52ffe53..e666bec 100644
--- a/recipes/musicbrainz/libmusicbrainz_3.0.2.bb
+++ b/recipes/musicbrainz/libmusicbrainz_3.0.2.bb
@@ -1,6 +1,6 @@
 require ${PN}.inc
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI_append = " file://libmusicbrainz-3.0.2-gcc-4.4-fix.patch \
file://libmusicbrainz-3.0.2-cmake-neon.patch"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 61/70] libdiscid: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1+ to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libdiscid/libdiscid.inc  |2 +-
 recipes/libdiscid/libdiscid_0.2.2.bb |2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/libdiscid/libdiscid.inc b/recipes/libdiscid/libdiscid.inc
index 8dc7b54..3baf071 100644
--- a/recipes/libdiscid/libdiscid.inc
+++ b/recipes/libdiscid/libdiscid.inc
@@ -2,7 +2,7 @@ DESCRIPTION = "The MusicBrainz client is a library which can be 
built into other
 It allows you to access the data held on the MusicBrainz server."
 
 HOMEPAGE = "http://musicbrainz.org";
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1+"
 
 SRC_URI = "http://users.musicbrainz.org/~matt/libdiscid-${PV}.tar.gz";
 
diff --git a/recipes/libdiscid/libdiscid_0.2.2.bb 
b/recipes/libdiscid/libdiscid_0.2.2.bb
index d69e710..08d4201 100644
--- a/recipes/libdiscid/libdiscid_0.2.2.bb
+++ b/recipes/libdiscid/libdiscid_0.2.2.bb
@@ -1,4 +1,6 @@
 require ${PN}.inc
 
+PR = "r1"
+
 SRC_URI[md5sum] = "ee21ddbe696a3c60e14827a75f3bcf5b"
 SRC_URI[sha256sum] = 
"974b5d5ab23fb45910a4fe171045a22a749cd8cb9833168f7178839993a58402"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 62/70] libglade: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 and
  LGPLv2+ to reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libglade/libglade_2.6.4.bb |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/recipes/libglade/libglade_2.6.4.bb 
b/recipes/libglade/libglade_2.6.4.bb
index 01f66c0..529b20c 100644
--- a/recipes/libglade/libglade_2.6.4.bb
+++ b/recipes/libglade/libglade_2.6.4.bb
@@ -1,5 +1,9 @@
 require libglade.inc
 
+LICENSE = "LGPLv2 LGPLv2+"
+
+PR = "r1"
+
 inherit gnome
 
 SRC_URI += "file://glade-cruft.patch file://no-xml2.patch"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 59/70] libart-lgpl: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/gnome/libart-lgpl.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/libart-lgpl.inc b/recipes/gnome/libart-lgpl.inc
index aa06237..5208275 100644
--- a/recipes/gnome/libart-lgpl.inc
+++ b/recipes/gnome/libart-lgpl.inc
@@ -1,10 +1,10 @@
 DESCRIPTION = "Library of functions for 2D graphics"
 SECTION = "x11/gnome"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2"
 
 ART_CONFIG = "${HOST_ARCH}/art_config.h"
 
-INC_PR = "r5"
+INC_PR = "r6"
 
 # can't use gnome.bbclass due to _ in filename
 SRC_URI = 
"http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2
 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 60/70] libdaemon: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1+ to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libdaemon/libdaemon_0.13.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libdaemon/libdaemon_0.13.bb 
b/recipes/libdaemon/libdaemon_0.13.bb
index 3ad47dd..0ff13a4 100644
--- a/recipes/libdaemon/libdaemon_0.13.bb
+++ b/recipes/libdaemon/libdaemon_0.13.bb
@@ -2,8 +2,8 @@ DESCRIPTION = "libdaemon is a lightweight C library that eases 
the writing of UN
 SECTION = "libs"
 AUTHOR = "Lennart Poettering "
 HOMEPAGE = "http://0pointer.de/lennart/projects/libdaemon/";
-LICENSE = "LGPL"
-PR = "r0"
+LICENSE = "LGPLv2.1+"
+PR = "r1"
 
 SRC_URI = 
"http://0pointer.de/lennart/projects/libdaemon/libdaemon-${PV}.tar.gz";
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 57/70] gtk-doc: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/gtk-doc/gtk-doc.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gtk-doc/gtk-doc.bb b/recipes/gtk-doc/gtk-doc.bb
index a7ab21e..c64d5dd 100644
--- a/recipes/gtk-doc/gtk-doc.bb
+++ b/recipes/gtk-doc/gtk-doc.bb
@@ -1,7 +1,7 @@
 SECTION = "x11/base"
 SRC_URI = "file://gtk-doc.m4"
-LICENSE = "LGPL"
-PR = "r3"
+LICENSE = "LGPLv2"
+PR = "r4"
 
 ALLOW_EMPTY_${PN} = "1"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 58/70] intltool: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/intltool/intltool.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/intltool/intltool.inc b/recipes/intltool/intltool.inc
index 6beb337..5b333a2 100644
--- a/recipes/intltool/intltool.inc
+++ b/recipes/intltool/intltool.inc
@@ -1,9 +1,9 @@
 DESCRIPTION = "Utility scripts for internationalizing XML"
 PRIORITY = "optional"
 SECTION = "devel"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 DEPENDS += "libxml-parser-perl-native"
-INC_PR = "r4"
+INC_PR = "r5"
 
 URLV="${@'.'.join(bb.data.getVar('PV',d,1).split('.')[0:2])}"
 SRC_URI = "${GNOME_MIRROR}/intltool/${URLV}/intltool-${PV}.tar.bz2"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 56/70] gnome-mime-data: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 and
  GPLv2+ to reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/gnome/gnome-mime-data_2.18.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/gnome-mime-data_2.18.0.bb 
b/recipes/gnome/gnome-mime-data_2.18.0.bb
index ee1b2f8..9837e35 100644
--- a/recipes/gnome/gnome-mime-data_2.18.0.bb
+++ b/recipes/gnome/gnome-mime-data_2.18.0.bb
@@ -1,9 +1,9 @@
-LICENSE = "GPL"
+LICENSE = "GPLv2 GPLv2+"
 inherit gnome
 
 DEPENDS += "shared-mime-info intltool-native"
 RDEPENDS_${PN} = "shared-mime-info"
-PR = "r1"
+PR = "r2"
 
 FILES_${PN}-dev += "${datadir}/pkgconfig/*.pc"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 55/70] cups: Update LICENSE field version to GPLv2 and LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL/LGPL to GPLv2
  and LGPLv2 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/cups/cups_1.2.12.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/cups/cups_1.2.12.bb b/recipes/cups/cups_1.2.12.bb
index 1b06a53..c711489 100644
--- a/recipes/cups/cups_1.2.12.bb
+++ b/recipes/cups/cups_1.2.12.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "An Internet printing system for Unix."
 SECTION = "console/utils"
-LICENSE = "GPL LGPL"
+LICENSE = "GPLv2 LGPLv2"
 DEPENDS = "gnutls jpeg dbus dbus-glib libpng zlib fakeroot-native"
 
-PR = "r8"
+PR = "r9"
 
 SRC_URI = "ftp://ftp.easysw.com/pub/cups/${PV}/cups-${PV}-source.tar.bz2 \
file://0001-cups-desktop-fix-cups-desktop-file.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 54/70] gnome-common: Update LICENSE field version to GPLv3

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv3 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/gnome/gnome-common.inc   |2 +-
 recipes/gnome/gnome-common_2.28.0.bb |2 ++
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/gnome/gnome-common.inc b/recipes/gnome/gnome-common.inc
index 826052f..3e4cbae 100644
--- a/recipes/gnome/gnome-common.inc
+++ b/recipes/gnome/gnome-common.inc
@@ -1,4 +1,4 @@
-LICENSE = "GPL"
+LICENSE = "GPLv3"
 SECTION = "x11/gnome"
 DESCRIPTION = "Common macros for building GNOME applications"
 
diff --git a/recipes/gnome/gnome-common_2.28.0.bb 
b/recipes/gnome/gnome-common_2.28.0.bb
index 9fa6c21..cca1dee 100644
--- a/recipes/gnome/gnome-common_2.28.0.bb
+++ b/recipes/gnome/gnome-common_2.28.0.bb
@@ -1,4 +1,6 @@
 require gnome-common.inc
 
+PR = "r1"
+
 SRC_URI[archive.md5sum] = "30daabb0ca4898fea2647999e7813e8f"
 SRC_URI[archive.sha256sum] = 
"dd4817103d23745d00c735dd137951552ba7b576cb8f68e6a529d06661e9b6a1"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 53/70] wireless-tools: Update LICENSE field version to GPLv2 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 and
  LGPLv2.1 or MPL-1.1 or BSD to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/wireless-tools/wireless-tools.inc   |2 +-
 recipes/wireless-tools/wireless-tools_29.bb |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/wireless-tools/wireless-tools.inc 
b/recipes/wireless-tools/wireless-tools.inc
index a6bc6a8..685c222 100644
--- a/recipes/wireless-tools/wireless-tools.inc
+++ b/recipes/wireless-tools/wireless-tools.inc
@@ -2,7 +2,7 @@ DESCRIPTION = "Tools for the Linux Standard Wireless Extension 
Subsystem"
 HOMEPAGE = "http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/Tools.html";
 SECTION = "base"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2 LGPLv2.1 | MPL-1.1 | BSD"
 
 SRC_URI = "\
   
http://www.hpl.hp.com/personal/Jean_Tourrilhes/Linux/wireless_tools.${PV}.tar.gz
 \
diff --git a/recipes/wireless-tools/wireless-tools_29.bb 
b/recipes/wireless-tools/wireless-tools_29.bb
index 66626c7..258db1c 100644
--- a/recipes/wireless-tools/wireless-tools_29.bb
+++ b/recipes/wireless-tools/wireless-tools_29.bb
@@ -1,6 +1,6 @@
 require wireless-tools.inc
 
-PR = "r5"
+PR = "r6"
 
 SRC_URI[md5sum] = "e06c222e186f7cc013fd272d023710cb"
 SRC_URI[sha256sum] = 
"6fb80935fe208538131ce2c4178221bab1078a1656306bce8909c19887e2e5a1"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 52/70] shared-mime-info: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on source inspection.

Signed-off-by: Chase Maupin 
---
 recipes/shared-mime-info/shared-mime-info_0.51.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/shared-mime-info/shared-mime-info_0.51.bb 
b/recipes/shared-mime-info/shared-mime-info_0.51.bb
index 1f0a3d2..b9c8671 100644
--- a/recipes/shared-mime-info/shared-mime-info_0.51.bb
+++ b/recipes/shared-mime-info/shared-mime-info_0.51.bb
@@ -1,7 +1,9 @@
 require shared-mime-info.inc
 
+LICENSE = "GPLv2"
+
 DEPENDS = "libxml2 intltool-native glib-2.0 shared-mime-info-native"
-PR = "r2"
+PR = "r3"
 
 do_install_append() {
 update-mime-database ${D}${datadir}/mime
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 50/70] orbit2: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.
* Update submitted to oe-core as well.

Signed-off-by: Chase Maupin 
---
 recipes/gnome/orbit2_2.14.17.bb |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/recipes/gnome/orbit2_2.14.17.bb b/recipes/gnome/orbit2_2.14.17.bb
index f893997..c83ddd3 100644
--- a/recipes/gnome/orbit2_2.14.17.bb
+++ b/recipes/gnome/orbit2_2.14.17.bb
@@ -1,5 +1,9 @@
 require orbit2.inc
 
+LICENSE = "GPLv2+"
+
+PR = "r1"
+
 SRC_URI += "file://disable-ipv6.patch"
 noipv6 = "${@base_contains('DISTRO_FEATURES', 'ipv6', '', '-DDISABLE_IPV6', 
d)}"
 EXTRA_OEMAKE_append = " 'CFLAGS=${CFLAGS} ${noipv6}'"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 51/70] pango: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/pango/pango_1.24.4.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/pango/pango_1.24.4.bb b/recipes/pango/pango_1.24.4.bb
index 84af64f..7356d28 100644
--- a/recipes/pango/pango_1.24.4.bb
+++ b/recipes/pango/pango_1.24.4.bb
@@ -1,6 +1,8 @@
 require pango.inc
 
-PR = "${INC_PR}.1"
+LICENSE = "LGPLv2+"
+
+PR = "${INC_PR}.2"
 
 SRC_URI += "file://CVE-2010-0421.patch"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 48/70] makedevs: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/makedevs/makedevs_1.0.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/makedevs/makedevs_1.0.0.bb 
b/recipes/makedevs/makedevs_1.0.0.bb
index d362175..d4db75f 100644
--- a/recipes/makedevs/makedevs_1.0.0.bb
+++ b/recipes/makedevs/makedevs_1.0.0.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "A tool to make device nodes"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 SECTION = "base"
 PRIORITY = "required"
-PR = "r10"
+PR = "r11"
 
 SRC_URI = "file://makedevs.c"
 S = "${WORKDIR}/makedevs-${PV}"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 49/70] nfs-utils: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/nfs-utils/nfs-utils_1.1.2.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/nfs-utils/nfs-utils_1.1.2.bb 
b/recipes/nfs-utils/nfs-utils_1.1.2.bb
index 45ff4ea..315fd13 100644
--- a/recipes/nfs-utils/nfs-utils_1.1.2.bb
+++ b/recipes/nfs-utils/nfs-utils_1.1.2.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "userspace utilities for kernel nfs"
 PRIORITY = "optional"
 SECTION = "console/network"
-LICENSE = "GPL"
+LICENSE = "GPLv2+"
 
-PR = "r9"
+PR = "r10"
 
 DEPENDS = "util-linux-ng tcp-wrappers libevent"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 47/70] lmbench: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/lmbench/lmbench_3.0-a9.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/lmbench/lmbench_3.0-a9.bb 
b/recipes/lmbench/lmbench_3.0-a9.bb
index ce6d1a8..eaa471a 100644
--- a/recipes/lmbench/lmbench_3.0-a9.bb
+++ b/recipes/lmbench/lmbench_3.0-a9.bb
@@ -1,9 +1,9 @@
 SECTION = "console/utils"
 DESCRIPTION = "Tools for performance analysis."
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 RDEPENDS_${PN} = "debianutils"
 
-PR = "r4"
+PR = "r5"
 
 inherit autotools
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 46/70] libxv: Update LICENSE field version to MIT-style

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to MIT-style to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/xorg-lib/libxv_1.0.6.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/xorg-lib/libxv_1.0.6.bb b/recipes/xorg-lib/libxv_1.0.6.bb
index e8b94e2..c2a3788 100644
--- a/recipes/xorg-lib/libxv_1.0.6.bb
+++ b/recipes/xorg-lib/libxv_1.0.6.bb
@@ -1,8 +1,8 @@
 require xorg-lib-common.inc
 DESCRIPTION = "X11 Video extension library"
-LICENSE = "GPL"
+LICENSE = "MIT-style"
 DEPENDS += "libxext videoproto"
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 SRC_URI[archive.md5sum] = "e292445a64b63e918bbc8b6aae6391dd"
 SRC_URI[archive.sha256sum] = 
"e20f8e594bb0f44f3fbd25996945730391d72acbe5eaac760429fd6579caf5ee"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 45/70] x264: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/vlc/x264_r2245.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/vlc/x264_r2245.bb b/recipes/vlc/x264_r2245.bb
index 0cffea3..bc4b584 100644
--- a/recipes/vlc/x264_r2245.bb
+++ b/recipes/vlc/x264_r2245.bb
@@ -1,6 +1,6 @@
 DESCRIPTION = "H.264 encoder"
-LICENSE = "GPL"
-PR = "r8"
+LICENSE = "GPLv2+"
+PR = "r9"
 
 X264PV = "snapshot-20100531-2245"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 44/70] libvisual: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL/GPL to LGPLv2.1+
  and GPLv2 to reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libvisual/libvisual_0.4.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libvisual/libvisual_0.4.0.bb 
b/recipes/libvisual/libvisual_0.4.0.bb
index b8f6fd8..b7e898c 100644
--- a/recipes/libvisual/libvisual_0.4.0.bb
+++ b/recipes/libvisual/libvisual_0.4.0.bb
@@ -2,8 +2,8 @@ DESCRIPTION = "A cross platform audio visualization library"
 HOMEPAGE = "http://libvisual.sf.net";
 SECTION = "libs"
 PRIORITY = "optional"
-LICENSE = "LGPL GPL"
-PR = "r1"
+LICENSE = "LGPLv2.1+ GPLv2"
+PR = "r2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/libvisual/libvisual-${PV}.tar.gz \
file://no-libdir.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 43/70] libsoup-2.4: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to LGPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/gnome/libsoup-2.4_2.32.2.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/gnome/libsoup-2.4_2.32.2.bb 
b/recipes/gnome/libsoup-2.4_2.32.2.bb
index 5bc793c..dbafa76 100644
--- a/recipes/gnome/libsoup-2.4_2.32.2.bb
+++ b/recipes/gnome/libsoup-2.4_2.32.2.bb
@@ -1,8 +1,10 @@
 DESCRIPTION = "An HTTP library implementation in C"
 SECTION = "x11/gnome/libs"
-LICENSE = "GPL"
+LICENSE = "LGPLv2"
 DEPENDS = "libproxy glib-2.0 gnutls libxml2 sqlite3 gnome-keyring"
 
+PR = "r1"
+
 inherit gnome
 
 SRC_URI = 
"${GNOME_MIRROR}/libsoup/${@gnome_verdir("${PV}")}/libsoup-${PV}.tar.bz2;name=libsoup"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 41/70] libsndfile1: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libsndfile/libsndfile1_1.0.24.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libsndfile/libsndfile1_1.0.24.bb 
b/recipes/libsndfile/libsndfile1_1.0.24.bb
index 913c283..57dc02a 100644
--- a/recipes/libsndfile/libsndfile1_1.0.24.bb
+++ b/recipes/libsndfile/libsndfile1_1.0.24.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "An audio format Conversion library"
 HOMEPAGE = "http://www.mega-nerd.com/libsndfile";
 AUTHOR = "Erik de Castro Lopo"
 SECTION = "libs/multimedia"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1"
 DEPENDS = "sqlite3"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://www.mega-nerd.com/libsndfile/files/libsndfile-${PV}.tar.gz";
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 42/70] libsocketcan: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/socketcan/libsocketcan.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/socketcan/libsocketcan.inc 
b/recipes/socketcan/libsocketcan.inc
index e52cc08..d518924 100644
--- a/recipes/socketcan/libsocketcan.inc
+++ b/recipes/socketcan/libsocketcan.inc
@@ -3,10 +3,10 @@ AUTHOR = "Luotao Fu"
 HOMEPAGE = "http://www.pengutronix.de";
 SECTION = "libs/network"
 PRIORITY = "optional"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1"
 
 TAG = "v${PV}"
-INC_PR = "r0"
+INC_PR = "r1"
 
 SRC_URI = 
"git://git.pengutronix.de/git/tools/libsocketcan.git;protocol=git;tag=${TAG} \
"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 39/70] libsdl: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libsdl/libsdl-1.2.14.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libsdl/libsdl-1.2.14.inc b/recipes/libsdl/libsdl-1.2.14.inc
index 5c43310..73bfab1 100644
--- a/recipes/libsdl/libsdl-1.2.14.inc
+++ b/recipes/libsdl/libsdl-1.2.14.inc
@@ -1,10 +1,10 @@
 DESCRIPTION = "Simple DirectMedia Layer (DirectFB and Framebuffer support)"
 SECTION = "libs"
 PRIORITY = "optional"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1"
 DEPENDS = "alsa-lib"
 PROVIDES = "virtual/libsdl"
-INC_PR = "r1"
+INC_PR = "r2"
 
 SRC_URI = "http://www.libsdl.org/release/SDL-${PV}.tar.gz";
 SRC_URI[md5sum] = "e52086d1b508fa0b76c52ee30b55bec4"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 40/70] libsidplay: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libsidplay/libsidplay_1.36.59.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libsidplay/libsidplay_1.36.59.bb 
b/recipes/libsidplay/libsidplay_1.36.59.bb
index 898a9c5..079bc62 100644
--- a/recipes/libsidplay/libsidplay_1.36.59.bb
+++ b/recipes/libsidplay/libsidplay_1.36.59.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "A library for replaying C64 SID music"
 SECTION = "libs"
 PRIORITY = "optional"
-LICENSE = "GPL"
-PR = "r1"
+LICENSE = "GPLv2"
+PR = "r2"
 
 SRC_URI = "\
   
ftp://ftp.uni-frankfurt.de/pub/Mirrors2/gentoo.org/distfiles/libsidplay-1.36.59.tgz;name=archive
 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 38/70] schroedinger: Update LICENSE field version to GPLv2 and LPGLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic MPL/GPL/LGPL/MIT to
  MPL-1.1 or LGPLv2 or GPLv2 or MIT to reflect the real license
  version.
* This change was based on code inspection

Signed-off-by: Chase Maupin 
---
 recipes/schroedinger/schroedinger_1.0.9.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/schroedinger/schroedinger_1.0.9.bb 
b/recipes/schroedinger/schroedinger_1.0.9.bb
index 2994428..7813083 100644
--- a/recipes/schroedinger/schroedinger_1.0.9.bb
+++ b/recipes/schroedinger/schroedinger_1.0.9.bb
@@ -1,6 +1,8 @@
 require schroedinger.inc
 
-PR = "${INC_PR}.0"
+LICENSE = "MPL-1.1 | LGPLv2 | GPLv2 | MIT"
+
+PR = "${INC_PR}.1"
 
 inherit autotools
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 37/70] libsamplerate0: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libsamplerate/libsamplerate0_0.1.7.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libsamplerate/libsamplerate0_0.1.7.bb 
b/recipes/libsamplerate/libsamplerate0_0.1.7.bb
index 2a81e4b..d64cfd5 100644
--- a/recipes/libsamplerate/libsamplerate0_0.1.7.bb
+++ b/recipes/libsamplerate/libsamplerate0_0.1.7.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "An audio Sample Rate Conversion library"
 SECTION = "libs"
-LICENSE = "GPL libsamplerate"
+LICENSE = "GPLv2+"
 
-PR = "r2"
+PR = "r3"
 
 SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz \
file://libsamplerate-0.1.7-macro-quoting.patch;striplevel=0 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 36/70] librsvg: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/librsvg/librsvg_2.26.2.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/librsvg/librsvg_2.26.2.bb 
b/recipes/librsvg/librsvg_2.26.2.bb
index 02cc12b..14a53ef 100644
--- a/recipes/librsvg/librsvg_2.26.2.bb
+++ b/recipes/librsvg/librsvg_2.26.2.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "Library for rendering SVG files"
 SECTION = "x11/utils"
 DEPENDS = "bzip2 gtk+ libcroco cairo libart-lgpl libxml2 popt xineramaproto"
-LICENSE = "LGPL"
-PR = "r1"
+LICENSE = "LGPLv2+"
+PR = "r2"
 
 inherit gnome
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 34/70] libnl: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libnl/libnl_2.0.bb |5 -
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/recipes/libnl/libnl_2.0.bb b/recipes/libnl/libnl_2.0.bb
index d1cbc0b..c79c5e9 100644
--- a/recipes/libnl/libnl_2.0.bb
+++ b/recipes/libnl/libnl_2.0.bb
@@ -1,6 +1,9 @@
 require libnl.inc
+
+LICENSE = "LGPLv2.1"
+
 PE = "1"
-PR = "${INC_PR}.0"
+PR = "${INC_PR}.1"
 
 DEPENDS = "flex-native bison-native"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 35/70] libproxy: Update LICENSE field version to LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2.1+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/gnome/libproxy_0.2.3.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/libproxy_0.2.3.bb b/recipes/gnome/libproxy_0.2.3.bb
index 1fb9f68..4a4ed7e 100644
--- a/recipes/gnome/libproxy_0.2.3.bb
+++ b/recipes/gnome/libproxy_0.2.3.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "A library handling all the details of proxy configuration"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2.1+"
 DEPENDS = "libxmu gconf virtual/libx11"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://libproxy.googlecode.com/files/libproxy-${PV}.tar.gz \
   file://libproxy-move-define-__USE_BSD.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 33/70] mysql5: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/mysql/mysql5_5.1.40.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/mysql/mysql5_5.1.40.inc b/recipes/mysql/mysql5_5.1.40.inc
index d7c1b72..8dc0739 100644
--- a/recipes/mysql/mysql5_5.1.40.inc
+++ b/recipes/mysql/mysql5_5.1.40.inc
@@ -1,9 +1,9 @@
 DESCRIPTION = "The MySQL Open Source Database System"
 HOMEPAGE = "http://www.mysql.com/";
 SECTION = "libs"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 DEPENDS = "ncurses"
-PR = "r5"
+PR = "r6"
 
 SRC_URI = "http://downloads.mysql.com/archives/mysql-5.1/mysql-${PV}.tar.gz \
file://configure.in.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 32/70] mpeg2dec: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/mpeg2dec/mpeg2dec_0.4.0b.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/mpeg2dec/mpeg2dec_0.4.0b.bb 
b/recipes/mpeg2dec/mpeg2dec_0.4.0b.bb
index 8b1f81b..ac55c2b 100644
--- a/recipes/mpeg2dec/mpeg2dec_0.4.0b.bb
+++ b/recipes/mpeg2dec/mpeg2dec_0.4.0b.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "Libraries and test programs for decoding mpeg-2 
and mpeg-1 video
 HOMEPAGE = "http://libmpeg2.sourceforge.net/";
 SECTION = "libs"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2+"
 DEPENDS = "virtual/libsdl"
-PR = "r5"
+PR = "r6"
 
 SRC_URI = "http://libmpeg2.sourceforge.net/files/mpeg2dec-${PV}.tar.gz";
 S = "${WORKDIR}/mpeg2dec-0.4.0"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 30/70] libmodplug: Update LICENSE field version to PD

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to PD to
  reflect the change from GPL to the Public Domain license.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libmodplug/libmodplug_0.8.7.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libmodplug/libmodplug_0.8.7.bb 
b/recipes/libmodplug/libmodplug_0.8.7.bb
index 7d198a9..3df4d4c 100644
--- a/recipes/libmodplug/libmodplug_0.8.7.bb
+++ b/recipes/libmodplug/libmodplug_0.8.7.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Library for reading mod-like audio files."
 HOMEPAGE = "http://modplug-xmms.sf.net";
 SECTION = "libs"
-LICENSE = "GPL"
+LICENSE = "PD"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/modplug-xmms/libmodplug-${PV}.tar.gz"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 31/70] lame: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2+ to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/lame/lame_3.98.2.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/lame/lame_3.98.2.bb b/recipes/lame/lame_3.98.2.bb
index d4791a8..453b96f 100644
--- a/recipes/lame/lame_3.98.2.bb
+++ b/recipes/lame/lame_3.98.2.bb
@@ -1,7 +1,7 @@
 SECTION = "console/utils"
 DESCRIPTION = "Not an MP3 encoder"
-LICENSE = "LGPL"
-PR = "r0"
+LICENSE = "LGPLv2+"
+PR = "r1"
 
 S = "${WORKDIR}/${PN}-398-2"
 SRC_URI = "${SOURCEFORGE_MIRROR}/${PN}/${PN}-398-2.tar.gz \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 29/70] libmad: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libmad/libmad_0.15.1b.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libmad/libmad_0.15.1b.bb b/recipes/libmad/libmad_0.15.1b.bb
index bab40d0..a192ec9 100644
--- a/recipes/libmad/libmad_0.15.1b.bb
+++ b/recipes/libmad/libmad_0.15.1b.bb
@@ -2,8 +2,8 @@ DESCRIPTION = "MPEG Audio Decoder Library"
 SECTION = "libs"
 PRIORITY = "optional"
 DEPENDS = "libid3tag"
-LICENSE = "GPL"
-PR = "r5"
+LICENSE = "GPLv2"
+PR = "r6"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/mad/libmad-${PV}.tar.gz \
file://add-pkgconfig.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 27/70] libid3tag: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libid3tag/libid3tag_0.15.1b.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libid3tag/libid3tag_0.15.1b.bb 
b/recipes/libid3tag/libid3tag_0.15.1b.bb
index c7869da..23f60e0 100644
--- a/recipes/libid3tag/libid3tag_0.15.1b.bb
+++ b/recipes/libid3tag/libid3tag_0.15.1b.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Library for interacting with ID3 tags"
 SECTION = "libs/multimedia"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2+"
 DEPENDS = "zlib"
-PR = "r3"
+PR = "r4"
 
 SRC_URI = "ftp://ftp.mars.org/pub/mpeg/libid3tag-${PV}.tar.gz \
file://libid3tag-pkg-config.patch"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 28/70] libidl: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2+ to
  reflect the real license version.
* This change was based on code inspection.
* This change has also been submitted to oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/libidl/libidl-native_0.8.13.bb |2 +-
 recipes/libidl/libidl.inc  |2 +-
 recipes/libidl/libidl_0.8.13.bb|2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes/libidl/libidl-native_0.8.13.bb 
b/recipes/libidl/libidl-native_0.8.13.bb
index 834f4af..0fae990 100644
--- a/recipes/libidl/libidl-native_0.8.13.bb
+++ b/recipes/libidl/libidl-native_0.8.13.bb
@@ -2,7 +2,7 @@ SECTION = "libs"
 require libidl_${PV}.bb
 inherit native
 
-PR = "r1"
+PR = "r2"
 
 DEPENDS = "bison-native glib-2.0-native"
 
diff --git a/recipes/libidl/libidl.inc b/recipes/libidl/libidl.inc
index 7a90a70..a402037 100644
--- a/recipes/libidl/libidl.inc
+++ b/recipes/libidl/libidl.inc
@@ -1,6 +1,6 @@
 DESCRIPTION = "Library for parsing CORBA IDL files"
 SECTION = "x11/gnome/libs"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2+"
 
 inherit autotools pkgconfig
 
diff --git a/recipes/libidl/libidl_0.8.13.bb b/recipes/libidl/libidl_0.8.13.bb
index 141d802..c95b32f 100644
--- a/recipes/libidl/libidl_0.8.13.bb
+++ b/recipes/libidl/libidl_0.8.13.bb
@@ -2,7 +2,7 @@ require libidl.inc
 
 DEPENDS = "glib-2.0 flex-native libidl-native"
 
-PR = "r0"
+PR = "r1"
 
 BINCONFIG_GLOB = "*-config-2"
 inherit autotools pkgconfig binconfig
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 26/70] libical: Update LICENSE field version to LGPLv2.1 or MPL-1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2v.1
  or MPL-1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libical/libical_0.44.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libical/libical_0.44.bb b/recipes/libical/libical_0.44.bb
index 272e07e..87e6c0c 100644
--- a/recipes/libical/libical_0.44.bb
+++ b/recipes/libical/libical_0.44.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "iCal and scheduling (RFC 2445, 2446, 2447) library"
 HOMEPAGE = "http://www.softwarestudio.org/softwarestudio/app.php/libical";
 SECTION = "libs"
-LICENSE = "LGPL / MPL"
-PR = "r0"
+LICENSE = "LGPLv2.1 | MPL-1"
+PR = "r1"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/freeassociation/${P}.tar.gz \
  "
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 25/70] libgpg-error: Update LICENSE field version to GPLv2 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL/LGPL/FDL to
  GPLv2 and LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libgpg-error/libgpg-error_1.4.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/libgpg-error/libgpg-error_1.4.bb 
b/recipes/libgpg-error/libgpg-error_1.4.bb
index 951bd28..38715aa 100644
--- a/recipes/libgpg-error/libgpg-error_1.4.bb
+++ b/recipes/libgpg-error/libgpg-error_1.4.bb
@@ -1,6 +1,8 @@
 require libgpg-error.inc
 
-PR = "${INC_PR}.1"
+LICENSE = "GPLv2 LGPLv2.1"
+
+PR = "${INC_PR}.2"
 
 SRC_URI[md5sum] = "86e60e9a03205fb706e99be101a2387e"
 SRC_URI[sha256sum] = 
"fff67ec5ffc93cf91fc62350a19a9f677c9bc6eb2730395d22f9d40c754ed619"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 24/70] gdbm: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/gdbm/gdbm_1.8.3.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gdbm/gdbm_1.8.3.bb b/recipes/gdbm/gdbm_1.8.3.bb
index 24c541a..20cd441 100644
--- a/recipes/gdbm/gdbm_1.8.3.bb
+++ b/recipes/gdbm/gdbm_1.8.3.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "GNU dbm is a set of database routines that use 
extensible hashing
 HOMEPAGE = "http://www.gnu.org/software/gdbm/gdbm.html";
 SECTION = "libs"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2+"
 
-PR = "r5"
+PR = "r6"
 
 SRC_URI = "${GNU_MIRROR}/gdbm/gdbm-${PV}.tar.gz \
   file://makefile.patch \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 23/70] libgcrypt: Update LICENSE field version to GPLv2 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL/LGPL/FDL to
  GPLv2+ and LGPLv2.1+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libgcrypt/libgcrypt_1.4.1.bb |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/recipes/libgcrypt/libgcrypt_1.4.1.bb 
b/recipes/libgcrypt/libgcrypt_1.4.1.bb
index bb7457d..58eacbe 100644
--- a/recipes/libgcrypt/libgcrypt_1.4.1.bb
+++ b/recipes/libgcrypt/libgcrypt_1.4.1.bb
@@ -1,5 +1,9 @@
 require libgcrypt.inc
 
+LICENSE = "GPLv2+ LGPLv2.1+"
+
+PR = "r1"
+
 
 SRC_URI[md5sum] = "555488ddfc81a6e0df1fb5112e7eee13"
 SRC_URI[sha256sum] = 
"7562042a6210947363bd6a9bbcdd03f8d02470c0347970b507f689d25a907844"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 22/70] flac: Update LICENSE field version to GPLv2 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GFDL-1.2,
  GPLv2+, LGPLv2.1, and BSD to reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/flac/flac_1.2.1.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/flac/flac_1.2.1.bb b/recipes/flac/flac_1.2.1.bb
index 9628352..7d52013 100644
--- a/recipes/flac/flac_1.2.1.bb
+++ b/recipes/flac/flac_1.2.1.bb
@@ -1,6 +1,8 @@
 require flac.inc
 
-PR = "${INC_PR}.2"
+LICENSE = "GFDL-1.2 GPLv2+ LGPLv2.1 BSD"
+
+PR = "${INC_PR}.3"
 
 # fixes from openSUSE:
 SRC_URI += "file://flac-gcc43-fixes.diff;striplevel=0 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 21/70] faad2: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/faad2/faad2_2.7.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/faad2/faad2_2.7.bb b/recipes/faad2/faad2_2.7.bb
index e778432..b1cc7e3 100644
--- a/recipes/faad2/faad2_2.7.bb
+++ b/recipes/faad2/faad2_2.7.bb
@@ -1,8 +1,10 @@
 DESCRIPTION = "Library for reading some sort of media format."
 SECTION = "libs"
-LICENSE = "LGPL"
+LICENSE = "GPLv2"
 PRIORITY = "optional"
 
+PR = "r1"
+
 inherit autotools
 
 SRC_URI = 
"${SOURCEFORGE_MIRROR}/faac/faad2-src/faad2-${PV}/${PN}-${PV}.tar.bz2;name=faad2
 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 20/70] faac: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/faac/faac_1.24.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/faac/faac_1.24.bb b/recipes/faac/faac_1.24.bb
index b635b32..a7e548b 100644
--- a/recipes/faac/faac_1.24.bb
+++ b/recipes/faac/faac_1.24.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "Library for reading some sort of media format."
 SECTION = "libs"
 PRIORITY = "optional"
 DEPENDS = ""
-LICENSE = "LGPL"
+LICENSE = "LGPLv2 LGPLv2.1"
 
-PR = "r1"
+PR = "r2"
 
 inherit autotools
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 18/70] libcroco: Update LICENSE field version to LGPLv2 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 and
  LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libcroco/libcroco_0.6.2.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/libcroco/libcroco_0.6.2.bb 
b/recipes/libcroco/libcroco_0.6.2.bb
index e502e95..07a224d 100644
--- a/recipes/libcroco/libcroco_0.6.2.bb
+++ b/recipes/libcroco/libcroco_0.6.2.bb
@@ -1,7 +1,9 @@
 DESCRIPTION = "The Libcroco project is an effort to build a generic Cascading 
Style Sheet (CSS) parsing and manipulation toolkit"
 SECTION = "x11/utils"
 DEPENDS = "glib-2.0 libxml2"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2 LGPLv2.1"
+
+PR = "r1"
 
 inherit gnome
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 19/70] esound: Update LICENSE field version to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to LGPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/esound/esound_0.2.36.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/esound/esound_0.2.36.bb b/recipes/esound/esound_0.2.36.bb
index eeb83e4..4322a8c 100644
--- a/recipes/esound/esound_0.2.36.bb
+++ b/recipes/esound/esound_0.2.36.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Enlightened Sound Daemon"
 SECTION = "gpe/base"
-LICENSE = "GPL"
+LICENSE = "LGPLv2"
 DEPENDS = "audiofile"
 PE = "1"
-PR = "r3"
+PR = "r4"
 
 inherit gnome binconfig
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 16/70] cairo: Update LICENSE field version to MPL-1 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to MPL-1 and
  LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/cairo/cairo_1.10.0.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/cairo/cairo_1.10.0.bb b/recipes/cairo/cairo_1.10.0.bb
index e6836a1..f81445a 100644
--- a/recipes/cairo/cairo_1.10.0.bb
+++ b/recipes/cairo/cairo_1.10.0.bb
@@ -1,6 +1,8 @@
 require cairo.inc
 
-PR = "r2"
+LICENSE = "MPL-1 LGPLv2.1"
+
+PR = "r3"
 
 SRC_URI = "http://cairographics.org/releases/cairo-${PV}.tar.gz;name=cairo \
 "
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 17/70] libcap2: Update LICENSE field version to GPLv2 or BSD

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to BSD or GPLv2
  to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libcap/libcap2_2.20.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libcap/libcap2_2.20.bb b/recipes/libcap/libcap2_2.20.bb
index 8f7dc3b..e3a18ec 100644
--- a/recipes/libcap/libcap2_2.20.bb
+++ b/recipes/libcap/libcap2_2.20.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Libcap is a library for getting and setting POSIX.1e (formerly 
POSIX 6) draft 15 capabilities."
 PRIORITY = "optional"
 SECTION = "libs"
-LICENSE = "GPL"
+LICENSE = "BSD | GPLv2"
 DEPENDS = "bison-native flex-native attr ${@base_contains('DISTRO_FEATURES', 
'pam', 'libpam', '', d)}"
-PR = "r0"
+PR = "r1"
 
 BUILD_CFLAGS += "-I${S}/libcap/include"
 CFLAGS += "-I${S}/libcap/include"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 15/70] avahi: Update LICENSE field version to GPLv2 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ and
  LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/avahi/avahi.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/avahi/avahi.inc b/recipes/avahi/avahi.inc
index f4dff0a..65a593d 100644
--- a/recipes/avahi/avahi.inc
+++ b/recipes/avahi/avahi.inc
@@ -3,9 +3,9 @@ AUTHOR = "Lennart Poettering "
 HOMEPAGE = "http://avahi.org";
 SECTION = "network"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2+ LGPLv2.1"
 DEPENDS = "libcap2 python-native expat virtual/libintl libdaemon dbus glib-2.0"
-INC_PR = "r13"
+INC_PR = "r14"
 # uclibc has no nss
 RRECOMMENDS_avahi-daemon_append_libc-glibc = "libnss-mdns"
 RDEPENDS_avahi-daemon += "sysvinit-pidof update-rc.d"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 14/70] audiofile: Update LICENSE field version to GPLv2 and LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL/GPL to LGPLv2
  and GPLv2 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/audiofile/audiofile_0.2.6.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/audiofile/audiofile_0.2.6.bb 
b/recipes/audiofile/audiofile_0.2.6.bb
index 6840506..f7e3b3b 100644
--- a/recipes/audiofile/audiofile_0.2.6.bb
+++ b/recipes/audiofile/audiofile_0.2.6.bb
@@ -3,9 +3,9 @@ API for accessing a variety of audio file formats, such as 
AIFF/AIFF-C, \
 WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual \
 Research, Amiga IFF/8SVX, and NIST SPHERE."
 SECTION = "libs"
-LICENSE = "LGPL GPL"
+LICENSE = "LGPLv2 GPLv2"
 RPROVIDES_${PN} += "audiofile"
-PR = "r8"
+PR = "r9"
 
 SRC_URI = "http://www.68k.org/~michael/audiofile/audiofile-${PV}.tar.gz \
   file://audiofile-m4_quote_fix.diff;striplevel=0 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 13/70] atk: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Update LICENSE field version from generic LGPL to GPLv2+ and
  LGPLv2+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/atk/atk_1.30.0.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/atk/atk_1.30.0.bb b/recipes/atk/atk_1.30.0.bb
index b3505bf..23c6685 100644
--- a/recipes/atk/atk_1.30.0.bb
+++ b/recipes/atk/atk_1.30.0.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "An accessibility toolkit for GNOME."
 SECTION = "x11/libs"
 PRIORITY = "optional"
-LICENSE = "LGPL"
+LICENSE = "GPLv2+ LGPLv2+"
 
-PR = "r1"
+PR = "r2"
 
 inherit gnome
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 12/70] liba52: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ to
  reflect the real license version.
* This change was back-ported from oe-core

Signed-off-by: Chase Maupin 
---
 recipes/liba52/liba52_0.7.4.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/liba52/liba52_0.7.4.bb b/recipes/liba52/liba52_0.7.4.bb
index 7cf630e..1c2168c 100644
--- a/recipes/liba52/liba52_0.7.4.bb
+++ b/recipes/liba52/liba52_0.7.4.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "Library for reading some sort of media format."
-LICENSE = "GPL"
+LICENSE = "GPLv2+"
 SECTION = "libs"
 PRIORITY = "optional"
-PR = "r3"
+PR = "r4"
 
 inherit autotools
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 11/70] hostap-daemon: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/hostap/hostap-daemon-0.7.inc  |2 +-
 recipes/hostap/hostap-daemon_0.7.3.bb |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/hostap/hostap-daemon-0.7.inc 
b/recipes/hostap/hostap-daemon-0.7.inc
index 49f2650..187cec5 100644
--- a/recipes/hostap/hostap-daemon-0.7.inc
+++ b/recipes/hostap/hostap-daemon-0.7.inc
@@ -1,7 +1,7 @@
 HOMEPAGE = "http://hostap.epitest.fi";
 SECTION = "kernel/userland"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 DEPENDS = "libnl openssl"
 
 inherit update-rc.d
diff --git a/recipes/hostap/hostap-daemon_0.7.3.bb 
b/recipes/hostap/hostap-daemon_0.7.3.bb
index 5a8aee7..99297a9 100644
--- a/recipes/hostap/hostap-daemon_0.7.3.bb
+++ b/recipes/hostap/hostap-daemon_0.7.3.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "User space daemon for extended IEEE 802.11 
management"
 
 require hostap-daemon-0.7.inc
 
-PR = "r3"
+PR = "r4"
 
 DEFAULT_PREFERENCE = "-1"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 10/70] hicolor-icon-theme: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 .../hicolor-icon-theme/hicolor-icon-theme_0.11.bb  |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb 
b/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb
index a980570..f8f8677 100644
--- a/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb
+++ b/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb
@@ -1,11 +1,11 @@
 SECTION = "unknown"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 inherit autotools gtk-icon-cache
 
 # Override RDEPENDS_${PN} = hicolor-icon-theme from gtk-icon-cache
 RDEPENDS_${PN} = ""
 RDEPENDS_${PN} = ""
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://icon-theme.freedesktop.org/releases/${P}.tar.gz";
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 09/70] gnome-vfs: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ and
  LGPLv2+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/gnome/gnome-vfs_2.24.1.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/gnome-vfs_2.24.1.bb 
b/recipes/gnome/gnome-vfs_2.24.1.bb
index 268a219..7d797cf 100644
--- a/recipes/gnome/gnome-vfs_2.24.1.bb
+++ b/recipes/gnome/gnome-vfs_2.24.1.bb
@@ -1,9 +1,9 @@
-LICENSE = "GPL"
+LICENSE = "GPLv2+ LGPLv2+"
 DEPENDS = "libxml2 gconf gnutls avahi dbus dbus-glib bzip2 gnome-mime-data 
zlib gtk-doc-native"
 RRECOMMENDS_${PN} = "gnome-vfs-plugin-file shared-mime-info"
 # Some legacy packages will require gnome-mime-data to be installed, but use of
 # it is deprecated.
-PR = "r3"
+PR = "r4"
 
 inherit gnome
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 08/70] gnome-keyring: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+,
  LGPLv2+, and LGPLv2.1+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/gnome/gnome-keyring_2.28.2.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/gnome-keyring_2.28.2.bb 
b/recipes/gnome/gnome-keyring_2.28.2.bb
index dceb070..8e63e7e 100644
--- a/recipes/gnome/gnome-keyring_2.28.2.bb
+++ b/recipes/gnome/gnome-keyring_2.28.2.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "GNOME security credential management"
-LICENSE = "GPL"
+LICENSE = "GPLv2+ LGPLv2+ LGPLv2.1+"
 SECTION = "x11/gnome"
 DEPENDS = " gtk+-native libpam gconf gtk+ libtasn1 libtasn1-native libgcrypt"
-PR = "r1"
+PR = "r2"
 
 inherit gnome pkgconfig
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 07/70] gtk+: Update LICENSE field version for 2.20.1 to LGPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2,
  LGPLv2+, and LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection
* Verified for version 2.20.1 of gtk+

Signed-off-by: Chase Maupin 
---
 recipes/gtk+/gtk+_2.20.1.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/gtk+/gtk+_2.20.1.bb b/recipes/gtk+/gtk+_2.20.1.bb
index 9cffee1..cd3a6d2 100644
--- a/recipes/gtk+/gtk+_2.20.1.bb
+++ b/recipes/gtk+/gtk+_2.20.1.bb
@@ -1,5 +1,7 @@
 require gtk+.inc
 
+LICENSE = "LGPLv2 LGPLv2+ LGPLv2.1+"
+
 SRC_URI_append_virtclass-native = " file://no-demos.patch \
 "
 SRC_URI_append = "file://gtk-dnd-grab-deadlock-fix.patch \
@@ -10,7 +12,7 @@ SRC_URI_append = "file://gtk-dnd-grab-deadlock-fix.patch \
 SRC_URI[gtk.md5sum] = "53e6f3a93bd22934878fc4a4a34c68aa"
 SRC_URI[gtk.sha256sum] = 
"0e081731d21e34ff45c82199490c2889504fa8b3c7e117c043e82ababaec0f65"
 
-PR = "${INC_PR}.4"
+PR = "${INC_PR}.5"
 
 BBCLASSEXTEND = "native"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 06/70] debianutils: Update LICENSE field version GPLv2

2012-05-21 Thread Chase Maupin
* Update LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/debianutils/debianutils.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/debianutils/debianutils.inc 
b/recipes/debianutils/debianutils.inc
index 1ad766d..677a004 100644
--- a/recipes/debianutils/debianutils.inc
+++ b/recipes/debianutils/debianutils.inc
@@ -1,7 +1,7 @@
 DESCRIPTION = "Miscellaneous utilities specific to Debian"
 SECTION = "base"
-LICENSE = "GPL BSD BSD SMAIL"
-INC_PR = "r2"
+LICENSE = "GPLv2 BSD SMAIL_GPL"
+INC_PR = "r3"
 
 SRC_URI = "${DEBIAN_MIRROR}/main/d/${PN}/${PN}_${PV}.tar.gz"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 04/70] bonnie: Update LICENSE field version to GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.
* Bump the PR

Signed-off-by: Chase Maupin 
---
 recipes/bonnie/bonnie++.inc |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/bonnie/bonnie++.inc b/recipes/bonnie/bonnie++.inc
index fa24fcd..1d5867d 100644
--- a/recipes/bonnie/bonnie++.inc
+++ b/recipes/bonnie/bonnie++.inc
@@ -3,8 +3,9 @@
 # Released under the MIT license (see packages/COPYING)
 
 DESCRIPTION="Tests large file IO and creation/deletion of small files."
-LICENSE="GPL"
+LICENSE="GPLv2"
 
+PR = "r1"
 
 SRC_URI="http://www.coker.com.au/bonnie++/${BPN}-${PV}.tgz \
 file://gcc-4.3-fixes.patch"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 05/70] canutils: Update LICENSE field version GPLv2

2012-05-21 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to GPLv2 to
  reflect the actual license and license version of the code.
* This change was back-ported from oe-core

Signed-off-by: Chase Maupin 
---
 recipes/socketcan/canutils.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/socketcan/canutils.inc b/recipes/socketcan/canutils.inc
index a4edeea..6ee6bbd 100644
--- a/recipes/socketcan/canutils.inc
+++ b/recipes/socketcan/canutils.inc
@@ -3,10 +3,10 @@ AUTHOR = "Luotao Fu"
 HOMEPAGE = "http://www.pengutronix.de";
 SECTION = "console/network"
 PRIORITY = "optional"
-LICENSE = "LGPL"
+LICENSE = "GPLv2"
 DEPENDS = "libsocketcan"
 RCONFLICTS_${PN} = "socketcan-utils-test"
-INC_PR = "r1"
+INC_PR = "r2"
 
 SRC_URI = 
"git://git.pengutronix.de/git/tools/canutils.git;protocol=git;tag=${TAG} \
 "
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 03/70] libtasn1: inherit lib_package to split GPLv3 packages

2012-05-21 Thread Chase Maupin
* Inherit lib_package to separate out the GPLv3 binaries from the
  LGPLv2.1 libraries
* Bump the PR

Signed-off-by: Chase Maupin 
---
 recipes/gnutls/libtasn1_1.7.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnutls/libtasn1_1.7.bb b/recipes/gnutls/libtasn1_1.7.bb
index 65b6321..0603949 100644
--- a/recipes/gnutls/libtasn1_1.7.bb
+++ b/recipes/gnutls/libtasn1_1.7.bb
@@ -3,11 +3,11 @@ LICENSE = "GPLv3+ LGPLv2.1+"
 LICENSE_${PN}-bin = "GPLv3+"
 LICENSE_${PN} = "LGPLv2.1+"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/libtasn1/libtasn1-${PV}.tar.gz";
 
-inherit autotools binconfig
+inherit autotools binconfig lib_package
 
 SRC_URI[md5sum] = "ebfd69b3514d8e8830057f0e9df6a5f9"
 SRC_URI[sha256sum] = 
"9431f8e41acbeb5b5b89ec87a092b1a1fe9ef0a229a9a90806f4774707ca1f1f"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 01/70] gnutls: update LICENSE setting to GPLv3 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated the LICENSE field setting based on settings in oe-core
  as well as code inspection.
* Gave specific LICENSE versions instead of generic GPL LGPL
* Bump the INC_PR

Signed-off-by: Chase Maupin 
---
 recipes/gnutls/gnutls.inc |   10 +++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/recipes/gnutls/gnutls.inc b/recipes/gnutls/gnutls.inc
index 6fb712f..a8e1e0d 100644
--- a/recipes/gnutls/gnutls.inc
+++ b/recipes/gnutls/gnutls.inc
@@ -1,14 +1,18 @@
 DESCRIPTION = "GNU Transport Layer Security Library"
 HOMEPAGE = "http://www.gnu.org/software/gnutls/";
 DEPENDS = "zlib libgcrypt lzo guile-native gtk-doc"
-LICENSE = "LGPL"
-LICENSE_${PN}-extra = "GPLv3"
+LICENSE = "GPLv3+ LGPLv2.1+"
+LICENSE_${PN} = "LGPLv2.1+"
+LICENSE_${PN}-xx = "LGPLv2.1+"
+LICENSE_${PN}-bin = "GPLv3+"
+LICENSE_${PN}-extra = "GPLv3+"
+LICENSE_${PN}-openssl = "GPLv3+"
 
 SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.bz2;name=gnutls";
 
 inherit autotools binconfig pkgconfig gettext
 
-INC_PR = "r11"
+INC_PR = "r12"
 
 EXTRA_OECONF = "--with-included-opencdk --with-included-libtasn1 
--disable-rpath"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 02/70] libtasn1: update LICENSE setting to GPLv3 and LGPLv2.1

2012-05-21 Thread Chase Maupin
* Updated the LICENSE field setting based on settings in oe-core
  as well as code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/gnutls/libtasn1_1.7.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/gnutls/libtasn1_1.7.bb b/recipes/gnutls/libtasn1_1.7.bb
index 44da659..65b6321 100644
--- a/recipes/gnutls/libtasn1_1.7.bb
+++ b/recipes/gnutls/libtasn1_1.7.bb
@@ -1,5 +1,7 @@
 DESCRIPTION = "Library for ASN.1 and DER manipulation"
-LICENSE = "LGPL"
+LICENSE = "GPLv3+ LGPLv2.1+"
+LICENSE_${PN}-bin = "GPLv3+"
+LICENSE_${PN} = "LGPLv2.1+"
 
 PR = "r1"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCHv2 00/70] [2011.03-maintenance] Pull request 20120521

2012-05-21 Thread Chase Maupin
All,

Updated in version2
* Split the libtasn changes into one change for the licensing and
  another change to inherit lib_package.
* Modified the commit messages to add the license settings.
* This was to address feedback from Paul Menzel.

The following changes since commit 36a56cbb69cda0c89f478e01183d61c6a66525c9:
  Steffen Sledz (1):
icedtea6-native-1.7.10: backport S7103224

are available in the git repository at:

  http://arago-project.org/git/projects/arago-oe-amsdk.git update-licenses

Chase Maupin (70):
  gnutls: update LICENSE setting to GPLv3 and LGPLv2.1
  libtasn1: update LICENSE setting to GPLv3 and LGPLv2.1
  libtasn1: inherit lib_package to split GPLv3 packages
  bonnie: Update LICENSE field version to GPLv2
  canutils: Update LICENSE field version GPLv2
  debianutils: Update LICENSE field version GPLv2
  gtk+: Update LICENSE field version for 2.20.1 to LGPLv2
  gnome-keyring: Update LICENSE field version to GPLv2
  gnome-vfs: Update LICENSE field version to GPLv2
  hicolor-icon-theme: Update LICENSE field version to GPLv2
  hostap-daemon: Update LICENSE field version to GPLv2
  liba52: Update LICENSE field version to GPLv2
  atk: Update LICENSE field version to GPLv2
  audiofile: Update LICENSE field version to GPLv2 and LGPLv2
  avahi: Update LICENSE field version to GPLv2 and LGPLv2.1
  cairo: Update LICENSE field version to MPL-1 and LGPLv2.1
  libcap2: Update LICENSE field version to GPLv2 or BSD
  libcroco: Update LICENSE field version to LGPLv2 and LGPLv2.1
  esound: Update LICENSE field version to LGPLv2
  faac: Update LICENSE field version to LGPLv2
  faad2: Update LICENSE field version to GPLv2
  flac: Update LICENSE field version to GPLv2 and LGPLv2.1
  libgcrypt: Update LICENSE field version to GPLv2 and LGPLv2.1
  gdbm: Update LICENSE field version to GPLv2
  libgpg-error: Update LICENSE field version to GPLv2 and LGPLv2.1
  libical: Update LICENSE field version to LGPLv2.1 or MPL-1
  libid3tag: Update LICENSE field version to GPLv2
  libidl: Update LICENSE field version to LGPLv2
  libmad: Update LICENSE field version to GPLv2
  libmodplug: Update LICENSE field version to PD
  lame: Update LICENSE field version to LGPLv2
  mpeg2dec: Update LICENSE field version to GPLv2
  mysql5: Update LICENSE field version to GPLv2
  libnl: Update LICENSE field version to LGPLv2.1
  libproxy: Update LICENSE field version to LGPLv2.1
  librsvg: Update LICENSE field version to LGPLv2
  libsamplerate0: Update LICENSE field version to GPLv2
  schroedinger: Update LICENSE field version to GPLv2 and LPGLv2
  libsdl: Update LICENSE field version to LGPLv2.1
  libsidplay: Update LICENSE field version to GPLv2
  libsndfile1: Update LICENSE field version to LGPLv2.1
  libsocketcan: Update LICENSE field version to LGPLv2.1
  libsoup-2.4: Update LICENSE field version to LGPLv2
  libvisual: Update LICENSE field version to LGPLv2.1
  x264: Update LICENSE field version to GPLv2
  libxv: Update LICENSE field version to MIT-style
  lmbench: Update LICENSE field version to GPLv2
  makedevs: Update LICENSE field version to GPLv2
  nfs-utils: Update LICENSE field version to GPLv2
  orbit2: Update LICENSE field version to GPLv2
  pango: Update LICENSE field version to LGPLv2
  shared-mime-info: Update LICENSE field version to GPLv2
  wireless-tools: Update LICENSE field version to GPLv2 and LGPLv2.1
  gnome-common: Update LICENSE field version to GPLv3
  cups: Update LICENSE field version to GPLv2 and LGPLv2
  gnome-mime-data: Update LICENSE field version to GPLv2
  gtk-doc: Update LICENSE field version to LGPLv2
  intltool: Update LICENSE field version to GPLv2
  libart-lgpl: Update LICENSE field version to LGPLv2
  libdaemon: Update LICENSE field version to LGPLv2.1
  libdiscid: Update LICENSE field version to LGPLv2.1
  libglade: Update LICENSE field version to LGPLv2
  libmikmod: Update LICENSE field version to LGPLv2.1
  libmusicbrainz: Update LICENSE field version to LGPLv2.1
  neon: Update LICENSE field version to LGPLv2
  libnfnetlink: Update LICENSE field version to GPLv2
  python-pycairo: Update LICENSE field version to LGPLv2.1
  python-pygobject: Update LICENSE field version to LGPLv2.1
  python-pygtk: Update LICENSE field version to LGPLv2.1
  time: Update LICENSE field version to GPLv2

 recipes/atk/atk_1.30.0.bb  |4 ++--
 recipes/audiofile/audiofile_0.2.6.bb   |4 ++--
 recipes/avahi/avahi.inc|4 ++--
 recipes/bonnie/bonnie++.inc|3 ++-
 recipes/cairo/cairo_1.10.0.bb  |4 +++-
 recipes/cups/cups_1.2.12.bb|4 ++--
 recipes/debianutils

[oe] [2011.03-maintenance] Pull request 20120514

2012-05-14 Thread Chase Maupin
Tom,

Please pull the following commits that update the LICENSE field to
list the actual license version for licenses like GPL and LGPL.  These
patches have previously been sent to the list with each patch identifying
where it was derived from.  I have also submitted patches for oe-core where
appropriate.

I'm looking for feedback on how to properly mark a package as having two
licenses in oe-classic since "&" causes issues.  If these patches are OK
then they can be pulled.  If there is a better way to mark the dual licensing
then I'll update them accordingly.

The following changes since commit 36a56cbb69cda0c89f478e01183d61c6a66525c9:
  Steffen Sledz (1):
icedtea6-native-1.7.10: backport S7103224

are available in the git repository at:

  http://arago-project.org/git/projects/arago-oe-amsdk.git update-licenses

Chase Maupin (69):
  gnutls: update LICENSE setting
  libtasn1: update LICENSE setting
  bonnie: Update LICENSE field version
  canutils: Update LICENSE field version
  debianutils: Update LICENSE field version
  gtk+: Update LICENSE field version for 2.20.1
  gnome-keyring: Update LICENSE field version
  gnome-vfs: Update LICENSE field version
  hicolor-icon-theme: Update LICENSE field version
  hostap-daemon: Update LICENSE field version
  liba52: Update LICENSE field version
  atk: Update LICENSE field version
  audiofile: Update LICENSE field version
  avahi: Update LICENSE field version
  cairo: Update LICENSE field version
  libcap2: Update LICENSE field version
  libcroco: Update LICENSE field version
  esound: Update LICENSE field version
  faac: Update LICENSE field version
  faad2: Update LICENSE field version
  flac: Update LICENSE field version
  libgcrypt: Update LICENSE field version
  gdbm: Update LICENSE field version
  libgpg-error: Update LICENSE field version
  libical: Update LICENSE field version
  libid3tag: Update LICENSE field version
  libidl: Update LICENSE field version
  libmad: Update LICENSE field version
  libmodplug: Update LICENSE field version
  lame: Update LICENSE field version
  mpeg2dec: Update LICENSE field version
  mysql5: Update LICENSE field version
  libnl: Update LICENSE field version
  libproxy: Update LICENSE field version
  librsvg: Update LICENSE field version
  libsamplerate0: Update LICENSE field version
  schroedinger: Update LICENSE field version
  libsdl: Update LICENSE field version
  libsidplay: Update LICENSE field version
  libsndfile1: Update LICENSE field version
  libsocketcan: Update LICENSE field version
  libsoup-2.4: Update LICENSE field version
  libvisual: Update LICENSE field version
  x264: Update LICENSE field version
  libxv: Update LICENSE field version
  lmbench: Update LICENSE field version
  makedevs: Update LICENSE field version
  nfs-utils: Update LICENSE field version
  orbit2: Update LICENSE field version
  pango: Update LICENSE field version
  shared-mime-info: Update LICENSE field version
  wireless-tools: Update LICENSE field version
  gnome-common: Update LICENSE field version
  cups: Update LICENSE field version
  gnome-mime-data: Update LICENSE field version
  gtk-doc: Update LICENSE field version
  intltool: Update LICENSE field version
  libart-lgpl: Update LICENSE field version
  libdaemon: Update LICENSE field version
  libdiscid: Update LICENSE field version
  libglade: Update LICENSE field version
  libmikmod: Update LICENSE field version
  libmusicbrainz: Update LICENSE field version
  neon: Update LICENSE field version
  libnfnetlink: Update LICENSE field version
  python-pycairo: Update LICENSE field version
  python-pygobject: Update LICENSE field version
  python-pygtk: Update LICENSE field version
  time: Update LICENSE field version

 recipes/atk/atk_1.30.0.bb  |4 ++--
 recipes/audiofile/audiofile_0.2.6.bb   |4 ++--
 recipes/avahi/avahi.inc|4 ++--
 recipes/bonnie/bonnie++.inc|3 ++-
 recipes/cairo/cairo_1.10.0.bb  |4 +++-
 recipes/cups/cups_1.2.12.bb|4 ++--
 recipes/debianutils/debianutils.inc|4 ++--
 recipes/esound/esound_0.2.36.bb|4 ++--
 recipes/faac/faac_1.24.bb  |4 ++--
 recipes/faad2/faad2_2.7.bb |4 +++-
 recipes/flac/flac_1.2.1.bb |4 +++-
 recipes/gdbm/gdbm_1.8.3.bb |4 ++--
 recipes/gnome/gnome-common.inc |2 +-
 recipes/gnome/gnome-common_2.28.0.bb   |2 ++
 recipes/gnome/gnome-keyring_2.28.2.bb  |4 ++--
 recipes/gnome/g

[oe] [PATCH 00/69] Update package LICENSE settings

2012-05-14 Thread Chase Maupin
All,

The attached patches update the LICENSE field in the packages to
have the actual version of the GPL or LGPL license instead of just
using the generic GPL or LGPL terms.  This is to make it easier to
know if a package is licensed under the GPLv3 license or not.

Many of these changes were either back-ports from oe-core or I used
oe-core as a guideline and went into the source code to verify the
licensing.

Please consider these for the 2011.03 maintenance branch as well.

Chase Maupin (69):
  gnutls: update LICENSE setting
  libtasn1: update LICENSE setting
  bonnie: Update LICENSE field version
  canutils: Update LICENSE field version
  debianutils: Update LICENSE field version
  gtk+: Update LICENSE field version for 2.20.1
  gnome-keyring: Update LICENSE field version
  gnome-vfs: Update LICENSE field version
  hicolor-icon-theme: Update LICENSE field version
  hostap-daemon: Update LICENSE field version
  liba52: Update LICENSE field version
  atk: Update LICENSE field version
  audiofile: Update LICENSE field version
  avahi: Update LICENSE field version
  cairo: Update LICENSE field version
  libcap2: Update LICENSE field version
  libcroco: Update LICENSE field version
  esound: Update LICENSE field version
  faac: Update LICENSE field version
  faad2: Update LICENSE field version
  flac: Update LICENSE field version
  libgcrypt: Update LICENSE field version
  gdbm: Update LICENSE field version
  libgpg-error: Update LICENSE field version
  libical: Update LICENSE field version
  libid3tag: Update LICENSE field version
  libidl: Update LICENSE field version
  libmad: Update LICENSE field version
  libmodplug: Update LICENSE field version
  lame: Update LICENSE field version
  mpeg2dec: Update LICENSE field version
  mysql5: Update LICENSE field version
  libnl: Update LICENSE field version
  libproxy: Update LICENSE field version
  librsvg: Update LICENSE field version
  libsamplerate0: Update LICENSE field version
  schroedinger: Update LICENSE field version
  libsdl: Update LICENSE field version
  libsidplay: Update LICENSE field version
  libsndfile1: Update LICENSE field version
  libsocketcan: Update LICENSE field version
  libsoup-2.4: Update LICENSE field version
  libvisual: Update LICENSE field version
  x264: Update LICENSE field version
  libxv: Update LICENSE field version
  lmbench: Update LICENSE field version
  makedevs: Update LICENSE field version
  nfs-utils: Update LICENSE field version
  orbit2: Update LICENSE field version
  pango: Update LICENSE field version
  shared-mime-info: Update LICENSE field version
  wireless-tools: Update LICENSE field version
  gnome-common: Update LICENSE field version
  cups: Update LICENSE field version
  gnome-mime-data: Update LICENSE field version
  gtk-doc: Update LICENSE field version
  intltool: Update LICENSE field version
  libart-lgpl: Update LICENSE field version
  libdaemon: Update LICENSE field version
  libdiscid: Update LICENSE field version
  libglade: Update LICENSE field version
  libmikmod: Update LICENSE field version
  libmusicbrainz: Update LICENSE field version
  neon: Update LICENSE field version
  libnfnetlink: Update LICENSE field version
  python-pycairo: Update LICENSE field version
  python-pygobject: Update LICENSE field version
  python-pygtk: Update LICENSE field version
  time: Update LICENSE field version

 recipes/atk/atk_1.30.0.bb  |4 ++--
 recipes/audiofile/audiofile_0.2.6.bb   |4 ++--
 recipes/avahi/avahi.inc|4 ++--
 recipes/bonnie/bonnie++.inc|3 ++-
 recipes/cairo/cairo_1.10.0.bb  |4 +++-
 recipes/cups/cups_1.2.12.bb|4 ++--
 recipes/debianutils/debianutils.inc|4 ++--
 recipes/esound/esound_0.2.36.bb|4 ++--
 recipes/faac/faac_1.24.bb  |4 ++--
 recipes/faad2/faad2_2.7.bb |4 +++-
 recipes/flac/flac_1.2.1.bb |4 +++-
 recipes/gdbm/gdbm_1.8.3.bb |4 ++--
 recipes/gnome/gnome-common.inc |2 +-
 recipes/gnome/gnome-common_2.28.0.bb   |2 ++
 recipes/gnome/gnome-keyring_2.28.2.bb  |4 ++--
 recipes/gnome/gnome-mime-data_2.18.0.bb|4 ++--
 recipes/gnome/gnome-vfs_2.24.1.bb  |4 ++--
 recipes/gnome/libart-lgpl.inc  |4 ++--
 recipes/gnome/libproxy_0.2.3.bb|4 ++--
 recipes/gnome/libsoup-2.4_2.32.2.bb|4 +++-
 recipes/gnome/orbit2_2.14.17.bb|4 
 recipes/gnutls/gnutls.inc  |   10 +++---
 recipes/gnutls/libtasn1_1.7.bb |8 +---
 recipes/gtk+/gtk+_2.20.1.bb|4 +++-
 recipes/gtk-doc/gtk-doc.bb |4 ++--
 .../hicolor-icon-theme

[oe] [PATCH 20/69] faad2: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.

Signed-off-by: Chase Maupin 
---
 recipes/faad2/faad2_2.7.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/faad2/faad2_2.7.bb b/recipes/faad2/faad2_2.7.bb
index e778432..b1cc7e3 100644
--- a/recipes/faad2/faad2_2.7.bb
+++ b/recipes/faad2/faad2_2.7.bb
@@ -1,8 +1,10 @@
 DESCRIPTION = "Library for reading some sort of media format."
 SECTION = "libs"
-LICENSE = "LGPL"
+LICENSE = "GPLv2"
 PRIORITY = "optional"
 
+PR = "r1"
+
 inherit autotools
 
 SRC_URI = 
"${SOURCEFORGE_MIRROR}/faac/faad2-src/faad2-${PV}/${PN}-${PV}.tar.bz2;name=faad2
 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 04/69] canutils: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to GPLv2 to
  reflect the actual license and license version of the code.
* This change was back-ported from oe-core

Signed-off-by: Chase Maupin 
---
 recipes/socketcan/canutils.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/socketcan/canutils.inc b/recipes/socketcan/canutils.inc
index a4edeea..6ee6bbd 100644
--- a/recipes/socketcan/canutils.inc
+++ b/recipes/socketcan/canutils.inc
@@ -3,10 +3,10 @@ AUTHOR = "Luotao Fu"
 HOMEPAGE = "http://www.pengutronix.de";
 SECTION = "console/network"
 PRIORITY = "optional"
-LICENSE = "LGPL"
+LICENSE = "GPLv2"
 DEPENDS = "libsocketcan"
 RCONFLICTS_${PN} = "socketcan-utils-test"
-INC_PR = "r1"
+INC_PR = "r2"
 
 SRC_URI = 
"git://git.pengutronix.de/git/tools/canutils.git;protocol=git;tag=${TAG} \
 "
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 08/69] gnome-vfs: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ and
  LGPLv2+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/gnome/gnome-vfs_2.24.1.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/gnome-vfs_2.24.1.bb 
b/recipes/gnome/gnome-vfs_2.24.1.bb
index 268a219..7d797cf 100644
--- a/recipes/gnome/gnome-vfs_2.24.1.bb
+++ b/recipes/gnome/gnome-vfs_2.24.1.bb
@@ -1,9 +1,9 @@
-LICENSE = "GPL"
+LICENSE = "GPLv2+ LGPLv2+"
 DEPENDS = "libxml2 gconf gnutls avahi dbus dbus-glib bzip2 gnome-mime-data 
zlib gtk-doc-native"
 RRECOMMENDS_${PN} = "gnome-vfs-plugin-file shared-mime-info"
 # Some legacy packages will require gnome-mime-data to be installed, but use of
 # it is deprecated.
-PR = "r3"
+PR = "r4"
 
 inherit gnome
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 13/69] audiofile: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL/GPL to LGPLv2
  and GPLv2 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/audiofile/audiofile_0.2.6.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/audiofile/audiofile_0.2.6.bb 
b/recipes/audiofile/audiofile_0.2.6.bb
index 6840506..f7e3b3b 100644
--- a/recipes/audiofile/audiofile_0.2.6.bb
+++ b/recipes/audiofile/audiofile_0.2.6.bb
@@ -3,9 +3,9 @@ API for accessing a variety of audio file formats, such as 
AIFF/AIFF-C, \
 WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual \
 Research, Amiga IFF/8SVX, and NIST SPHERE."
 SECTION = "libs"
-LICENSE = "LGPL GPL"
+LICENSE = "LGPLv2 GPLv2"
 RPROVIDES_${PN} += "audiofile"
-PR = "r8"
+PR = "r9"
 
 SRC_URI = "http://www.68k.org/~michael/audiofile/audiofile-${PV}.tar.gz \
   file://audiofile-m4_quote_fix.diff;striplevel=0 \
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 17/69] libcroco: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 and
  LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libcroco/libcroco_0.6.2.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/libcroco/libcroco_0.6.2.bb 
b/recipes/libcroco/libcroco_0.6.2.bb
index e502e95..07a224d 100644
--- a/recipes/libcroco/libcroco_0.6.2.bb
+++ b/recipes/libcroco/libcroco_0.6.2.bb
@@ -1,7 +1,9 @@
 DESCRIPTION = "The Libcroco project is an effort to build a generic Cascading 
Style Sheet (CSS) parsing and manipulation toolkit"
 SECTION = "x11/utils"
 DEPENDS = "glib-2.0 libxml2"
-LICENSE = "LGPL"
+LICENSE = "LGPLv2 LGPLv2.1"
+
+PR = "r1"
 
 inherit gnome
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 03/69] bonnie: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was back-ported from oe-core.
* Bump the PR

Signed-off-by: Chase Maupin 
---
 recipes/bonnie/bonnie++.inc |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/bonnie/bonnie++.inc b/recipes/bonnie/bonnie++.inc
index fa24fcd..1d5867d 100644
--- a/recipes/bonnie/bonnie++.inc
+++ b/recipes/bonnie/bonnie++.inc
@@ -3,8 +3,9 @@
 # Released under the MIT license (see packages/COPYING)
 
 DESCRIPTION="Tests large file IO and creation/deletion of small files."
-LICENSE="GPL"
+LICENSE="GPLv2"
 
+PR = "r1"
 
 SRC_URI="http://www.coker.com.au/bonnie++/${BPN}-${PV}.tgz \
 file://gcc-4.3-fixes.patch"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 16/69] libcap2: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to BSD or GPLv2
  to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libcap/libcap2_2.20.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/libcap/libcap2_2.20.bb b/recipes/libcap/libcap2_2.20.bb
index 8f7dc3b..e3a18ec 100644
--- a/recipes/libcap/libcap2_2.20.bb
+++ b/recipes/libcap/libcap2_2.20.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Libcap is a library for getting and setting POSIX.1e (formerly 
POSIX 6) draft 15 capabilities."
 PRIORITY = "optional"
 SECTION = "libs"
-LICENSE = "GPL"
+LICENSE = "BSD | GPLv2"
 DEPENDS = "bison-native flex-native attr ${@base_contains('DISTRO_FEATURES', 
'pam', 'libpam', '', d)}"
-PR = "r0"
+PR = "r1"
 
 BUILD_CFLAGS += "-I${S}/libcap/include"
 CFLAGS += "-I${S}/libcap/include"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 01/69] gnutls: update LICENSE setting

2012-05-14 Thread Chase Maupin
* Updated the LICENSE field setting based on settings in oe-core
  as well as code inspection.
* Gave specific LICENSE versions instead of generic GPL LGPL
* Bump the INC_PR

Signed-off-by: Chase Maupin 
---
 recipes/gnutls/gnutls.inc |   10 +++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/recipes/gnutls/gnutls.inc b/recipes/gnutls/gnutls.inc
index 6fb712f..a8e1e0d 100644
--- a/recipes/gnutls/gnutls.inc
+++ b/recipes/gnutls/gnutls.inc
@@ -1,14 +1,18 @@
 DESCRIPTION = "GNU Transport Layer Security Library"
 HOMEPAGE = "http://www.gnu.org/software/gnutls/";
 DEPENDS = "zlib libgcrypt lzo guile-native gtk-doc"
-LICENSE = "LGPL"
-LICENSE_${PN}-extra = "GPLv3"
+LICENSE = "GPLv3+ LGPLv2.1+"
+LICENSE_${PN} = "LGPLv2.1+"
+LICENSE_${PN}-xx = "LGPLv2.1+"
+LICENSE_${PN}-bin = "GPLv3+"
+LICENSE_${PN}-extra = "GPLv3+"
+LICENSE_${PN}-openssl = "GPLv3+"
 
 SRC_URI = "ftp://ftp.gnutls.org/pub/gnutls/gnutls-${PV}.tar.bz2;name=gnutls";
 
 inherit autotools binconfig pkgconfig gettext
 
-INC_PR = "r11"
+INC_PR = "r12"
 
 EXTRA_OECONF = "--with-included-opencdk --with-included-libtasn1 
--disable-rpath"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 09/69] hicolor-icon-theme: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 .../hicolor-icon-theme/hicolor-icon-theme_0.11.bb  |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb 
b/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb
index a980570..f8f8677 100644
--- a/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb
+++ b/recipes/hicolor-icon-theme/hicolor-icon-theme_0.11.bb
@@ -1,11 +1,11 @@
 SECTION = "unknown"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 inherit autotools gtk-icon-cache
 
 # Override RDEPENDS_${PN} = hicolor-icon-theme from gtk-icon-cache
 RDEPENDS_${PN} = ""
 RDEPENDS_${PN} = ""
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://icon-theme.freedesktop.org/releases/${P}.tar.gz";
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 10/69] hostap-daemon: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/hostap/hostap-daemon-0.7.inc  |2 +-
 recipes/hostap/hostap-daemon_0.7.3.bb |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/hostap/hostap-daemon-0.7.inc 
b/recipes/hostap/hostap-daemon-0.7.inc
index 49f2650..187cec5 100644
--- a/recipes/hostap/hostap-daemon-0.7.inc
+++ b/recipes/hostap/hostap-daemon-0.7.inc
@@ -1,7 +1,7 @@
 HOMEPAGE = "http://hostap.epitest.fi";
 SECTION = "kernel/userland"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2"
 DEPENDS = "libnl openssl"
 
 inherit update-rc.d
diff --git a/recipes/hostap/hostap-daemon_0.7.3.bb 
b/recipes/hostap/hostap-daemon_0.7.3.bb
index 5a8aee7..99297a9 100644
--- a/recipes/hostap/hostap-daemon_0.7.3.bb
+++ b/recipes/hostap/hostap-daemon_0.7.3.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "User space daemon for extended IEEE 802.11 
management"
 
 require hostap-daemon-0.7.inc
 
-PR = "r3"
+PR = "r4"
 
 DEFAULT_PREFERENCE = "-1"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 24/69] libgpg-error: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL/LGPL/FDL to
  GPLv2 and LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libgpg-error/libgpg-error_1.4.bb |4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/libgpg-error/libgpg-error_1.4.bb 
b/recipes/libgpg-error/libgpg-error_1.4.bb
index 951bd28..38715aa 100644
--- a/recipes/libgpg-error/libgpg-error_1.4.bb
+++ b/recipes/libgpg-error/libgpg-error_1.4.bb
@@ -1,6 +1,8 @@
 require libgpg-error.inc
 
-PR = "${INC_PR}.1"
+LICENSE = "GPLv2 LGPLv2.1"
+
+PR = "${INC_PR}.2"
 
 SRC_URI[md5sum] = "86e60e9a03205fb706e99be101a2387e"
 SRC_URI[sha256sum] = 
"fff67ec5ffc93cf91fc62350a19a9f677c9bc6eb2730395d22f9d40c754ed619"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 07/69] gnome-keyring: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+,
  LGPLv2+, and LGPLv2.1+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/gnome/gnome-keyring_2.28.2.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/gnome-keyring_2.28.2.bb 
b/recipes/gnome/gnome-keyring_2.28.2.bb
index dceb070..8e63e7e 100644
--- a/recipes/gnome/gnome-keyring_2.28.2.bb
+++ b/recipes/gnome/gnome-keyring_2.28.2.bb
@@ -1,8 +1,8 @@
 DESCRIPTION = "GNOME security credential management"
-LICENSE = "GPL"
+LICENSE = "GPLv2+ LGPLv2+ LGPLv2.1+"
 SECTION = "x11/gnome"
 DEPENDS = " gtk+-native libpam gconf gtk+ libtasn1 libtasn1-native libgcrypt"
-PR = "r1"
+PR = "r2"
 
 inherit gnome pkgconfig
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 05/69] debianutils: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Update LICENSE field version from generic GPL to GPLv2 to
  reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection

Signed-off-by: Chase Maupin 
---
 recipes/debianutils/debianutils.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/debianutils/debianutils.inc 
b/recipes/debianutils/debianutils.inc
index 1ad766d..677a004 100644
--- a/recipes/debianutils/debianutils.inc
+++ b/recipes/debianutils/debianutils.inc
@@ -1,7 +1,7 @@
 DESCRIPTION = "Miscellaneous utilities specific to Debian"
 SECTION = "base"
-LICENSE = "GPL BSD BSD SMAIL"
-INC_PR = "r2"
+LICENSE = "GPLv2 BSD SMAIL_GPL"
+INC_PR = "r3"
 
 SRC_URI = "${DEBIAN_MIRROR}/main/d/${PN}/${PN}_${PV}.tar.gz"
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 14/69] avahi: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL to GPLv2+ and
  LGPLv2.1 to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/avahi/avahi.inc |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/avahi/avahi.inc b/recipes/avahi/avahi.inc
index f4dff0a..65a593d 100644
--- a/recipes/avahi/avahi.inc
+++ b/recipes/avahi/avahi.inc
@@ -3,9 +3,9 @@ AUTHOR = "Lennart Poettering "
 HOMEPAGE = "http://avahi.org";
 SECTION = "network"
 PRIORITY = "optional"
-LICENSE = "GPL"
+LICENSE = "GPLv2+ LGPLv2.1"
 DEPENDS = "libcap2 python-native expat virtual/libintl libdaemon dbus glib-2.0"
-INC_PR = "r13"
+INC_PR = "r14"
 # uclibc has no nss
 RRECOMMENDS_avahi-daemon_append_libc-glibc = "libnss-mdns"
 RDEPENDS_avahi-daemon += "sysvinit-pidof update-rc.d"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 22/69] libgcrypt: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic GPL/LGPL/FDL to
  GPLv2+ and LGPLv2.1+ to reflect the real license version.
* This change was based on setting in oe-core as well as code
  inspection.

Signed-off-by: Chase Maupin 
---
 recipes/libgcrypt/libgcrypt_1.4.1.bb |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/recipes/libgcrypt/libgcrypt_1.4.1.bb 
b/recipes/libgcrypt/libgcrypt_1.4.1.bb
index bb7457d..58eacbe 100644
--- a/recipes/libgcrypt/libgcrypt_1.4.1.bb
+++ b/recipes/libgcrypt/libgcrypt_1.4.1.bb
@@ -1,5 +1,9 @@
 require libgcrypt.inc
 
+LICENSE = "GPLv2+ LGPLv2.1+"
+
+PR = "r1"
+
 
 SRC_URI[md5sum] = "555488ddfc81a6e0df1fb5112e7eee13"
 SRC_URI[sha256sum] = 
"7562042a6210947363bd6a9bbcdd03f8d02470c0347970b507f689d25a907844"
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


[oe] [PATCH 19/69] faac: Update LICENSE field version

2012-05-14 Thread Chase Maupin
* Updated LICENSE field version from generic LGPL to LGPLv2 to
  reflect the real license version.
* This change was based on code inspection.

Signed-off-by: Chase Maupin 
---
 recipes/faac/faac_1.24.bb |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/faac/faac_1.24.bb b/recipes/faac/faac_1.24.bb
index b635b32..a7e548b 100644
--- a/recipes/faac/faac_1.24.bb
+++ b/recipes/faac/faac_1.24.bb
@@ -2,9 +2,9 @@ DESCRIPTION = "Library for reading some sort of media format."
 SECTION = "libs"
 PRIORITY = "optional"
 DEPENDS = ""
-LICENSE = "LGPL"
+LICENSE = "LGPLv2 LGPLv2.1"
 
-PR = "r1"
+PR = "r2"
 
 inherit autotools
 
-- 
1.7.0.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel


  1   2   3   4   >