All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig
  2011-06-23 18:19 ` [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig Mark Hatle
@ 2011-06-23 18:10   ` Koen Kooi
  2011-06-23 19:33     ` Khem Raj
  0 siblings, 1 reply; 12+ messages in thread
From: Koen Kooi @ 2011-06-23 18:10 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 23 jun 2011, om 20:19 heeft Mark Hatle het volgende geschreven:

> Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
> ---
> meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb |    6 +++++-

Not related to this patch, but 0.2.2 is out and we'll need some more  
updates for (e)glibc 2.14



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

* [PATCH 0/9] Revised patch set for fixing owners/groups
@ 2011-06-23 18:19 Mark Hatle
  2011-06-23 18:19 ` [PATCH 1/9] native/nativesdk: Add a simple chown intercept command Mark Hatle
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

This is a revised patch set for fixing the owners/groups.  It adds a
local intercrepter routine for "chown" that runs only with native and
nativesdk packages.

Also update the rejected python patch to fix only the gobject item.

The following changes since commit ad098e40e8c57727892819e131bf18308bf244d2:

  packagedata.py: Fix read_subpkgdata_dict() (2011-06-23 16:01:20 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib mhatle/recipe-fixup
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=mhatle/perms

Mark Hatle (9):
  native/nativesdk: Add a simple chown intercept command
  resolveconf: Fix file owners
  base-passwd: Fix owners/groups
  ghostscript: Fix owner/group of /etc/cups
  libtirpc: Fix owner/group of /etc/netconfig
  tzdata: Ensure all files are owned by root:root
  gnome-doc-utils: Fix the owner/group on select files
  db: Fix file ownership
  python: Add python to the dependency to pygobject

 meta/classes/native.bbclass                        |    2 ++
 meta/classes/nativesdk.bbclass                     |    2 ++
 .../resolvconf/resolvconf_1.48.bb                  |    3 ++-
 .../recipes-core/base-passwd/base-passwd_3.5.22.bb |   10 +++++-----
 .../python/python-pygobject_2.27.91.bb             |    4 ++--
 .../ghostscript/ghostscript_9.02.bb                |    4 +++-
 meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb   |    6 +++++-
 meta/recipes-extended/tzdata/tzdata_2011g.bb       |    4 ++--
 meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    3 +++
 meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb |    2 +-
 meta/recipes-support/db/db_5.1.19.bb               |    2 ++
 scripts/native-intercept/chown                     |    2 ++
 12 files changed, 31 insertions(+), 13 deletions(-)
 create mode 100755 scripts/native-intercept/chown

-- 
1.7.3.4




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

* [PATCH 1/9] native/nativesdk: Add a simple chown intercept command
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 2/9] resolveconf: Fix file owners Mark Hatle
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

During native and nativesdk package we want to intercept any calls to chown
and do nothing.  This prevents errors and allows the same recipes to be
used for both native and target recipes.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 meta/classes/native.bbclass    |    2 ++
 meta/classes/nativesdk.bbclass |    2 ++
 scripts/native-intercept/chown |    2 ++
 3 files changed, 6 insertions(+), 0 deletions(-)
 create mode 100755 scripts/native-intercept/chown

diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index 90fcd13..11ec6dc 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -85,6 +85,8 @@ EXTRA_NATIVE_PKGCONFIG_PATH ?= ""
 PKG_CONFIG_PATH .= "${EXTRA_NATIVE_PKGCONFIG_PATH}"
 PKG_CONFIG_SYSROOT_DIR = ""
 
+PATH =. "${COREBASE}/scripts/native-intercept:"
+
 python native_virtclass_handler () {
     if not isinstance(e, bb.event.RecipePreFinalise):
         return
diff --git a/meta/classes/nativesdk.bbclass b/meta/classes/nativesdk.bbclass
index 3fe4bf9..a0302b9 100644
--- a/meta/classes/nativesdk.bbclass
+++ b/meta/classes/nativesdk.bbclass
@@ -54,6 +54,8 @@ FILES_${PN}-dbg += "${prefix}/.debug \
 export PKG_CONFIG_DIR = "${STAGING_DIR_HOST}${libdir}/pkgconfig"
 export PKG_CONFIG_SYSROOT_DIR = "${STAGING_DIR_HOST}"
 
+PATH =. "${COREBASE}/scripts/native-intercept:"
+
 python nativesdk_virtclass_handler () {
     if not isinstance(e, bb.event.RecipePreFinalise):
         return
diff --git a/scripts/native-intercept/chown b/scripts/native-intercept/chown
new file mode 100755
index 0000000..4f43271
--- /dev/null
+++ b/scripts/native-intercept/chown
@@ -0,0 +1,2 @@
+#! /bin/sh
+echo "Intercept $0: $@ -- do nothing"
-- 
1.7.3.4




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

* [PATCH 2/9] resolveconf: Fix file owners
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
  2011-06-23 18:19 ` [PATCH 1/9] native/nativesdk: Add a simple chown intercept command Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 3/9] base-passwd: Fix owners/groups Mark Hatle
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

The file ownership of various configuration files needs to be set to root:root
otherwise it inherits the user id of the build.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 .../resolvconf/resolvconf_1.48.bb                  |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-connectivity/resolvconf/resolvconf_1.48.bb b/meta/recipes-connectivity/resolvconf/resolvconf_1.48.bb
index cb8aaaf..507a233 100644
--- a/meta/recipes-connectivity/resolvconf/resolvconf_1.48.bb
+++ b/meta/recipes-connectivity/resolvconf/resolvconf_1.48.bb
@@ -11,7 +11,7 @@ AUTHOR = "Thomas Hood"
 HOMEPAGE = "http://packages.debian.org/resolvconf"
 DEPENDS = "bash"
 RDEPENDS_${PN} = "bash"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "${DEBIAN_MIRROR}/main/r/resolvconf/resolvconf_${PV}.tar.gz"
 
@@ -27,6 +27,7 @@ do_install () {
 	install -d ${D}${sysconfdir} ${D}${sbindir} ${D}${base_sbindir} ${D}${localstatedir}/volatile/run/resolvconf/interface
 	install -d ${D}${mandir}/man8 ${D}${docdir}/${P}
 	cp -pPR etc/* ${D}${sysconfdir}/
+	chown -R root:root ${D}${sysconfdir}/
 	install -m 0755 bin/resolvconf ${D}${base_sbindir}/
 	install -m 0644 README ${D}${docdir}/${P}/
 	install -m 0644 man/resolvconf.8 ${D}${mandir}/man8/
-- 
1.7.3.4




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

* [PATCH 3/9] base-passwd: Fix owners/groups
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
  2011-06-23 18:19 ` [PATCH 1/9] native/nativesdk: Add a simple chown intercept command Mark Hatle
  2011-06-23 18:19 ` [PATCH 2/9] resolveconf: Fix file owners Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 4/9] ghostscript: Fix owner/group of /etc/cups Mark Hatle
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

Fix the owners and groups of specific files copied from the developmen tree.
This resolves an issue where those files gain the user/group id of the build
user.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 .../recipes-core/base-passwd/base-passwd_3.5.22.bb |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb b/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
index 3315c68..7b1fdf1 100644
--- a/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
+++ b/meta/recipes-core/base-passwd/base-passwd_3.5.22.bb
@@ -1,7 +1,7 @@
 SUMMARY = "Base system master password/group files."
 DESCRIPTION = "The master copies of the user database files (/etc/passwd and /etc/group).  The update-passwd tool is also provided to keep the system databases synchronized with these master files."
 SECTION = "base"
-PR = "r2"
+PR = "r3"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
 
@@ -21,16 +21,16 @@ SSTATEPOSTINSTFUNCS += "base_passwd_sstate_postinst"
 
 do_install () {
 	install -d -m 755 ${D}${sbindir}
-	install -p -m 755 update-passwd ${D}${sbindir}/
+	install -o root -g root -p -m 755 update-passwd ${D}${sbindir}/
 	install -d -m 755 ${D}${mandir}/man8 ${D}${mandir}/pl/man8
 	install -p -m 644 man/update-passwd.8 ${D}${mandir}/man8/
 	install -p -m 644 man/update-passwd.pl.8 \
 		${D}${mandir}/pl/man8/update-passwd.8
 	gzip -9 ${D}${mandir}/man8/* ${D}${mandir}/pl/man8/*
 	install -d -m 755 ${D}${datadir}/base-passwd
-	install -p -m 644 passwd.master ${D}${datadir}/base-passwd/
-	install -p -m 644 group.master ${D}${datadir}/base-passwd/
-	install -p -m 644 ${S}/../login.defs ${D}${datadir}/base-passwd/login.defs
+	install -o root -g root -p -m 644 passwd.master ${D}${datadir}/base-passwd/
+	install -o root -g root -p -m 644 group.master ${D}${datadir}/base-passwd/
+	install -o root -g root -p -m 644 ${S}/../login.defs ${D}${datadir}/base-passwd/login.defs
 
 	install -d -m 755 ${D}${docdir}/${PN}
 	install -p -m 644 debian/changelog ${D}${docdir}/${PN}/
-- 
1.7.3.4




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

* [PATCH 4/9] ghostscript: Fix owner/group of /etc/cups
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
                   ` (2 preceding siblings ...)
  2011-06-23 18:19 ` [PATCH 3/9] base-passwd: Fix owners/groups Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig Mark Hatle
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

/etc/cups is owned by root:lp from the cups package, the associated
ghostscript was creating the /etc/cups directory as root:root.  /etc/cups
is the authoritative source.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 .../ghostscript/ghostscript_9.02.bb                |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb
index 3cb5485..02038ea 100644
--- a/meta/recipes-extended/ghostscript/ghostscript_9.02.bb
+++ b/meta/recipes-extended/ghostscript/ghostscript_9.02.bb
@@ -15,7 +15,7 @@ SECTION = "console/utils"
 LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d151214b3131251dfc9d858593acbd24"
 
-PR = "r2"
+PR = "r3"
 
 DEPENDS = "${PN}-native tiff jpeg fontconfig cups"
 DEPENDS_virtclass-native = ""
@@ -57,6 +57,8 @@ do_install_append () {
     mkdir -p ${D}${datadir}/ghostscript/${PV}/
     cp -r Resource ${D}${datadir}/ghostscript/${PV}/
     cp -r iccprofiles ${D}${datadir}/ghostscript/${PV}/
+
+    chown -R root:lp ${D}${sysconfdir}/cups
 }
 
 python do_patch_virtclass-native () {
-- 
1.7.3.4




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

* [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
                   ` (3 preceding siblings ...)
  2011-06-23 18:19 ` [PATCH 4/9] ghostscript: Fix owner/group of /etc/cups Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:10   ` Koen Kooi
  2011-06-23 18:19 ` [PATCH 6/9] tzdata: Ensure all files are owned by root:root Mark Hatle
                   ` (3 subsequent siblings)
  8 siblings, 1 reply; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb b/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb
index 61dab95..6170e65 100644
--- a/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb
+++ b/meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb
@@ -7,7 +7,7 @@ BUGTRACKER = "http://sourceforge.net/tracker/?group_id=183075&atid=903784"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://COPYING;md5=1c32c8e351f97e43e1ad6cf7f62de3bf \
                     file://src/netname.c;beginline=1;endline=27;md5=f8a8cd2cb25ac5aa16767364fb0e3c24"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/libtirpc/libtirpc-${PV}.tar.bz2"
 
@@ -15,3 +15,7 @@ SRC_URI[md5sum] = "d77eb15f464bf9d6e66259eaf78b2a4e"
 SRC_URI[sha256sum] = "ea77cadd63941fc4edbee7863d2c7094e6a18263d2a2c8922319aee91352ff41"
 
 inherit autotools
+
+do_install_append() {
+	chown root:root ${D}${sysconfdir}/netconfig
+}
-- 
1.7.3.4




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

* [PATCH 6/9] tzdata: Ensure all files are owned by root:root
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
                   ` (4 preceding siblings ...)
  2011-06-23 18:19 ` [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 7/9] gnome-doc-utils: Fix the owner/group on select files Mark Hatle
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 meta/recipes-extended/tzdata/tzdata_2011g.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/tzdata/tzdata_2011g.bb b/meta/recipes-extended/tzdata/tzdata_2011g.bb
index ed343c0..49847d3 100644
--- a/meta/recipes-extended/tzdata/tzdata_2011g.bb
+++ b/meta/recipes-extended/tzdata/tzdata_2011g.bb
@@ -6,7 +6,7 @@ LICENSE = "PD"
 LIC_FILES_CHKSUM = "file://asia;beginline=2;endline=3;md5=06468c0e84ef4d4c97045a4a29b08234"
 DEPENDS = "tzcode-native"
 
-PR = "r0"
+PR = "r1"
 
 RCONFLICTS= "timezones timezone-africa timezone-america timezone-antarctica \
              timezone-arctic timezone-asia timezone-atlantic \
@@ -42,7 +42,7 @@ do_install () {
         # libc is removing zoneinfo files from package
         cp -pP "${S}/zone.tab" ${D}${datadir}/zoneinfo
         cp -pP "${S}/iso3166.tab" ${D}${datadir}/zoneinfo
-
+	chown -R root:root ${D}
 }
 
 # Packages primarily organized by directory with a major city
-- 
1.7.3.4




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

* [PATCH 7/9] gnome-doc-utils: Fix the owner/group on select files
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
                   ` (5 preceding siblings ...)
  2011-06-23 18:19 ` [PATCH 6/9] tzdata: Ensure all files are owned by root:root Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 8/9] db: Fix file ownership Mark Hatle
  2011-06-23 18:19 ` [PATCH 9/9] python: Add python to the dependency to pygobject Mark Hatle
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

All of the files in ${datadir}/xml/gnome/xslt were being given the uid/gid
of the build user.  Fix this for the target case, avoid it in the native.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    3 +++
 meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb |    2 +-
 2 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
index b541753..62893ea 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
@@ -9,6 +9,9 @@ EXTRA_OECONF = "--disable-scrollkeeper"
 do_install_append() {
 	mkdir -p  ${D}${datadir}/xml/gnome/xslt/
 	cp -pPr ${S}/xslt/* ${D}${datadir}/xml/gnome/xslt/
+
+	echo ${PATH}
+	chown -R root:root ${D}
 }
 
 FILES_${PN} += "${datadir}/xml*"
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb b/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb
index e7bf6e9..d85697f 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb
@@ -1,7 +1,7 @@
 require gnome-doc-utils.inc
 LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=eb723b61539feef013de476e68b5c50a \
 		    file://COPYING.LGPL;md5=a6f89e2100d9b6cdffcea4f398e37343"
-PR = "r0"
+PR = "r1"
 
 SRC_URI += "file://xsltproc_nonet.patch"
 
-- 
1.7.3.4




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

* [PATCH 8/9] db: Fix file ownership
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
                   ` (6 preceding siblings ...)
  2011-06-23 18:19 ` [PATCH 7/9] gnome-doc-utils: Fix the owner/group on select files Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  2011-06-23 18:19 ` [PATCH 9/9] python: Add python to the dependency to pygobject Mark Hatle
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 meta/recipes-support/db/db_5.1.19.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-support/db/db_5.1.19.bb b/meta/recipes-support/db/db_5.1.19.bb
index fc87c31..a8ae1bd 100644
--- a/meta/recipes-support/db/db_5.1.19.bb
+++ b/meta/recipes-support/db/db_5.1.19.bb
@@ -98,6 +98,8 @@ do_install_append() {
 		test ! -d "${D}/${docdir}" || rm -rf "${D}/${docdir}"
 		mv "${D}/${prefix}/docs" "${D}/${docdir}"
 	fi
+
+	chown -R root:root ${D}
 }
 
 BBCLASSEXTEND = "native nativesdk"
-- 
1.7.3.4




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

* [PATCH 9/9] python: Add python to the dependency to pygobject
  2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
                   ` (7 preceding siblings ...)
  2011-06-23 18:19 ` [PATCH 8/9] db: Fix file ownership Mark Hatle
@ 2011-06-23 18:19 ` Mark Hatle
  8 siblings, 0 replies; 12+ messages in thread
From: Mark Hatle @ 2011-06-23 18:19 UTC (permalink / raw)
  To: openembedded-core

pygobject requires both python and pygobject-native for compilation.  Without
python pygobject may fail to compile.. and items that depend on pygobject will
fail to compile.

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
---
 .../python/python-pygobject_2.27.91.bb             |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
index 0160bbd..9ff2fe7 100644
--- a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
+++ b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
@@ -2,10 +2,10 @@ DESCRIPTION = "Python GObject bindings"
 SECTION = "devel/python"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
-DEPENDS = "python-pygobject-native-${PV} glib-2.0"
+DEPENDS = "python python-pygobject-native-${PV} glib-2.0"
 DEPENDS_virtclass-native = "glib-2.0-native"
 RDEPENDS_virtclass-native = ""
-PR = "r1"
+PR = "r2"
 
 MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
 
-- 
1.7.3.4




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

* Re: [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig
  2011-06-23 18:10   ` Koen Kooi
@ 2011-06-23 19:33     ` Khem Raj
  0 siblings, 0 replies; 12+ messages in thread
From: Khem Raj @ 2011-06-23 19:33 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Thu, Jun 23, 2011 at 11:10 AM, Koen Kooi <koen@dominion.thruhere.net> wrote:
>
> Op 23 jun 2011, om 20:19 heeft Mark Hatle het volgende geschreven:
>
>> Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
>> ---
>> meta/recipes-extended/libtirpc/libtirpc_0.2.1.bb |    6 +++++-
>
> Not related to this patch, but 0.2.2 is out and we'll need some more updates
> for (e)glibc 2.14
>

yes I already have 0.2.2 lined up.
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>



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

end of thread, other threads:[~2011-06-23 19:37 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-06-23 18:19 [PATCH 0/9] Revised patch set for fixing owners/groups Mark Hatle
2011-06-23 18:19 ` [PATCH 1/9] native/nativesdk: Add a simple chown intercept command Mark Hatle
2011-06-23 18:19 ` [PATCH 2/9] resolveconf: Fix file owners Mark Hatle
2011-06-23 18:19 ` [PATCH 3/9] base-passwd: Fix owners/groups Mark Hatle
2011-06-23 18:19 ` [PATCH 4/9] ghostscript: Fix owner/group of /etc/cups Mark Hatle
2011-06-23 18:19 ` [PATCH 5/9] libtirpc: Fix owner/group of /etc/netconfig Mark Hatle
2011-06-23 18:10   ` Koen Kooi
2011-06-23 19:33     ` Khem Raj
2011-06-23 18:19 ` [PATCH 6/9] tzdata: Ensure all files are owned by root:root Mark Hatle
2011-06-23 18:19 ` [PATCH 7/9] gnome-doc-utils: Fix the owner/group on select files Mark Hatle
2011-06-23 18:19 ` [PATCH 8/9] db: Fix file ownership Mark Hatle
2011-06-23 18:19 ` [PATCH 9/9] python: Add python to the dependency to pygobject Mark Hatle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.