* [meta-oe][PATCH 0/4] systemd related fixes and qconnman bump
@ 2011-12-13 10:43 Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 1/4] systemd-systemctl-native: add support to recursive services Otavio Salvador
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Otavio Salvador @ 2011-12-13 10:43 UTC (permalink / raw)
To: openembedded-devel
The following changes since commit 7ad9db8b3b6dd8fb9f85032b02344036015a9698:
gnome-panel : Fix format of LICENSE field. (2011-12-12 18:45:06 +0100)
are available in the git repository at:
git://github.com/OSSystems/meta-oe master
https://github.com/OSSystems/meta-oe/tree/master
Otavio Salvador (4):
systemd-systemctl-native: add support to recursive services
dropbear: convert PR to use PRINC on bbappend
dropbear: bump epoch to ensure an upgrade path and cleanup packaging
qconnman: bump SRCREV
.../dropbear/dropbear_2011.54.bbappend | 13 ++++---------
.../systemd/systemd-systemctl-native.bb | 2 ++
.../systemd/systemd-systemctl-native/systemctl | 8 ++++++++
meta-oe/recipes-qt/qconnman/qconnman.inc | 2 +-
4 files changed, 15 insertions(+), 10 deletions(-)
--
1.7.2.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [meta-oe][PATCH 1/4] systemd-systemctl-native: add support to recursive services
2011-12-13 10:43 [meta-oe][PATCH 0/4] systemd related fixes and qconnman bump Otavio Salvador
@ 2011-12-13 10:43 ` Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 2/4] dropbear: convert PR to use PRINC on bbappend Otavio Salvador
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2011-12-13 10:43 UTC (permalink / raw)
To: openembedded-devel
Some services can reference others for installation thought the Also
key; systemctl now handles it calling itself recursively for each
service.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
.../systemd/systemd-systemctl-native.bb | 2 ++
.../systemd/systemd-systemctl-native/systemctl | 8 ++++++++
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/meta-oe/recipes-core/systemd/systemd-systemctl-native.bb b/meta-oe/recipes-core/systemd/systemd-systemctl-native.bb
index 3ee757e..dcd67ee 100644
--- a/meta-oe/recipes-core/systemd/systemd-systemctl-native.bb
+++ b/meta-oe/recipes-core/systemd/systemd-systemctl-native.bb
@@ -3,6 +3,8 @@ DESCRIPTION = "Wrapper to enable of systemd services"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58"
+PR = "r1"
+
inherit native
SRC_URI = "file://systemctl"
diff --git a/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl b/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl
index 1fc77fd..54c1a18 100755
--- a/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl
+++ b/meta-oe/recipes-core/systemd/systemd-systemctl-native/systemctl
@@ -49,3 +49,11 @@ for r in $wanted_by; do
ln -s $service_file $ROOT/etc/systemd/system/$r.wants
echo "Enabled $service for $wanted_by."
done
+
+# call us for the other required scripts
+also=$(grep Also $ROOT/$service_file \
+ | sed 's,Also=,,g' \
+ | tr ',' '\n')
+for a in $also; do
+ $0 --root=$ROOT enable $a
+done
--
1.7.2.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [meta-oe][PATCH 2/4] dropbear: convert PR to use PRINC on bbappend
2011-12-13 10:43 [meta-oe][PATCH 0/4] systemd related fixes and qconnman bump Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 1/4] systemd-systemctl-native: add support to recursive services Otavio Salvador
@ 2011-12-13 10:43 ` Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 4/4] qconnman: bump SRCREV Otavio Salvador
3 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2011-12-13 10:43 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
.../dropbear/dropbear_2011.54.bbappend | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend b/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
index a642235..874a7d4 100644
--- a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
+++ b/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
@@ -1,6 +1,6 @@
inherit systemd
-PRINC = "1"
+PRINC := "${@int(PRINC) + 1}"
# look for files in the layer first
FILESEXTRAPATHS := "${THISDIR}/${PN}"
--
1.7.2.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging
2011-12-13 10:43 [meta-oe][PATCH 0/4] systemd related fixes and qconnman bump Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 1/4] systemd-systemctl-native: add support to recursive services Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 2/4] dropbear: convert PR to use PRINC on bbappend Otavio Salvador
@ 2011-12-13 10:43 ` Otavio Salvador
2011-12-13 18:45 ` Koen Kooi
2011-12-13 10:43 ` [meta-oe][PATCH 4/4] qconnman: bump SRCREV Otavio Salvador
3 siblings, 1 reply; 8+ messages in thread
From: Otavio Salvador @ 2011-12-13 10:43 UTC (permalink / raw)
To: openembedded-devel
An old package called dropbear-systemd, at version v1, might be
available on the feed and thus our binary package won't be used. To
fix this the epoch has been bumped to 1.
The symbolic link required to disable the sysvinit init script is now
done during the do_install task so making the recipe simple.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
.../dropbear/dropbear_2011.54.bbappend | 11 +++--------
1 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend b/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
index 874a7d4..3f2fa29 100644
--- a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
+++ b/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
@@ -1,5 +1,7 @@
inherit systemd
+PE = "1"
+
PRINC := "${@int(PRINC) + 1}"
# look for files in the layer first
@@ -17,17 +19,10 @@ do_install_append() {
install -m 0644 ${WORKDIR}/dropbearkey.service ${D}${base_libdir}/systemd/system/
install -m 0644 ${WORKDIR}/dropbear@.service ${D}${base_libdir}/systemd/system/
install -m 0644 ${WORKDIR}/dropbear.socket ${D}${base_libdir}/systemd/system/
+ ln -sf /dev/null ${D}${base_libdir}/systemd/system/dropbear.service
}
PACKAGES += "${PN}-systemd"
RDEPENDS_${PN}-systemd += "dropbear"
FILES_${PN}-systemd = "${base_libdir}/systemd"
-
-pkg_postinst_${PN}-systemd_append() {
-ln -sf /dev/null $D${base_libdir}/systemd/system/dropbear.service
-}
-
-pkg_postrm_${PN}-systemd_append() {
-rm -f ${base_libdir}/systemd/system/dropbear.service
-}
--
1.7.2.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [meta-oe][PATCH 4/4] qconnman: bump SRCREV
2011-12-13 10:43 [meta-oe][PATCH 0/4] systemd related fixes and qconnman bump Otavio Salvador
` (2 preceding siblings ...)
2011-12-13 10:43 ` [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging Otavio Salvador
@ 2011-12-13 10:43 ` Otavio Salvador
3 siblings, 0 replies; 8+ messages in thread
From: Otavio Salvador @ 2011-12-13 10:43 UTC (permalink / raw)
To: openembedded-devel
* add translation support
* doesn't allow simultaneous connections
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
---
meta-oe/recipes-qt/qconnman/qconnman.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta-oe/recipes-qt/qconnman/qconnman.inc b/meta-oe/recipes-qt/qconnman/qconnman.inc
index 280a002..06ad5fd 100644
--- a/meta-oe/recipes-qt/qconnman/qconnman.inc
+++ b/meta-oe/recipes-qt/qconnman/qconnman.inc
@@ -9,7 +9,7 @@ PR = "r1"
inherit autotools
PV = "0.0+gitr${SRCPV}"
-SRCREV = "9bab120f426e41552c369b7030414c792dd25a91"
+SRCREV = "f976b18c7c5584627224784801803e9fd3ebe0ff"
SRC_URI = "git://github.com/OSSystems/qconnman.git"
S = "${WORKDIR}/git/"
--
1.7.2.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging
2011-12-13 10:43 ` [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging Otavio Salvador
@ 2011-12-13 18:45 ` Koen Kooi
2011-12-13 18:51 ` Otavio Salvador
0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2011-12-13 18:45 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 13-12-11 10:43, Otavio Salvador schreef:
> An old package called dropbear-systemd, at version v1, might be available
> on the feed and thus our binary package won't be used. To fix this the
> epoch has been bumped to 1.
>
> The symbolic link required to disable the sysvinit init script is now
> done during the do_install task so making the recipe simple.
>
> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> ---
> .../dropbear/dropbear_2011.54.bbappend | 11 +++-------- 1
> files changed, 3 insertions(+), 8 deletions(-)
>
> diff --git a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend
> b/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend index
> 874a7d4..3f2fa29 100644 ---
> a/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend +++
> b/meta-oe/recipes-core/dropbear/dropbear_2011.54.bbappend @@ -1,5 +1,7
> @@ inherit systemd
>
> +PE = "1"
I'd really like to avoid PE in bbappends for obvious reasons. Can we get
this into OE-core instead?
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: GPGTools - http://gpgtools.org
iEYEARECAAYFAk7nnT8ACgkQMkyGM64RGpFQvwCgnk3I8913J+gJDNvLyseDcPvo
a94Anji8g64EOfO/dGvomaPUybz0O412
=iKue
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging
2011-12-13 18:45 ` Koen Kooi
@ 2011-12-13 18:51 ` Otavio Salvador
2011-12-15 8:28 ` Koen Kooi
0 siblings, 1 reply; 8+ messages in thread
From: Otavio Salvador @ 2011-12-13 18:51 UTC (permalink / raw)
To: openembedded-devel
On Tue, Dec 13, 2011 at 16:45, Koen Kooi <koen@dominion.thruhere.net> wrote:
> I'd really like to avoid PE in bbappends for obvious reasons. Can we get
> this into OE-core instead?
>
I can send a patch to them for this but in meanwhile this ought to be
merged as currently dropbear is at broken state.
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging
2011-12-13 18:51 ` Otavio Salvador
@ 2011-12-15 8:28 ` Koen Kooi
0 siblings, 0 replies; 8+ messages in thread
From: Koen Kooi @ 2011-12-15 8:28 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Op 13-12-11 19:51, Otavio Salvador schreef:
> On Tue, Dec 13, 2011 at 16:45, Koen Kooi <koen@dominion.thruhere.net>
> wrote:
>
>> I'd really like to avoid PE in bbappends for obvious reasons. Can we
>> get this into OE-core instead?
>>
>
> I can send a patch to them for this but in meanwhile this ought to be
> merged as currently dropbear is at broken state.
No, a PE should only get added once and with care.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (Darwin)
Comment: GPGTools - http://gpgtools.org
iEYEARECAAYFAk7pr6IACgkQMkyGM64RGpHgjwCfZeKt8oSrufiyWEMlWOTnp6D3
lIAAn0MKN4wpytvMSiyfbg0dkYnN2O5V
=86zF
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-12-15 8:35 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-13 10:43 [meta-oe][PATCH 0/4] systemd related fixes and qconnman bump Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 1/4] systemd-systemctl-native: add support to recursive services Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 2/4] dropbear: convert PR to use PRINC on bbappend Otavio Salvador
2011-12-13 10:43 ` [meta-oe][PATCH 3/4] dropbear: bump epoch to ensure an upgrade path and cleanup packaging Otavio Salvador
2011-12-13 18:45 ` Koen Kooi
2011-12-13 18:51 ` Otavio Salvador
2011-12-15 8:28 ` Koen Kooi
2011-12-13 10:43 ` [meta-oe][PATCH 4/4] qconnman: bump SRCREV Otavio Salvador
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.