From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.dream-property.net (mail.dream-property.net [82.149.226.172]) by mail.openembedded.org (Postfix) with ESMTP id 3AD7E65C7B for ; Thu, 5 Mar 2015 11:01:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.dream-property.net (Postfix) with ESMTP id 740433151408 for ; Thu, 5 Mar 2015 12:01:15 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail.dream-property.net Received: from mail.dream-property.net ([127.0.0.1]) by localhost (mail.dream-property.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id A8Mq0lfT2fzl for ; Thu, 5 Mar 2015 12:01:09 +0100 (CET) Received: from [172.22.22.61] (55d44e54.access.ecotel.net [85.212.78.84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.dream-property.net (Postfix) with ESMTPSA id 70C623151406 for ; Thu, 5 Mar 2015 12:01:09 +0100 (CET) Message-ID: <54F83775.5040604@opendreambox.org> Date: Thu, 05 Mar 2015 12:01:09 +0100 From: Andreas Oberritter User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: openembedded-core@lists.openembedded.org References: <1425504462-6979-1-git-send-email-bruno.bottazzini@intel.com> <1425504462-6979-2-git-send-email-bruno.bottazzini@intel.com> In-Reply-To: <1425504462-6979-2-git-send-email-bruno.bottazzini@intel.com> Subject: Re: [PATCH 1/3] dbus: split tools package. X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2015 11:01:16 -0000 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Hello Gustavo, On 04.03.2015 22:27, Bruno Bottazzini wrote: > From: Gustavo Sverzut Barbieri > > Most tools are not required if one is launching a simple daemon. > The user will be able to exclude dbus-tool and save some space in his > build > > Signed-off-by: Bruno Bottazzini > --- > meta/recipes-core/dbus/dbus.inc | 10 ++++++++-- > 1 file changed, 8 insertions(+), 2 deletions(-) > > diff --git a/meta/recipes-core/dbus/dbus.inc b/meta/recipes-core/dbus/dbus.inc > index fb5d017..f975dc9 100644 > --- a/meta/recipes-core/dbus/dbus.inc > +++ b/meta/recipes-core/dbus/dbus.inc > @@ -39,13 +39,13 @@ CONFFILES_${PN} = "${sysconfdir}/dbus-1/system.conf ${sysconfdir}/dbus-1/session > > DEBIANNAME_${PN} = "dbus-1" > > -PACKAGES =+ "${PN}-lib" > +PACKAGES =+ "${PN}-lib ${PN}-tools" > > OLDPKGNAME = "dbus-x11" > OLDPKGNAME_class-nativesdk = "" > > # for compatibility > -RPROVIDES_${PN} = "${OLDPKGNAME}" > +RPROVIDES_${PN} = "${OLDPKGNAME} ${PN}-native-tools-native" this line seems to be wrong. What are you trying to solve with it? Regards, Andreas > RREPLACES_${PN} += "${OLDPKGNAME}" > > FILES_${PN} = "${bindir}/dbus-daemon* \ > @@ -64,6 +64,12 @@ FILES_${PN} = "${bindir}/dbus-daemon* \ > FILES_${PN}-lib = "${libdir}/lib*.so.*" > RRECOMMENDS_${PN}-lib = "${PN}" > FILES_${PN}-dev += "${libdir}/dbus-1.0/include ${bindir}/dbus-glib-tool" > +FILES_${PN}-tools += "${bindir}/dbus-uuidgen \ > + ${bindir}/dbus-cleanup-sockets \ > + ${bindir}/dbus-monitor \ > + ${bindir}/dbus-launch \ > + ${bindir}/dbus-run-session" > +RRECOMMENDS_${PN} = "${PN}-tools" > > pkg_postinst_dbus() { > # If both systemd and sysvinit are enabled, mask the dbus-1 init script >