diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2010-06-02 15:04:25 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-06-03 07:33:27 +0200 |
commit | d4276bed389b7db06db58c7acebb83f92bff86a5 (patch) | |
tree | 2386574b6ab0c36a58a314a24d31f6b5c9291a65 /recipes/fuse | |
parent | 823aa270059259ca619e21a5d9b22e86afb12f3b (diff) |
recipes: conform to OE packaging guidelines with RDEPENDS/RRECOMMENDS
* there is probably very few cases when it's needed without _${PN},
if you find one in attached patch, please enlighten me
* usually we want those only for ${PN} not for all ${PACKAGES} ie ${PN}-dev, ${PN)-doc etc
* there is a check for this in recipe-sanity.bclass
* there is maybe few possible fixes also in bbclasses
cpan-base.bbclass:RDEPENDS += "${@["perl", ""][(bb.data.inherits_class('native', d))]}"
distutils-base.bbclass:RDEPENDS += "python-core"
gtk-icon-cache.bbclass:RDEPENDS += "hicolor-icon-theme"
image.bbclass:RDEPENDS += "${IMAGE_INSTALL} ${IMAGE_BOOT}"
module.bbclass:RDEPENDS += "kernel (${KERNEL_VERSION}) update-modules"
?opie_i18n.bbclass: rdepends = bb.data.getVar("RDEPENDS", d, 1)
?opie_i18n.bbclass: bb.data.setVar('RDEPENDS_%s' % x[0].lower(), pn, d)
?opie_i18n.bbclass: bb.data.setVar('RDEPENDS', rdepends, d)
rubyextension.bbclass:RDEPENDS += "ruby"
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Acked-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/fuse')
-rw-r--r-- | recipes/fuse/curlftpfs_0.9.2.bb | 2 | ||||
-rw-r--r-- | recipes/fuse/fuse-module_2.6.5.bb | 2 | ||||
-rw-r--r-- | recipes/fuse/fuse-module_2.7.1.bb | 2 | ||||
-rw-r--r-- | recipes/fuse/fuse-module_2.7.4.bb | 2 | ||||
-rw-r--r-- | recipes/fuse/gmailfs.inc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/recipes/fuse/curlftpfs_0.9.2.bb b/recipes/fuse/curlftpfs_0.9.2.bb index 86009b6026..ae9ae91998 100644 --- a/recipes/fuse/curlftpfs_0.9.2.bb +++ b/recipes/fuse/curlftpfs_0.9.2.bb @@ -5,7 +5,7 @@ SECTION = "console/network" PRIORITY = "optional" LICENSE = "GPLv2" DEPENDS = "glib-2.0 fuse curl" -RDEPENDS += " libcurl " +RDEPENDS_${PN} += " libcurl " PR = "r0" SRC_URI = "${SOURCEFORGE_MIRROR}/curlftpfs/${P}.tar.gz" diff --git a/recipes/fuse/fuse-module_2.6.5.bb b/recipes/fuse/fuse-module_2.6.5.bb index 19477708c5..3fea537536 100644 --- a/recipes/fuse/fuse-module_2.6.5.bb +++ b/recipes/fuse/fuse-module_2.6.5.bb @@ -1,6 +1,6 @@ require fuse.inc -RRECOMMENDS = "fuse" +RRECOMMENDS_${PN} = "fuse" PR = "r1" S = "${WORKDIR}/fuse-${PV}" diff --git a/recipes/fuse/fuse-module_2.7.1.bb b/recipes/fuse/fuse-module_2.7.1.bb index 3342a73a91..d3a4f471d8 100644 --- a/recipes/fuse/fuse-module_2.7.1.bb +++ b/recipes/fuse/fuse-module_2.7.1.bb @@ -1,6 +1,6 @@ require fuse.inc -RRECOMMENDS = "fuse" +RRECOMMENDS_${PN} = "fuse" PR = "r0" S = "${WORKDIR}/fuse-${PV}" diff --git a/recipes/fuse/fuse-module_2.7.4.bb b/recipes/fuse/fuse-module_2.7.4.bb index 24a7520506..ee2afd857e 100644 --- a/recipes/fuse/fuse-module_2.7.4.bb +++ b/recipes/fuse/fuse-module_2.7.4.bb @@ -1,6 +1,6 @@ require fuse.inc -RRECOMMENDS = "fuse" +RRECOMMENDS_${PN} = "fuse" PR = "r0" S = "${WORKDIR}/fuse-${PV}" diff --git a/recipes/fuse/gmailfs.inc b/recipes/fuse/gmailfs.inc index 9f1c676c87..7364839391 100644 --- a/recipes/fuse/gmailfs.inc +++ b/recipes/fuse/gmailfs.inc @@ -3,7 +3,7 @@ HOMEPAGE = "http://richard.jones.name/google-hacks/gmail-filesystem/gmail-filesy LICENSE = "GPLv2" DEPENDS = "fuse python-libgmail python-fuse" -RDEPENDS = "fuse python-libgmail python-fuse python-unixadmin python-lang python-textutils python-core" +RDEPENDS_${PN} = "fuse python-libgmail python-fuse python-unixadmin python-lang python-textutils python-core" SRC_URI = "http://richard.jones.name/google-hacks/gmail-filesystem/${PN}-${PV}.tar.gz" |