From: genone Date: Tue, 12 Oct 2004 19:09:21 +0000 (-0000) Subject: regression fix for bug 67210 X-Git-Tag: gentoolkit-0.2.4.3~348 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=21fda46e3352b0de925e3cdb958fbb7048c9fa20;p=gentoolkit.git regression fix for bug 67210 svn path=/; revision=154 --- diff --git a/trunk/ChangeLog b/trunk/ChangeLog index 353ba24..9103f2b 100644 --- a/trunk/ChangeLog +++ b/trunk/ChangeLog @@ -1,3 +1,6 @@ +2004-10-12 Marius Mauch + * equery: fix for bug #67210 + 2004-10-10 Marius Mauch * 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 * Fixed Makefiles to work with posix-compatible shells diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index 1197e86..b02ac8c 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -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