diff options
| -rw-r--r-- | meta/recipes-devtools/python/python-smartpm/smart-multilib-fixes.patch | 22 | ||||
| -rw-r--r-- | meta/recipes-devtools/python/python-smartpm_1.4.1.bb | 3 |
2 files changed, 24 insertions, 1 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 | ||
diff --git a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb index 4d0f96b769..06641adc4c 100644 --- a/meta/recipes-devtools/python/python-smartpm_1.4.1.bb +++ b/meta/recipes-devtools/python/python-smartpm_1.4.1.bb | |||
| @@ -11,7 +11,7 @@ LICENSE = "GPLv2" | |||
| 11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833" | 11 | LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833" |
| 12 | 12 | ||
| 13 | DEPENDS = "python rpm" | 13 | DEPENDS = "python rpm" |
| 14 | PR = "r7" | 14 | PR = "r8" |
| 15 | SRCNAME = "smart" | 15 | SRCNAME = "smart" |
| 16 | 16 | ||
| 17 | SRC_URI = "\ | 17 | SRC_URI = "\ |
| @@ -25,6 +25,7 @@ SRC_URI = "\ | |||
| 25 | file://smart-tmpdir.patch \ | 25 | file://smart-tmpdir.patch \ |
| 26 | file://smart-metadata-match.patch \ | 26 | file://smart-metadata-match.patch \ |
| 27 | file://smart-improve-error-reporting.patch \ | 27 | file://smart-improve-error-reporting.patch \ |
| 28 | file://smart-multilib-fixes.patch \ | ||
| 28 | " | 29 | " |
| 29 | 30 | ||
| 30 | SRC_URI[md5sum] = "573ef32ba177a6b3c4bf7ef04873fcb6" | 31 | SRC_URI[md5sum] = "573ef32ba177a6b3c4bf7ef04873fcb6" |
