diff options
author | Bogdan Marinescu <bogdan.a.marinescu@intel.com> | 2013-01-29 11:05:02 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-01 15:54:03 +0000 |
commit | 9a9848d2156783ce65ad734e86fe0c212c26a6c8 (patch) | |
tree | ec416b86c61e12b74536fe8729db5e6be77ef0c9 /meta/recipes-devtools/python/python-smartpm | |
parent | bbc374a69bf5bfc56091859e143d03541d3d8661 (diff) | |
download | poky-9a9848d2156783ce65ad734e86fe0c212c26a6c8.tar.gz |
python-smartpm: multilib fixes
To fix some multilib issues, change the way the RPM backend decides
if two packages can coexist: if they have a different architecture,
automatically assume that they can coexist (which is fundamental for
multilib).
[YOCTO #3681]
(From OE-Core rev: 05fd850f09c58dba8f64f3fe1de28ed9f21890a2)
(From OE-Core rev: 03c892a02568fa8a5765d9fb569a55f17ea05f96)
Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-smartpm')
-rw-r--r-- | meta/recipes-devtools/python/python-smartpm/smart-multilib-fixes.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-smartpm/smart-multilib-fixes.patch b/meta/recipes-devtools/python/python-smartpm/smart-multilib-fixes.patch new file mode 100644 index 0000000000..56fef79a5f --- /dev/null +++ b/meta/recipes-devtools/python/python-smartpm/smart-multilib-fixes.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | To fix some multilib issues, change the way the RPM backend decides | ||
2 | if two packages can coexist: if they have a different architecture, | ||
3 | automatically assume that they can coexist (which is fundamental for | ||
4 | multilib). | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com> | ||
9 | |||
10 | diff --git a/smart/backends/rpm/base.py b/smart/backends/rpm/base.py | ||
11 | index 6e83d40..7140c1b 100644 | ||
12 | --- a/smart/backends/rpm/base.py | ||
13 | +++ b/smart/backends/rpm/base.py | ||
14 | @@ -228,6 +228,8 @@ class RPMPackage(Package): | ||
15 | return False | ||
16 | selfver, selfarch = splitarch(self.version) | ||
17 | otherver, otherarch = splitarch(other.version) | ||
18 | + if selfarch != otherarch: | ||
19 | + return True | ||
20 | selfcolor = getArchColor(selfarch) | ||
21 | othercolor = getArchColor(otherarch) | ||
22 | if (selfcolor and othercolor and selfcolor != othercolor and | ||