diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-09-04 17:43:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-04 18:03:13 +0100 |
commit | 5dd4de086d744c81d2275077ad0e0022204b0a68 (patch) | |
tree | 6ec64251dbcabb7098fcfd5157b800fb8ebc5490 /meta/recipes-qt | |
parent | c65f8af02ebba371f96119baef0520c6685c7167 (diff) | |
download | openembedded-core-5dd4de086d744c81d2275077ad0e0022204b0a68.tar.gz openembedded-core-5dd4de086d744c81d2275077ad0e0022204b0a68.tar.bz2 openembedded-core-5dd4de086d744c81d2275077ad0e0022204b0a68.zip |
packagegroup-*: add RREPLACES/RCONFLICTS
These are needed to support upgrading from task-* to packagegroup-*
within existing target images at runtime.
Note: these settings will very likely be moved out to a separate inc
file at some point in the future.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt')
-rw-r--r-- | meta/recipes-qt/packagegroups/packagegroup-core-qt.bb | 4 | ||||
-rw-r--r-- | meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb b/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb index ed13354e46..315df3388d 100644 --- a/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb +++ b/meta/recipes-qt/packagegroups/packagegroup-core-qt.bb @@ -4,7 +4,7 @@ DESCRIPTION = "Qt package groups" LICENSE = "MIT" -PR = "r3" +PR = "r4" inherit packagegroup @@ -12,6 +12,8 @@ PACKAGES = "${PN}-demoapps" # For backwards compatibility after rename RPROVIDES_${PN}-demoapps = "task-core-qt-demos" +RREPLACES_${PN}-demoapps = "task-core-qt-demos" +RCONFLICTS_${PN}-demoapps = "task-core-qt-demos" QTDEMOS ?= "quicky ${COMMERCIAL_QT} fotowall" diff --git a/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb b/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb index 042efb86d1..9263828a1a 100644 --- a/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb +++ b/meta/recipes-qt/packagegroups/packagegroup-core-qt4e.bb @@ -1,11 +1,13 @@ SUMMARY = "Qt for Embedded Linux (Qt without X11)" -PR = "r1" +PR = "r2" LICENSE = "MIT" inherit packagegroup # For backwards compatibility after rename RPROVIDES_${PN} = "task-qt4e-base" +RREPLACES_${PN} = "task-qt4e-base" +RCONFLICTS_${PN} = "task-qt4e-base" TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}' |