diff options
author | Per Øyvind Karlsen <peroyvind@mandriva.org> | 2011-05-05 09:20:06 +0000 |
---|---|---|
committer | Per Øyvind Karlsen <peroyvind@mandriva.org> | 2011-05-05 09:20:06 +0000 |
commit | 0dc5cac93d24de08174fe3cbf136ab52a259c8fb (patch) | |
tree | 0df1fc8d7ee233a42cc4989ce2794bdcaec37108 | |
parent | 44b190d4fa92ebd13ff1045163289cb2f8c28ecf (diff) | |
download | rpmdrake-0dc5cac93d24de08174fe3cbf136ab52a259c8fb.tar rpmdrake-0dc5cac93d24de08174fe3cbf136ab52a259c8fb.tar.gz rpmdrake-0dc5cac93d24de08174fe3cbf136ab52a259c8fb.tar.bz2 rpmdrake-0dc5cac93d24de08174fe3cbf136ab52a259c8fb.tar.xz rpmdrake-0dc5cac93d24de08174fe3cbf136ab52a259c8fb.zip |
follow URPM API change for using the correct tag names 'providename' & 'basenames'
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | Rpmdrake/pkg.pm | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,4 @@ -VERSION = 5.26.7 +VERSION = 5.26.8 NAME = rpmdrake DIRS = grpmi po data mime @@ -1,3 +1,7 @@ +Version 5.26.8 - 5 May 2011, by Per Øyvind Karlsen + +- follow URPM API change for using the correct tag names 'providename' & 'basenames' + Version 5.26.7 - 1 March 2011, J. Victor Martins - Fix offering of updates from media not configured as update (#60891). diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 3bb3c6ff..1fcc3e7f 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -313,7 +313,7 @@ sub get_installed_packages { reset_pbar_count(0.33); while (defined(local $_ = shift @base)) { exists $basepackages{$_} and next; - $db->traverse_tag(m|^/| ? 'path' : 'whatprovides', [ $_ ], sub { + $db->traverse_tag(m|^/| ? 'basenames' : 'providename', [ $_ ], sub { update_pbar($gurpm); my $name = urpm_name($_[0]); # workaround looping in URPM: |