* [PATCH 0/2] Fix QA warnings from ConnMan
@ 2012-07-06 11:39 Ross Burton
2012-07-06 11:39 ` [PATCH 1/2] connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES Ross Burton
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Ross Burton @ 2012-07-06 11:39 UTC (permalink / raw)
To: openembedded-core
ConnMan warns that /usr/lib/connman/plugins isn't shipped, so ship the empty
directory in the main package. Whilst there, remove some entirely pointless
entires in FILES.
The following changes since commit 5051e9837fa698e03d0a7a8a918ee7aa98409ce1:
bitbake: usermanual: Fix missing markup (2012-07-06 09:41:56 +0100)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib ross/connman
for you to fetch changes up to e7d865a01ec2b7f0aaf8bfd38d1604e9c1764207:
connman: ship the empty plugins directory in the connman package (2012-07-06 12:30:41 +0100)
----------------------------------------------------------------
Ross Burton (2):
connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES
connman: ship the empty plugins directory in the connman package
meta/recipes-connectivity/connman/connman.inc | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
Ross Burton (2):
connman: remove some obviously wrong (circa early-GNOME 2?)
directories from FILES
connman: ship the empty plugins directory in the connman package
meta/recipes-connectivity/connman/connman.inc | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
--
1.7.10
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 1/2] connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES 2012-07-06 11:39 [PATCH 0/2] Fix QA warnings from ConnMan Ross Burton @ 2012-07-06 11:39 ` Ross Burton 2012-07-06 11:39 ` [PATCH 2/2] connman: ship the empty plugins directory in the connman package Ross Burton 2012-07-09 16:55 ` [PATCH 0/2] Fix QA warnings from ConnMan Saul Wold 2 siblings, 0 replies; 4+ messages in thread From: Ross Burton @ 2012-07-06 11:39 UTC (permalink / raw) To: openembedded-core --- meta/recipes-connectivity/connman/connman.inc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index ae26689..73e7818 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc @@ -20,7 +20,7 @@ DEPENDS = "dbus glib-2.0 ppp iptables gnutls \ ${@base_contains('DISTRO_FEATURES', '3g','ofono', '', d)} \ " -INC_PR = "r9" +INC_PR = "r10" TIST = "--enable-tist" TIST_powerpc = "" @@ -118,9 +118,6 @@ RDEPENDS_${PN}-tests = "python-dbus" FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*.so.* \ ${sysconfdir} ${sharedstatedir} ${localstatedir} \ ${base_bindir}/* ${base_sbindir}/* ${base_libdir}/*.so* ${datadir}/${PN} \ - ${datadir}/pixmaps ${datadir}/applications \ - ${datadir}/idl ${datadir}/omf ${datadir}/sounds \ - ${libdir}/bonobo/servers \ ${datadir}/dbus-1/system-services/*" FILES_${PN}-dbg += "${libdir}/connman/*/.debug" -- 1.7.10 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] connman: ship the empty plugins directory in the connman package 2012-07-06 11:39 [PATCH 0/2] Fix QA warnings from ConnMan Ross Burton 2012-07-06 11:39 ` [PATCH 1/2] connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES Ross Burton @ 2012-07-06 11:39 ` Ross Burton 2012-07-09 16:55 ` [PATCH 0/2] Fix QA warnings from ConnMan Saul Wold 2 siblings, 0 replies; 4+ messages in thread From: Ross Burton @ 2012-07-06 11:39 UTC (permalink / raw) To: openembedded-core Otherwise we get a QA warning that /usr/lib/connman/packages isn't shipped. --- meta/recipes-connectivity/connman/connman.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/connman/connman.inc b/meta/recipes-connectivity/connman/connman.inc index 73e7818..12378e9 100644 --- a/meta/recipes-connectivity/connman/connman.inc +++ b/meta/recipes-connectivity/connman/connman.inc @@ -20,7 +20,7 @@ DEPENDS = "dbus glib-2.0 ppp iptables gnutls \ ${@base_contains('DISTRO_FEATURES', '3g','ofono', '', d)} \ " -INC_PR = "r10" +INC_PR = "r11" TIST = "--enable-tist" TIST_powerpc = "" @@ -99,7 +99,7 @@ python populate_packages_prepend() { hook = lambda file,pkg,b,c,d:packages.append((file,pkg)) plugin_dir = d.expand('${libdir}/connman/plugins/') plugin_name = d.expand('${PN}-plugin-%s') - do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, '${PN} plugin for %s', extra_depends='', hook=hook ) + do_split_packages(d, plugin_dir, '^(.*).so$', plugin_name, '${PN} plugin for %s', extra_depends='', hook=hook, prepend=True ) for (file, package) in packages: plugintype = package.split( '-' )[-1] if plugintype in depmap: @@ -116,6 +116,7 @@ FILES_${PN}-tests = "${bindir}/*-test ${libdir}/${BPN}/test/*" RDEPENDS_${PN}-tests = "python-dbus" FILES_${PN} = "${bindir}/* ${sbindir}/* ${libexecdir}/* ${libdir}/lib*.so.* \ + ${libdir}/connman/plugins \ ${sysconfdir} ${sharedstatedir} ${localstatedir} \ ${base_bindir}/* ${base_sbindir}/* ${base_libdir}/*.so* ${datadir}/${PN} \ ${datadir}/dbus-1/system-services/*" -- 1.7.10 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] Fix QA warnings from ConnMan 2012-07-06 11:39 [PATCH 0/2] Fix QA warnings from ConnMan Ross Burton 2012-07-06 11:39 ` [PATCH 1/2] connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES Ross Burton 2012-07-06 11:39 ` [PATCH 2/2] connman: ship the empty plugins directory in the connman package Ross Burton @ 2012-07-09 16:55 ` Saul Wold 2 siblings, 0 replies; 4+ messages in thread From: Saul Wold @ 2012-07-09 16:55 UTC (permalink / raw) To: Patches and discussions about the oe-core layer On 07/06/2012 04:39 AM, Ross Burton wrote: > ConnMan warns that /usr/lib/connman/plugins isn't shipped, so ship the empty > directory in the main package. Whilst there, remove some entirely pointless > entires in FILES. > > The following changes since commit 5051e9837fa698e03d0a7a8a918ee7aa98409ce1: > > bitbake: usermanual: Fix missing markup (2012-07-06 09:41:56 +0100) > > are available in the git repository at: > > git://git.yoctoproject.org/poky-contrib ross/connman > > for you to fetch changes up to e7d865a01ec2b7f0aaf8bfd38d1604e9c1764207: > > connman: ship the empty plugins directory in the connman package (2012-07-06 12:30:41 +0100) > > ---------------------------------------------------------------- > Ross Burton (2): > connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES > connman: ship the empty plugins directory in the connman package > > meta/recipes-connectivity/connman/connman.inc | 8 +++----- > 1 file changed, 3 insertions(+), 5 deletions(-) > > Ross Burton (2): > connman: remove some obviously wrong (circa early-GNOME 2?) > directories from FILES > connman: ship the empty plugins directory in the connman package > > meta/recipes-connectivity/connman/connman.inc | 8 +++----- > 1 file changed, 3 insertions(+), 5 deletions(-) > Merged into OE-Core Thanks Sau! ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-07-09 17:06 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-07-06 11:39 [PATCH 0/2] Fix QA warnings from ConnMan Ross Burton 2012-07-06 11:39 ` [PATCH 1/2] connman: remove some obviously wrong (circa early-GNOME 2?) directories from FILES Ross Burton 2012-07-06 11:39 ` [PATCH 2/2] connman: ship the empty plugins directory in the connman package Ross Burton 2012-07-09 16:55 ` [PATCH 0/2] Fix QA warnings from ConnMan Saul Wold
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.