regression fix for bug 67210
authorgenone <genone@gentoo.org>
Tue, 12 Oct 2004 19:09:21 +0000 (19:09 -0000)
committergenone <genone@gentoo.org>
Tue, 12 Oct 2004 19:09:21 +0000 (19:09 -0000)
svn path=/; revision=154

trunk/ChangeLog
trunk/src/equery/equery

index 353ba243a5006341d4fe9513db8711cc3f472664..9103f2b31497919aabb678b898635ce396c68c01 100644 (file)
@@ -1,3 +1,6 @@
+2004-10-12 Marius Mauch <genone@gentoo.org>
+       * equery: fix for bug #67210
+
 2004-10-10 Marius Mauch <genone@gentoo.org>
        * Removed old-scripts directory from gentoolkit
        * euse: added a errormessage that it doesn't support cascading profiles
@@ -6,6 +9,7 @@
        * equery: added MD5 verification to `equery check`
        * equery: renamed 'hasuses' to 'hasuse'
        * equery: added filter patch for `equery files` from bug 43422, thanks to degrenier@easyconnect.fr
+       * Released gentoolkit-0.2.0_pre10
 
 2004-10-10 Karl Trygve Kalleberg <karltk@gentoo.org>
        * Fixed Makefiles to work with posix-compatible shells
index 1197e867ef150afd06b71ce59ac89b23b2664549..b02ac8cd1b3a80f8c9b1da5ba6fbbd3f43add06b 100755 (executable)
@@ -344,7 +344,7 @@ class CmdListBelongs(Command):
             if not cnt: return
             for file in cnt.keys():
                 if rx.search(file):
-                    print pkg.get_cpv()
+                    print pkg
                     return
 
         class DummyExp:
@@ -357,8 +357,7 @@ class CmdListBelongs(Command):
             if not cnt: return
             for file in cnt.keys():
                 if rx.search(file):
-                    s = pp.cpv(pkg.get_cpv())
-                    s += " (" + pp.path(fileAsStr(file, cnt[file])) + ")"
+                    s = pkg + " (" + pp.path(fileAsStr(file, cnt[file])) + ")"
                     print_info(0, s)
                     if opts["earlyOut"]:
                         raise DummyExp