* [meta-oe][meta-efl][PATCH 0/2] polkit and task-illume fix
@ 2012-02-20 22:13 Martin Jansa
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly Martin Jansa
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 2/2] task-x11-illume: change default ETHEME from e-wm-theme-illume to e-wm-theme-default Martin Jansa
0 siblings, 2 replies; 5+ messages in thread
From: Martin Jansa @ 2012-02-20 22:13 UTC (permalink / raw)
To: openembedded-devel
The following changes since commit 143367e4f584ea7054dca2a466f410a46d02e6b1:
busybox: create /etc/default on do_install (2012-02-20 22:55:28 +0100)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib jansa/pull
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=jansa/pull
Martin Jansa (2):
polkit: enable and disable systemd/consolekit support explicitly
task-x11-illume: change default ETHEME from e-wm-theme-illume to
e-wm-theme-default
meta-efl/recipes-efl/tasks/task-x11-illume.bb | 6 +++---
.../recipes-extended/polkit/polkit_0.104.bbappend | 7 +++++--
2 files changed, 8 insertions(+), 5 deletions(-)
--
1.7.8.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly
2012-02-20 22:13 [meta-oe][meta-efl][PATCH 0/2] polkit and task-illume fix Martin Jansa
@ 2012-02-20 22:13 ` Martin Jansa
2012-02-22 8:35 ` Koen Kooi
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 2/2] task-x11-illume: change default ETHEME from e-wm-theme-illume to e-wm-theme-default Martin Jansa
1 sibling, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2012-02-20 22:13 UTC (permalink / raw)
To: openembedded-devel
* people using sysvinit already have or can set something like
task-core-boot.bb does VIRTUAL-RUNTIME_init_manager ?= "sysvinit"
to disable systemd explicitly (so it's not picked by shlib when it's
available because other packages).
* and for the rest it will disable consolekit and enable systemd
explititly
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
.../recipes-extended/polkit/polkit_0.104.bbappend | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend b/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend
index 3c43970..d649f61 100644
--- a/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend
+++ b/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend
@@ -1,3 +1,6 @@
-DEPENDS += "systemd"
+PRINC := "${@int(PRINC) + 3}"
-PRINC = "1"
+PACKAGECONFIG ??= "${@base_contains('VIRTUAL-RUNTIME_init_manager', 'sysvinit', 'consolekit', 'systemd', d)}"
+PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd"
+# there is no --enable/--disable option for consolekit and it's not picked by shlibs, so add it to RDEPENDS
+PACKAGECONFIG[consolekit] = ",,,consolekit"
--
1.7.8.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-oe][meta-efl][PATCH 2/2] task-x11-illume: change default ETHEME from e-wm-theme-illume to e-wm-theme-default
2012-02-20 22:13 [meta-oe][meta-efl][PATCH 0/2] polkit and task-illume fix Martin Jansa
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly Martin Jansa
@ 2012-02-20 22:13 ` Martin Jansa
1 sibling, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2012-02-20 22:13 UTC (permalink / raw)
To: openembedded-devel
* e-wm-theme-illume is gone with illume1 (see b37564b7355af71595ac48b96bcf7d2087e47c73)
* found by accident when running distroless build, guess everybody is using own theme anyway
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
meta-efl/recipes-efl/tasks/task-x11-illume.bb | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta-efl/recipes-efl/tasks/task-x11-illume.bb b/meta-efl/recipes-efl/tasks/task-x11-illume.bb
index e197cc7..6557619 100644
--- a/meta-efl/recipes-efl/tasks/task-x11-illume.bb
+++ b/meta-efl/recipes-efl/tasks/task-x11-illume.bb
@@ -3,14 +3,14 @@ SECTION = "x11/wm"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${TOPDIR}/meta-openembedded/meta-efl/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
PV = "1.0"
-PR = "r1"
+PR = "r2"
# WORK IN PROGRESS
inherit task
-# Default illume theme
-ETHEME ?= "e-wm-theme-illume"
+# Default theme and config
+ETHEME ?= "e-wm-theme-default"
ECONFIG ?= "e-wm-config-illume2"
RDEPENDS_${PN} = "\
--
1.7.8.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly Martin Jansa
@ 2012-02-22 8:35 ` Koen Kooi
2012-02-22 8:56 ` Martin Jansa
0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2012-02-22 8:35 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 20-02-12 23:13, Martin Jansa schreef:
> * people using sysvinit already have or can set something like
> task-core-boot.bb does VIRTUAL-RUNTIME_init_manager ?= "sysvinit" to
> disable systemd explicitly (so it's not picked by shlib when it's
> available because other packages). * and for the rest it will disable
> consolekit and enable systemd explititly
>
> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> ---
> .../recipes-extended/polkit/polkit_0.104.bbappend | 7 +++++-- 1 files
> changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend
> b/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend index
> 3c43970..d649f61 100644 ---
> a/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend +++
> b/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend @@ -1,3 +1,6 @@
> -DEPENDS += "systemd" +PRINC := "${@int(PRINC) + 3}"
>
> -PRINC = "1" +PACKAGECONFIG ??=
> "${@base_contains('VIRTUAL-RUNTIME_init_manager', 'sysvinit',
> 'consolekit', 'systemd', d)}" +PACKAGECONFIG[systemd] =
> "--enable-systemd,--disable-systemd,systemd" +# there is no
> --enable/--disable option for consolekit and it's not picked by shlibs,
> so add it to RDEPENDS +PACKAGECONFIG[consolekit] = ",,,consolekit"
I really don't want to use runtime vars to trigger buildtime deps :(
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: GPGTools - http://gpgtools.org
iEYEARECAAYFAk9EqLAACgkQMkyGM64RGpF9nACeJIMiWeUkdZ1f7HlDT669DohK
xaEAoIbezxgzLUg97K500qpxDn1rPzH8
=XcOs
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly
2012-02-22 8:35 ` Koen Kooi
@ 2012-02-22 8:56 ` Martin Jansa
0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2012-02-22 8:56 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 2409 bytes --]
On Wed, Feb 22, 2012 at 09:35:09AM +0100, Koen Kooi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Op 20-02-12 23:13, Martin Jansa schreef:
> > * people using sysvinit already have or can set something like
> > task-core-boot.bb does VIRTUAL-RUNTIME_init_manager ?= "sysvinit" to
> > disable systemd explicitly (so it's not picked by shlib when it's
> > available because other packages). * and for the rest it will disable
> > consolekit and enable systemd explititly
> >
> > Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> ---
> > .../recipes-extended/polkit/polkit_0.104.bbappend | 7 +++++-- 1 files
> > changed, 5 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend
> > b/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend index
> > 3c43970..d649f61 100644 ---
> > a/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend +++
> > b/meta-oe/recipes-extended/polkit/polkit_0.104.bbappend @@ -1,3 +1,6 @@
> > -DEPENDS += "systemd" +PRINC := "${@int(PRINC) + 3}"
> >
> > -PRINC = "1" +PACKAGECONFIG ??=
> > "${@base_contains('VIRTUAL-RUNTIME_init_manager', 'sysvinit',
> > 'consolekit', 'systemd', d)}" +PACKAGECONFIG[systemd] =
> > "--enable-systemd,--disable-systemd,systemd" +# there is no
> > --enable/--disable option for consolekit and it's not picked by shlibs,
> > so add it to RDEPENDS +PACKAGECONFIG[consolekit] = ",,,consolekit"
>
> I really don't want to use runtime vars to trigger buildtime deps :(
But as VIRTUAL-RUNTIME_* should be consistent for whole build, then you
can consider them as distro level PREFERRED_PROVIDERS for runtime.
But if you want I'll send v2 with just PACKAGECONFIG definition changed
to
PACKAGECONFIG ??= "systemd"
so that people with sysvinit can still easily overwrite it from .bbappend.
Cheers,
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.11 (Darwin)
> Comment: GPGTools - http://gpgtools.org
>
> iEYEARECAAYFAk9EqLAACgkQMkyGM64RGpF9nACeJIMiWeUkdZ1f7HlDT669DohK
> xaEAoIbezxgzLUg97K500qpxDn1rPzH8
> =XcOs
> -----END PGP SIGNATURE-----
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-02-22 9:04 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-20 22:13 [meta-oe][meta-efl][PATCH 0/2] polkit and task-illume fix Martin Jansa
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 1/2] polkit: enable and disable systemd/consolekit support explicitly Martin Jansa
2012-02-22 8:35 ` Koen Kooi
2012-02-22 8:56 ` Martin Jansa
2012-02-20 22:13 ` [meta-oe][meta-efl][PATCH 2/2] task-x11-illume: change default ETHEME from e-wm-theme-illume to e-wm-theme-default 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.