On Wed, Jan 29, 2014 at 11:07:08AM +0100, Fabian Deutsch wrote:
Am Mittwoch, den 29.01.2014, 05:02 -0500 schrieb Antoni Segura
Puimedon:
Right.
I believe the bug you are seeing is:
http://gerrit.ovirt.org/#/c/20068/
This has been merged into out stable branch, but the release of a new
oVirt Node ISO for 3.3 is pending because of the vdsm-python-cpopen
dependency problem.
Would you agree to patch `yum` on your build machine? I do not fully
understand the issue, but with the following patch, the dependency
problem is resolved for me:
diff --git a/yum/depsolve.py b/yum/depsolve.py
index 95c21bc..57cf379 100644
--- a/yum/depsolve.py
+++ b/yum/depsolve.py
@@ -720,7 +720,7 @@ class Depsolve(object):
else:
self.verbose_logger.debug(_('TSINFO: Marking %s as install for %s'),
best,
requiringPo)
- reqtuple = misc.string_to_prco_tuple(needname + str(needflags) +
needversion)
+ reqtuple = misc.string_to_prco_tuple(requirement)
txmbrs = self.install(best, provides_for=reqtuple)
for txmbr in txmbrs:
txmbr.setAsDep(po=requiringPo)