* [meta-oe][PATCH 0/3] Fix use of R* package variables
@ 2013-02-04 11:29 Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 1/3] gnome-vfs: use RPROVIDES correctly Paul Eggleton
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Paul Eggleton @ 2013-02-04 11:29 UTC (permalink / raw)
To: openembedded-devel
The package needs to be specified when using R* variables, so fix the
few cases where it wasn't.
The following changes since commit 74ec0813562525d02da6ac45eb0237382e98a72f:
xchat: add libsexy to DEPENDS (2013-02-01 17:44:22 +0100)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib paule/pkgvar-fixes
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/pkgvar-fixes
Paul Eggleton (3):
gnome-vfs: use RPROVIDES correctly
tiobench: use RDEPENDS correctly
qconnman: use RCONFLICTS correctly
meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb | 2 +-
meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb | 2 +-
meta-oe/recipes-qt/qconnman/qconnman-e_git.bb | 2 +-
meta-oe/recipes-qt/qconnman/qconnman_git.bb | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
--
1.7.10.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [meta-oe][PATCH 1/3] gnome-vfs: use RPROVIDES correctly
2013-02-04 11:29 [meta-oe][PATCH 0/3] Fix use of R* package variables Paul Eggleton
@ 2013-02-04 11:29 ` Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 2/3] tiobench: use RDEPENDS correctly Paul Eggleton
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2013-02-04 11:29 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb b/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
index 62d63ae..cfe7125 100644
--- a/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
+++ b/meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb
@@ -18,7 +18,7 @@ PR = "r2"
inherit gnome
# This is to provide compatibility with the gnome-vfs DBus fork
-RPROVIDES = "gnome-vfs-plugin-dbus"
+RPROVIDES_${PN} = "gnome-vfs-plugin-dbus"
SRC_URI += "file://gconftool-lossage.patch \
file://gnome-vfs-no-kerberos.patch;striplevel=0"
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-oe][PATCH 2/3] tiobench: use RDEPENDS correctly
2013-02-04 11:29 [meta-oe][PATCH 0/3] Fix use of R* package variables Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 1/3] gnome-vfs: use RPROVIDES correctly Paul Eggleton
@ 2013-02-04 11:29 ` Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 3/3] qconnman: use RCONFLICTS correctly Paul Eggleton
2013-02-05 10:22 ` [meta-oe][PATCH 0/3] Fix use of R* package variables Martin Jansa
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2013-02-04 11:29 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb b/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb
index 5b95ac0..236b913 100644
--- a/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb
+++ b/meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb
@@ -19,7 +19,7 @@ do_install() {
oe_runmake install
}
-RDEPENDS = "\
+RDEPENDS_${PN} = "\
perl \
perl-module-exporter-heavy \
perl-module-getopt-long \
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-oe][PATCH 3/3] qconnman: use RCONFLICTS correctly
2013-02-04 11:29 [meta-oe][PATCH 0/3] Fix use of R* package variables Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 1/3] gnome-vfs: use RPROVIDES correctly Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 2/3] tiobench: use RDEPENDS correctly Paul Eggleton
@ 2013-02-04 11:29 ` Paul Eggleton
2013-02-05 10:22 ` [meta-oe][PATCH 0/3] Fix use of R* package variables Martin Jansa
3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2013-02-04 11:29 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta-oe/recipes-qt/qconnman/qconnman-e_git.bb | 2 +-
meta-oe/recipes-qt/qconnman/qconnman_git.bb | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta-oe/recipes-qt/qconnman/qconnman-e_git.bb b/meta-oe/recipes-qt/qconnman/qconnman-e_git.bb
index 2fcd3da..1033bf2 100644
--- a/meta-oe/recipes-qt/qconnman/qconnman-e_git.bb
+++ b/meta-oe/recipes-qt/qconnman/qconnman-e_git.bb
@@ -1,6 +1,6 @@
require qconnman.inc
-RCONFLICTS = "qconnman"
+RCONFLICTS_${PN} = "qconnman"
inherit qt4e
diff --git a/meta-oe/recipes-qt/qconnman/qconnman_git.bb b/meta-oe/recipes-qt/qconnman/qconnman_git.bb
index 9f03b90..d298cb5 100644
--- a/meta-oe/recipes-qt/qconnman/qconnman_git.bb
+++ b/meta-oe/recipes-qt/qconnman/qconnman_git.bb
@@ -1,6 +1,6 @@
require qconnman.inc
-RCONFLICTS = "qconnman-e"
+RCONFLICTS_${PN} = "qconnman-e"
inherit qt4x11
--
1.7.10.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-oe][PATCH 0/3] Fix use of R* package variables
2013-02-04 11:29 [meta-oe][PATCH 0/3] Fix use of R* package variables Paul Eggleton
` (2 preceding siblings ...)
2013-02-04 11:29 ` [meta-oe][PATCH 3/3] qconnman: use RCONFLICTS correctly Paul Eggleton
@ 2013-02-05 10:22 ` Martin Jansa
3 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2013-02-05 10:22 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 1352 bytes --]
On Mon, Feb 04, 2013 at 11:29:35AM +0000, Paul Eggleton wrote:
> The package needs to be specified when using R* variables, so fix the
> few cases where it wasn't.
All 3 merged, thanks.
>
>
>
> The following changes since commit 74ec0813562525d02da6ac45eb0237382e98a72f:
>
> xchat: add libsexy to DEPENDS (2013-02-01 17:44:22 +0100)
>
> are available in the git repository at:
>
> git://git.openembedded.org/meta-openembedded-contrib paule/pkgvar-fixes
> http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/pkgvar-fixes
>
> Paul Eggleton (3):
> gnome-vfs: use RPROVIDES correctly
> tiobench: use RDEPENDS correctly
> qconnman: use RCONFLICTS correctly
>
> meta-gnome/recipes-gnome/gnome-vfs/gnome-vfs_2.24.4.bb | 2 +-
> meta-oe/recipes-benchmark/tiobench/tiobench_0.3.3.bb | 2 +-
> meta-oe/recipes-qt/qconnman/qconnman-e_git.bb | 2 +-
> meta-oe/recipes-qt/qconnman/qconnman_git.bb | 2 +-
> 4 files changed, 4 insertions(+), 4 deletions(-)
>
> --
> 1.7.10.4
>
>
> _______________________________________________
> 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:[~2013-02-05 10:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-04 11:29 [meta-oe][PATCH 0/3] Fix use of R* package variables Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 1/3] gnome-vfs: use RPROVIDES correctly Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 2/3] tiobench: use RDEPENDS correctly Paul Eggleton
2013-02-04 11:29 ` [meta-oe][PATCH 3/3] qconnman: use RCONFLICTS correctly Paul Eggleton
2013-02-05 10:22 ` [meta-oe][PATCH 0/3] Fix use of R* package variables 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.