Package: yum
Version: 3.2.25-2
Severity: normal
Tags: patch

Dear Maintainer,

I tried running:

/usr/bin/yum --installroot /srv/mock/root/epel-6-x86_64/root/ groupinstall 
buildsys-build

It starts updating sources and locating packages. Then it gives the
following (given here with a PoC patch): 

--- /usr/share/yum-cli/cli.py   2013-01-02 22:31:43.000000000 +0200
+++ /usr/share/yum-cli/cli.py_new       2013-01-02 22:23:47.000000000 +0200
@@ -420,7 +420,7 @@ class YumBaseCli(yum.YumBase, output.Yum
             if msgs:
                 rpmlib_only = True
                 for msg in msgs:
-                    if msg.startswith('rpmlib('):
+                    if isinstance(msg, rpm.prob) or msg.startswith('rpmlib('):
                         continue
                     rpmlib_only = False
                 if rpmlib_only:

With this I could see the hidden problem of:

  ERROR You need to update rpm to handle:
  libfreebl3.so()(64bit) is needed by glibc-2.12-1.80.el6_3.6.x86_64
  libfreebl3.so(NSSRAWHASH_3.12.3)(64bit) is needed by 
glibc-2.12-1.80.el6_3.6.x86_64
  libz.so.1()(64bit) is needed by file-5.04-13.el6.x86_64
  ...

but this is an issue for a different bug report, if any. This was because
I was foolish enough to run that from a 32bit system.

-- 
Tzafrir Cohen         | [email protected] | VIM is
http://tzafrir.org.il |                    | a Mutt's
[email protected] |                    |  best
[email protected]    |                    | friend


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to