* [PATCH][oe-core 0/3] Small fixes sysstat, squashfs-tools, gconf
@ 2011-11-30 22:56 Martin Jansa
2011-11-30 22:56 ` [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh Martin Jansa
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Martin Jansa @ 2011-11-30 22:56 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 36654d6d393cb8c8a545835184a96be4ae0c885d:
grub: Use COMPATIBLE_HOST (2011-11-30 22:21:53 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib jansa/pull
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/pull
Martin Jansa (3):
sysstat: don't run populate-volatile.sh update in do_rootfs or
without populate-volatile.sh
squashfs-tools: fix PR, those should start with 'r'
gconf: add polkit to DEPENDS only for target recipe and disable
default-service for native
.../squashfs-tools/squashfs-tools_4.2.bb | 2 +-
meta/recipes-extended/sysstat/sysstat.inc | 6 +++++-
meta/recipes-extended/sysstat/sysstat_10.0.2.bb | 2 +-
meta/recipes-gnome/gnome/gconf_3.2.3.bb | 10 +++++++---
4 files changed, 14 insertions(+), 6 deletions(-)
--
1.7.8.rc4
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh
2011-11-30 22:56 [PATCH][oe-core 0/3] Small fixes sysstat, squashfs-tools, gconf Martin Jansa
@ 2011-11-30 22:56 ` Martin Jansa
2011-11-30 23:33 ` Richard Purdie
2011-11-30 22:57 ` [PATCH][oe-core 2/3] squashfs-tools: fix PR, those should start with 'r' Martin Jansa
2011-11-30 22:57 ` [PATCH][oe-core 3/3] gconf: add polkit to DEPENDS only for target recipe and disable default-service for native Martin Jansa
2 siblings, 1 reply; 7+ messages in thread
From: Martin Jansa @ 2011-11-30 22:56 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
meta/recipes-extended/sysstat/sysstat.inc | 6 +++++-
meta/recipes-extended/sysstat/sysstat_10.0.2.bb | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc
index 2936f96..5e0f7af 100644
--- a/meta/recipes-extended/sysstat/sysstat.inc
+++ b/meta/recipes-extended/sysstat/sysstat.inc
@@ -22,7 +22,11 @@ do_install() {
}
pkg_postinst_${PN} () {
- /etc/init.d/populate-volatile.sh update
+ if [ "x$D" != "x" ]; then
+ if [ -e /etc/init.d/populate-volatile.sh ]; then
+ /etc/init.d/populate-volatile.sh update
+ fi
+ fi
}
diff --git a/meta/recipes-extended/sysstat/sysstat_10.0.2.bb b/meta/recipes-extended/sysstat/sysstat_10.0.2.bb
index bd559d8..7b57bc8 100644
--- a/meta/recipes-extended/sysstat/sysstat_10.0.2.bb
+++ b/meta/recipes-extended/sysstat/sysstat_10.0.2.bb
@@ -2,7 +2,7 @@ require sysstat.inc
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
-PR = "r0"
+PR = "r1"
--
1.7.8.rc4
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh
2011-11-30 22:56 ` [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh Martin Jansa
@ 2011-11-30 23:33 ` Richard Purdie
2011-11-30 23:50 ` [PATCH] " Martin Jansa
2011-11-30 23:51 ` [PATCH][oe-core 1/3] " Martin Jansa
0 siblings, 2 replies; 7+ messages in thread
From: Richard Purdie @ 2011-11-30 23:33 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Wed, 2011-11-30 at 23:56 +0100, Martin Jansa wrote:
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> ---
> meta/recipes-extended/sysstat/sysstat.inc | 6 +++++-
> meta/recipes-extended/sysstat/sysstat_10.0.2.bb | 2 +-
> 2 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc
> index 2936f96..5e0f7af 100644
> --- a/meta/recipes-extended/sysstat/sysstat.inc
> +++ b/meta/recipes-extended/sysstat/sysstat.inc
> @@ -22,7 +22,11 @@ do_install() {
> }
>
> pkg_postinst_${PN} () {
> - /etc/init.d/populate-volatile.sh update
> + if [ "x$D" != "x" ]; then
Is that really what you mean?
> + if [ -e /etc/init.d/populate-volatile.sh ]; then
> + /etc/init.d/populate-volatile.sh update
> + fi
> + fi
> }
>
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh
2011-11-30 23:33 ` Richard Purdie
@ 2011-11-30 23:50 ` Martin Jansa
2011-11-30 23:51 ` [PATCH][oe-core 1/3] " Martin Jansa
1 sibling, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-11-30 23:50 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
meta/recipes-extended/sysstat/sysstat.inc | 7 ++++++-
meta/recipes-extended/sysstat/sysstat_10.0.2.bb | 2 +-
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc
index 2936f96..ca40ab5 100644
--- a/meta/recipes-extended/sysstat/sysstat.inc
+++ b/meta/recipes-extended/sysstat/sysstat.inc
@@ -22,7 +22,12 @@ do_install() {
}
pkg_postinst_${PN} () {
- /etc/init.d/populate-volatile.sh update
+ if [ -n "$D" ]; then
+ exit 1
+ fi
+ if [ -e /etc/init.d/populate-volatile.sh ]; then
+ /etc/init.d/populate-volatile.sh update
+ fi
}
diff --git a/meta/recipes-extended/sysstat/sysstat_10.0.2.bb b/meta/recipes-extended/sysstat/sysstat_10.0.2.bb
index bd559d8..7b57bc8 100644
--- a/meta/recipes-extended/sysstat/sysstat_10.0.2.bb
+++ b/meta/recipes-extended/sysstat/sysstat_10.0.2.bb
@@ -2,7 +2,7 @@ require sysstat.inc
LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
-PR = "r0"
+PR = "r1"
--
1.7.8.rc4
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh
2011-11-30 23:33 ` Richard Purdie
2011-11-30 23:50 ` [PATCH] " Martin Jansa
@ 2011-11-30 23:51 ` Martin Jansa
1 sibling, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-11-30 23:51 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 1409 bytes --]
On Wed, Nov 30, 2011 at 11:33:53PM +0000, Richard Purdie wrote:
> On Wed, 2011-11-30 at 23:56 +0100, Martin Jansa wrote:
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
> > ---
> > meta/recipes-extended/sysstat/sysstat.inc | 6 +++++-
> > meta/recipes-extended/sysstat/sysstat_10.0.2.bb | 2 +-
> > 2 files changed, 6 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc
> > index 2936f96..5e0f7af 100644
> > --- a/meta/recipes-extended/sysstat/sysstat.inc
> > +++ b/meta/recipes-extended/sysstat/sysstat.inc
> > @@ -22,7 +22,11 @@ do_install() {
> > }
> >
> > pkg_postinst_${PN} () {
> > - /etc/init.d/populate-volatile.sh update
> > + if [ "x$D" != "x" ]; then
>
> Is that really what you mean?
Ah, sorry, you're right. Fixed in branch and sent here.
>
> > + if [ -e /etc/init.d/populate-volatile.sh ]; then
> > + /etc/init.d/populate-volatile.sh update
> > + fi
> > + fi
> > }
> >
>
> Cheers,
>
> Richard
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH][oe-core 2/3] squashfs-tools: fix PR, those should start with 'r'
2011-11-30 22:56 [PATCH][oe-core 0/3] Small fixes sysstat, squashfs-tools, gconf Martin Jansa
2011-11-30 22:56 ` [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh Martin Jansa
@ 2011-11-30 22:57 ` Martin Jansa
2011-11-30 22:57 ` [PATCH][oe-core 3/3] gconf: add polkit to DEPENDS only for target recipe and disable default-service for native Martin Jansa
2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-11-30 22:57 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
.../squashfs-tools/squashfs-tools_4.2.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.2.bb b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.2.bb
index 6691797..a2ed8ba 100644
--- a/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.2.bb
+++ b/meta/recipes-devtools/squashfs-tools/squashfs-tools_4.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://../COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
file://../../7zC.txt;beginline=12;endline=16;md5=2056cd6d919ebc3807602143c7449a7c \
"
DEPENDS = "attr zlib xz"
-PR = "0"
+PR = "r0"
SRC_URI = "${SOURCEFORGE_MIRROR}/squashfs/squashfs${PV}.tar.gz;name=squashfs \
http://downloads.sourceforge.net/sevenzip/lzma465.tar.bz2;name=lzma \
--
1.7.8.rc4
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH][oe-core 3/3] gconf: add polkit to DEPENDS only for target recipe and disable default-service for native
2011-11-30 22:56 [PATCH][oe-core 0/3] Small fixes sysstat, squashfs-tools, gconf Martin Jansa
2011-11-30 22:56 ` [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh Martin Jansa
2011-11-30 22:57 ` [PATCH][oe-core 2/3] squashfs-tools: fix PR, those should start with 'r' Martin Jansa
@ 2011-11-30 22:57 ` Martin Jansa
2 siblings, 0 replies; 7+ messages in thread
From: Martin Jansa @ 2011-11-30 22:57 UTC (permalink / raw)
To: openembedded-core
* gnome-common-native is needed because gnomebase.bbclass does only
DEPENDS += "gnome-common"
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
meta/recipes-gnome/gnome/gconf_3.2.3.bb | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-gnome/gnome/gconf_3.2.3.bb b/meta/recipes-gnome/gnome/gconf_3.2.3.bb
index aa9da78..cdc7a35 100644
--- a/meta/recipes-gnome/gnome/gconf_3.2.3.bb
+++ b/meta/recipes-gnome/gnome/gconf_3.2.3.bb
@@ -3,9 +3,10 @@ SECTION = "x11/gnome"
LICENSE = "LGPLv2+"
LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
-DEPENDS = "glib-2.0 dbus dbus-glib libxml2 intltool-native"
+DEPENDS = "glib-2.0 dbus dbus-glib libxml2 intltool-native polkit"
+DEPENDS_virtclass-native = "glib-2.0-native dbus-native dbus-glib-native libxml2-native intltool-native gnome-common-native"
-PR = "r1"
+PR = "r2"
inherit gnomebase
@@ -18,7 +19,10 @@ SRC_URI[archive.sha256sum] = "52008a82a847527877d9e1e549a351c86cc53cada4733b8a70
S = "${WORKDIR}/GConf-${PV}"
-EXTRA_OECONF = "--disable-gtk-doc --disable-gtk --enable-shared --disable-static --enable-debug=yes --disable-introspection --disable-orbit --with-openldap=no"
+POLKIT_OECONF = "--enable-defaults-service"
+POLKIT_OECONF_virtclass-native = "--disable-defaults-service"
+EXTRA_OECONF = "--disable-gtk-doc --disable-gtk --enable-shared --disable-static --enable-debug=yes \
+ --disable-introspection --disable-orbit --with-openldap=no ${POLKIT_OECONF}"
do_configure_prepend () {
touch gtk-doc.make
--
1.7.8.rc4
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2011-11-30 23:58 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-30 22:56 [PATCH][oe-core 0/3] Small fixes sysstat, squashfs-tools, gconf Martin Jansa
2011-11-30 22:56 ` [PATCH][oe-core 1/3] sysstat: don't run populate-volatile.sh update in do_rootfs or without populate-volatile.sh Martin Jansa
2011-11-30 23:33 ` Richard Purdie
2011-11-30 23:50 ` [PATCH] " Martin Jansa
2011-11-30 23:51 ` [PATCH][oe-core 1/3] " Martin Jansa
2011-11-30 22:57 ` [PATCH][oe-core 2/3] squashfs-tools: fix PR, those should start with 'r' Martin Jansa
2011-11-30 22:57 ` [PATCH][oe-core 3/3] gconf: add polkit to DEPENDS only for target recipe and disable default-service for native Martin Jansa
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.