[oe-commits] Richard Purdie : package: Disable runtime mapping of RPROVIDES/RCONFLICTS/ RREPLACES

git at git.openembedded.org git at git.openembedded.org
Sat Aug 23 08:32:22 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: f64af9aeb545b6626af1adebb813563773ba16d5
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=f64af9aeb545b6626af1adebb813563773ba16d5

Author: Richard Purdie <richard.purdie at linuxfoundation.org>
Date:   Tue Aug 19 13:43:18 2014 +0100

package: Disable runtime mapping of RPROVIDES/RCONFLICTS/RREPLACES

It doesn't really make sense to run the remapping code on these
variables. If specific renaming is needed, it should be applied
manually. This means that the debian RPROVIDES of the original package
name can be preserved. There was also a bug report about this on the
OE-Core mailing list recently where someone else ran into this problem
too.

Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/package.bbclass | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 1298758..0ff5370 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -2021,7 +2021,4 @@ def mapping_rename_hook(d):
     runtime_mapping_rename("RDEPENDS", pkg, d)
     runtime_mapping_rename("RRECOMMENDS", pkg, d)
     runtime_mapping_rename("RSUGGESTS", pkg, d)
-    runtime_mapping_rename("RPROVIDES", pkg, d)
-    runtime_mapping_rename("RREPLACES", pkg, d)
-    runtime_mapping_rename("RCONFLICTS", pkg, d)
 



More information about the Openembedded-commits mailing list