Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/7] Updates and QA Warning Fixes
@ 2012-03-01  7:26 Saul Wold
  2012-03-01  7:26 ` [PATCH 1/7] perl: remove empty directories to clean QA Warnings Saul Wold
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

Richard,

This patch set has update, qa warning fixes, and a non-GPLv3
fix (this one could be a M3 RC2 item).

Sau!

The following changes since commit 8054497b393d40a2ed8c802c74a02e92a3001297:

  image_types_uboot: Update to work after recent image_types changes (2012-02-29 18:23:04 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/updates
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/updates

Saul Wold (7):
  perl: remove empty directories to clean QA Warnings
  netbase: fix QA Warnings
  hdparm: update to 9.39
  glproto: Update to 1.4.15
  pixman: updat to 0.24.4
  util-linux: Fix removal of lscpu for non-GPLv3 Build
  distro_tracking: Upgrade and Manual Checks

 .../conf/distro/include/distro_tracking_fields.inc |   19 +++++----
 meta/recipes-core/netbase/netbase_4.47.bb          |    3 +-
 .../util-linux/util-linux-2.21/remove-lscpu.patch  |   43 +++++++++++++------
 meta/recipes-core/util-linux/util-linux_2.21.bb    |    2 +-
 meta/recipes-devtools/perl/perl_5.14.2.bb          |    6 ++-
 .../hdparm/{hdparm_9.37.bb => hdparm_9.39.bb}      |    5 +-
 .../{pixman_0.24.2.bb => pixman_0.24.4.bb}         |    7 +--
 .../{glproto_1.4.14.bb => glproto_1.4.15.bb}       |    4 +-
 8 files changed, 53 insertions(+), 36 deletions(-)
 rename meta/recipes-extended/hdparm/{hdparm_9.37.bb => hdparm_9.39.bb} (89%)
 rename meta/recipes-graphics/xorg-lib/{pixman_0.24.2.bb => pixman_0.24.4.bb} (82%)
 rename meta/recipes-graphics/xorg-proto/{glproto_1.4.14.bb => glproto_1.4.15.bb} (77%)

-- 
1.7.7.6




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

* [PATCH 1/7] perl: remove empty directories to clean QA Warnings
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  2012-03-01  7:26 ` [PATCH 2/7] netbase: fix " Saul Wold
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

WARNING: For recipe perl, the following files/directories were installed but not shipped in any package:
WARNING:   /usr/lib/perl/site_perl
WARNING:   /usr/lib/perl/site_perl/5.14.2
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-devtools/perl/perl_5.14.2.bb |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb
index 0abefe4..6703b5c 100644
--- a/meta/recipes-devtools/perl/perl_5.14.2.bb
+++ b/meta/recipes-devtools/perl/perl_5.14.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
 # We need gnugrep (for -I)
 DEPENDS = "virtual/db grep-native"
 DEPENDS += "gdbm zlib"
-PR = "r2"
+PR = "r3"
 
 # 5.10.1 has Module::Build built-in
 PROVIDES += "libmodule-build-perl"
@@ -190,8 +190,10 @@ do_install() {
 
         ln -sf perl ${D}/${libdir}/perl5
 
-        # Remove unwanted file
+        # Remove unwanted file and empty directories
         rm -f ${D}/${libdir}/perl/${PV}/.packlist
+	rmdir ${D}/${libdir}/perl/site_perl/${PV}
+	rmdir ${D}/${libdir}/perl/site_perl
 
         # Fix up shared library
         mv ${D}/${libdir}/perl/${PV}/CORE/libperl.so ${D}/${libdir}/libperl.so.${PV}
-- 
1.7.7.6




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

* [PATCH 2/7] netbase: fix QA Warnings
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
  2012-03-01  7:26 ` [PATCH 1/7] perl: remove empty directories to clean QA Warnings Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  2012-03-01  7:26 ` [PATCH 3/7] hdparm: update to 9.39 Saul Wold
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

WARNING: For recipe netbase, the following files/directories were installed but not shipped in any package:
WARNING:   /usr/sbin
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-core/netbase/netbase_4.47.bb |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/netbase/netbase_4.47.bb b/meta/recipes-core/netbase/netbase_4.47.bb
index 3aa4915..a1462f8 100644
--- a/meta/recipes-core/netbase/netbase_4.47.bb
+++ b/meta/recipes-core/netbase/netbase_4.47.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://packages.debian.org/netbase"
 SECTION = "base"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://debian/copyright;md5=3dd6192d306f582dee7687da3d8748ab"
-PR = "r0"
+PR = "r1"
 
 inherit update-rc.d
 
@@ -22,7 +22,6 @@ SRC_URI[sha256sum] = "a7e6525c9a09b00eff3395d09739b3c70a18bff8d13f7daa21fdf81989
 
 do_install () {
 	install -d ${D}${sysconfdir}/init.d \
-		   ${D}${sbindir} \
 		   ${D}${mandir}/man8 \
 		   ${D}${sysconfdir}/network/if-pre-up.d \
 		   ${D}${sysconfdir}/network/if-up.d \
-- 
1.7.7.6




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

* [PATCH 3/7] hdparm: update to 9.39
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
  2012-03-01  7:26 ` [PATCH 1/7] perl: remove empty directories to clean QA Warnings Saul Wold
  2012-03-01  7:26 ` [PATCH 2/7] netbase: fix " Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  2012-03-01  7:26 ` [PATCH 4/7] glproto: Update to 1.4.15 Saul Wold
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../hdparm/{hdparm_9.37.bb => hdparm_9.39.bb}      |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/hdparm/{hdparm_9.37.bb => hdparm_9.39.bb} (89%)

diff --git a/meta/recipes-extended/hdparm/hdparm_9.37.bb b/meta/recipes-extended/hdparm/hdparm_9.39.bb
similarity index 89%
rename from meta/recipes-extended/hdparm/hdparm_9.37.bb
rename to meta/recipes-extended/hdparm/hdparm_9.39.bb
index 8ea6f13..d8342cc 100644
--- a/meta/recipes-extended/hdparm/hdparm_9.37.bb
+++ b/meta/recipes-extended/hdparm/hdparm_9.39.bb
@@ -16,8 +16,9 @@ FILES_${PN} = "${base_sbindir} ${mandir}"
 RDEPENDS_wiper = "bash gawk stat"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/hdparm/hdparm-${PV}.tar.gz "
-SRC_URI[md5sum] = "0bb94ddd1bedd5c02b1ca62f1caaf6de"
-SRC_URI[sha256sum] = "87ede0a7cb5b4de500748232e9d251b75acfccce078e1d42c8d125b9e5b4ccd3"
+
+SRC_URI[md5sum] = "2bc17b72403885d4faf959682944243b"
+SRC_URI[sha256sum] = "72d550af4526aa96f0841c79321a0ee39d636cbaf1f294e52193e90c054b3cea"
 
 do_install () {
 	install -d ${D}/${base_sbindir} ${D}/${mandir}/man8 ${D}/${bindir}
-- 
1.7.7.6




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

* [PATCH 4/7] glproto: Update to 1.4.15
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
                   ` (2 preceding siblings ...)
  2012-03-01  7:26 ` [PATCH 3/7] hdparm: update to 9.39 Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  2012-03-01  7:26 ` [PATCH 5/7] pixman: updat to 0.24.4 Saul Wold
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../{glproto_1.4.14.bb => glproto_1.4.15.bb}       |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/xorg-proto/{glproto_1.4.14.bb => glproto_1.4.15.bb} (77%)

diff --git a/meta/recipes-graphics/xorg-proto/glproto_1.4.14.bb b/meta/recipes-graphics/xorg-proto/glproto_1.4.15.bb
similarity index 77%
rename from meta/recipes-graphics/xorg-proto/glproto_1.4.14.bb
rename to meta/recipes-graphics/xorg-proto/glproto_1.4.15.bb
index 76d9502..955f44b 100644
--- a/meta/recipes-graphics/xorg-proto/glproto_1.4.14.bb
+++ b/meta/recipes-graphics/xorg-proto/glproto_1.4.15.bb
@@ -15,5 +15,5 @@ PE = "1"
 
 BBCLASSEXTEND = "nativesdk"
 
-SRC_URI[md5sum] = "f48257daf0017f7a7667e5bf48ca3578"
-SRC_URI[sha256sum] = "7aaf555a100a63c67dbffc63153dcaaa3de1a36e605a2e98fce63f64089ff999"
+SRC_URI[md5sum] = "d1ff0c1acc605689919c1ee2fc9b5582"
+SRC_URI[sha256sum] = "990356ebe2e8966aa643287c9a485777957a49299dfb211654df5ff212dec171"
-- 
1.7.7.6




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

* [PATCH 5/7] pixman: updat to 0.24.4
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
                   ` (3 preceding siblings ...)
  2012-03-01  7:26 ` [PATCH 4/7] glproto: Update to 1.4.15 Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  2012-03-01  8:13   ` Koen Kooi
  2012-03-01  7:26 ` [PATCH 6/7] util-linux: Fix removal of lscpu for non-GPLv3 Build Saul Wold
  2012-03-01  7:26 ` [PATCH 7/7] distro_tracking: Upgrade and Manual Checks Saul Wold
  6 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../{pixman_0.24.2.bb => pixman_0.24.4.bb}         |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)
 rename meta/recipes-graphics/xorg-lib/{pixman_0.24.2.bb => pixman_0.24.4.bb} (82%)

diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.24.2.bb b/meta/recipes-graphics/xorg-lib/pixman_0.24.4.bb
similarity index 82%
rename from meta/recipes-graphics/xorg-lib/pixman_0.24.2.bb
rename to meta/recipes-graphics/xorg-lib/pixman_0.24.4.bb
index c710b42..4c90ea3 100644
--- a/meta/recipes-graphics/xorg-lib/pixman_0.24.2.bb
+++ b/meta/recipes-graphics/xorg-lib/pixman_0.24.4.bb
@@ -15,10 +15,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=14096c769ae0cbb5fcb94ec468be11b3 \
 DEPENDS += "zlib libpng"
 
 PE = "1"
-PR = "r1"
+PR = "r0"
 
 EXTRA_OECONF="--disable-gtk"
 
-SRC_URI[md5sum] = "2ce7d12750664d2eebd51bf0a07b6205"
-SRC_URI[sha256sum] = "32f74f3e3c1feea33e6ad3e2fd66cb3eb816805c384b346ea1636a87c9057dbf"
-
+SRC_URI[md5sum] = "89eb7db8853681bbcea626b161de0488"
+SRC_URI[sha256sum] = "5f4b384aa39e82a582bdc8835e2e81b28176db851dd1f7ff32d682d026a23bb5"
-- 
1.7.7.6




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

* [PATCH 6/7] util-linux: Fix removal of lscpu for non-GPLv3 Build
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
                   ` (4 preceding siblings ...)
  2012-03-01  7:26 ` [PATCH 5/7] pixman: updat to 0.24.4 Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  2012-03-01  7:26 ` [PATCH 7/7] distro_tracking: Upgrade and Manual Checks Saul Wold
  6 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../util-linux/util-linux-2.21/remove-lscpu.patch  |   43 +++++++++++++------
 meta/recipes-core/util-linux/util-linux_2.21.bb    |    2 +-
 2 files changed, 30 insertions(+), 15 deletions(-)

diff --git a/meta/recipes-core/util-linux/util-linux-2.21/remove-lscpu.patch b/meta/recipes-core/util-linux/util-linux-2.21/remove-lscpu.patch
index 434e28d..a15c1e3 100644
--- a/meta/recipes-core/util-linux/util-linux-2.21/remove-lscpu.patch
+++ b/meta/recipes-core/util-linux/util-linux-2.21/remove-lscpu.patch
@@ -2,24 +2,39 @@ Upstream-Status: Inappropriate [distribution]
 
 Take out lscpu stuff from the code
 
-2011/03/17
-Saul Wold <saul.wold@intel.com>
-Nitin A Kamble <nitin.a.kamble@intel.com>
+Signed-off-by: Saul Wold <sgw@linux.intel.com>
 
-Index: util-linux-2.20.1/sys-utils/Makefile.am
+Index: util-linux-2.21/configure.ac
 ===================================================================
---- util-linux-2.20.1.orig/sys-utils/Makefile.am
-+++ util-linux-2.20.1/sys-utils/Makefile.am
-@@ -17,12 +17,6 @@ usrsbin_exec_PROGRAMS += ldattach tunelp
- dist_man_MANS += dmesg.1 ctrlaltdel.8 cytune.8 setarch.8 \
- 		ldattach.8 tunelp.8 rtcwake.8 fsfreeze.8 fstrim.8
+--- util-linux-2.21.orig/configure.ac
++++ util-linux-2.21/configure.ac
+@@ -871,7 +871,7 @@ UL_REQUIRES_BUILD([lsblk], [libblkid])
+ AM_CONDITIONAL(BUILD_LSBLK, test "x$build_lsblk" = xyes)
  
--if HAVE_CPU_SET_T
+ 
+-UL_BUILD_INIT([lscpu], [check])
++UL_BUILD_INIT([lscpu], [no])
+ UL_REQUIRES_LINUX([lscpu])
+ UL_REQUIRES_HAVE([lscpu], [cpu_set_t], [cpu_set_t type])
+ AM_CONDITIONAL(BUILD_LSCPU, test "x$build_lscpu" = xyes)
+Index: util-linux-2.21/sys-utils/Makefile.am
+===================================================================
+--- util-linux-2.21.orig/sys-utils/Makefile.am
++++ util-linux-2.21/sys-utils/Makefile.am
+@@ -108,16 +108,6 @@ swapon_CFLAGS = $(AM_CFLAGS) -I$(ul_libb
+ swapon_LDADD = $(ul_libblkid_la)
+ endif
+ 
+-if BUILD_LSCPU
 -usrbin_exec_PROGRAMS += lscpu
--lscpu_SOURCES = lscpu.c $(top_srcdir)/lib/cpuset.c $(top_srcdir)/lib/strutils.c
+-lscpu_SOURCES = lscpu.c $(top_srcdir)/lib/cpuset.c \
+-			$(top_srcdir)/lib/strutils.c \
+-			$(top_srcdir)/lib/mbsalign.c \
+-			$(top_srcdir)/lib/tt.c \
+-			$(top_srcdir)/lib/path.c
 -dist_man_MANS += lscpu.1
 -endif
 -
- endif
- 
- cytune_SOURCES = cytune.c cyclades.h
+ if BUILD_CHCPU
+ sbin_PROGRAMS += chcpu
+ chcpu_SOURCES = chcpu.c $(top_srcdir)/lib/cpuset.c \
diff --git a/meta/recipes-core/util-linux/util-linux_2.21.bb b/meta/recipes-core/util-linux/util-linux_2.21.bb
index aa6ac64..e21f484 100644
--- a/meta/recipes-core/util-linux/util-linux_2.21.bb
+++ b/meta/recipes-core/util-linux/util-linux_2.21.bb
@@ -1,5 +1,5 @@
 MAJOR_VERSION = "2.21"
-PR = "r0"
+PR = "r1"
 require util-linux.inc
 
 # note that `lscpu' is under GPLv3+
-- 
1.7.7.6




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

* [PATCH 7/7] distro_tracking: Upgrade and Manual Checks
  2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
                   ` (5 preceding siblings ...)
  2012-03-01  7:26 ` [PATCH 6/7] util-linux: Fix removal of lscpu for non-GPLv3 Build Saul Wold
@ 2012-03-01  7:26 ` Saul Wold
  6 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2012-03-01  7:26 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../conf/distro/include/distro_tracking_fields.inc |   19 ++++++++++---------
 1 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 3328d96..d8cb150 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -1175,7 +1175,7 @@ RECIPE_NO_OF_PATCHES_pn-watchdog = "0"
 RECIPE_INTEL_SECTION_pn-watchdog = "base utils"
 RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-watchdog = "3 months"
 RECIPE_LATEST_RELEASE_DATE_pn-watchdog = "Dec 28, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn-watchdog = "Dec 30, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-watchdog = "Feb 29, 2012"
 RECIPE_COMMENTS_pn-watchdog = ""
 DISTRO_PN_ALIAS_pn-watchdog = "Debian=watchdog Ubuntu=watchdog Mandriva=watchdog"
 
@@ -2013,9 +2013,10 @@ RECIPE_MANUAL_CHECK_DATE_pn-stat = "Dec 30, 2011"
 RECIPE_MAINTAINER_pn-stat = "Shane Wang <shane.wang@intel.com>"
 
 RECIPE_STATUS_pn-hdparm = "red"
-RECIPE_LATEST_VERSION_pn-hdparm = "9.37"
-RECIPE_LAST_UPDATE_pn-hdparm = "Dec 30, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn-hdparm = "Dec 24, 2011"
+RECIPE_LATEST_VERSION_pn-hdparm = "9.39"
+RECIPE_LATEST_RELEASE_DATE_pn-libexif = "Feb 03, 2012"
+RECIPE_LAST_UPDATE_pn-hdparm = "Feb 29, 2012"
+RECIPE_MANUAL_CHECK_DATE_pn-hdparm = "Feb 29, 2012"
 RECIPE_MAINTAINER_pn-hdparm = "Dexuan Cui <dexuan.cui@intel.com>"
 
 RECIPE_STATUS_pn-wbxml2 = "red"
@@ -2891,7 +2892,7 @@ RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-oprofile = "4 months"
 RECIPE_LATEST_RELEASE_DATE_pn-oprofile = "Aug 12, 2011"
 RECIPE_COMMENTS_pn-oprofile = ""
 RECIPE_LAST_UPDATE_pn-oprofile = "Jun 22, 2010"
-RECIPE_MANUAL_CHECK_DATE_pn-oprofile = "Dec 24, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-oprofile = "Feb 29, 2012"
 RECIPE_MAINTAINER_pn-oprofile = "Dexuan Cui <dexuan.cui@intel.com>"
 
 RECIPE_STATUS_pn-powertop = "green"
@@ -4355,13 +4356,13 @@ RECIPE_MAINTAINER_pn-xproto = "Dexuan Cui <dexuan.cui@intel.com>"
 
 RECIPE_STATUS_pn-liberation-fonts = "green"
 RECIPE_DEPENDENCY_CHECK_pn-liberation-fonts = "not done"
-RECIPE_LATEST_VERSION_pn-liberation-fonts = "1.07.1"
-RECIPE_MANUAL_CHECK_DATE_pn-liberation-fonts = "Nov 30, 2011"
+RECIPE_LATEST_VERSION_pn-liberation-fonts = "1.07.2"
+RECIPE_MANUAL_CHECK_DATE_pn-liberation-fonts = "Feb 29, 2012"
 RECIPE_NO_UPDATE_REASON_pn-liberation-fonts = "Do not upgrade to version: 1.07.1 because before doing that, we need adding new native packages like libungif_4.1.3, libspiro and fontforge first"
 RECIPE_NO_OF_PATCHES_pn-liberation-fonts = "0"
 RECIPE_INTEL_SECTION_pn-liberation-fonts = "x11/fonts"
 RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-liberation-fonts = "4 months"
-RECIPE_LATEST_RELEASE_DATE_pn-liberation-fonts = "Sep 21, 2011"
+RECIPE_LATEST_RELEASE_DATE_pn-liberation-fonts = "Feb 09, 2012"
 RECIPE_COMMENTS_pn-liberation-fonts = "current version 1.04 released open source under GPLv2 with exceptions"
 RECIPE_LAST_UPDATE_pn-liberation-fonts = "Nov 30, 2011"
 RECIPE_MAINTAINER_pn-liberation-fonts = "Dexuan Cui <dexuan.cui@intel.com>"
@@ -4713,7 +4714,7 @@ RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-freetype = "1+ months"
 RECIPE_LATEST_RELEASE_DATE_pn-freetype = "Nov 15, 2011"
 RECIPE_COMMENTS_pn-freetype = ""
 RECIPE_LAST_UPDATE_pn-freetype = "Dec 27, 2011"
-RECIPE_MANUAL_CHECK_DATE_pn-freetype = "Dec 24, 2011"
+RECIPE_MANUAL_CHECK_DATE_pn-freetype = "Feb 29, 2012"
 RECIPE_MAINTAINER_pn-freetype = "Dexuan Cui <dexuan.cui@intel.com>"
 
 RECIPE_STATUS_pn-librsvg = "green"
-- 
1.7.7.6




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

* Re: [PATCH 5/7] pixman: updat to 0.24.4
  2012-03-01  7:26 ` [PATCH 5/7] pixman: updat to 0.24.4 Saul Wold
@ 2012-03-01  8:13   ` Koen Kooi
  0 siblings, 0 replies; 9+ messages in thread
From: Koen Kooi @ 2012-03-01  8:13 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 1 mrt. 2012, om 08:26 heeft Saul Wold het volgende geschreven:

> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
> .../{pixman_0.24.2.bb => pixman_0.24.4.bb}         |    7 +++----
> 1 files changed, 3 insertions(+), 4 deletions(-)
> rename meta/recipes-graphics/xorg-lib/{pixman_0.24.2.bb => pixman_0.24.4.bb} (82%)
> 
> diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.24.2.bb b/meta/recipes-graphics/xorg-lib/pixman_0.24.4.bb
> similarity index 82%
> rename from meta/recipes-graphics/xorg-lib/pixman_0.24.2.bb
> rename to meta/recipes-graphics/xorg-lib/pixman_0.24.4.bb
> index c710b42..4c90ea3 100644
> --- a/meta/recipes-graphics/xorg-lib/pixman_0.24.2.bb
> +++ b/meta/recipes-graphics/xorg-lib/pixman_0.24.4.bb
> @@ -15,10 +15,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=14096c769ae0cbb5fcb94ec468be11b3 \
> DEPENDS += "zlib libpng"
> 
> PE = "1"
> -PR = "r1"
> +PR = "r0"

Setting it to the default is bogus, no?

regards,

Koen


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

end of thread, other threads:[~2012-03-01  8:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-01  7:26 [PATCH 0/7] Updates and QA Warning Fixes Saul Wold
2012-03-01  7:26 ` [PATCH 1/7] perl: remove empty directories to clean QA Warnings Saul Wold
2012-03-01  7:26 ` [PATCH 2/7] netbase: fix " Saul Wold
2012-03-01  7:26 ` [PATCH 3/7] hdparm: update to 9.39 Saul Wold
2012-03-01  7:26 ` [PATCH 4/7] glproto: Update to 1.4.15 Saul Wold
2012-03-01  7:26 ` [PATCH 5/7] pixman: updat to 0.24.4 Saul Wold
2012-03-01  8:13   ` Koen Kooi
2012-03-01  7:26 ` [PATCH 6/7] util-linux: Fix removal of lscpu for non-GPLv3 Build Saul Wold
2012-03-01  7:26 ` [PATCH 7/7] distro_tracking: Upgrade and Manual Checks Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox