billie 15/04/04 11:21:10 Added: pfl-2.4-reponame.patch Log: Fix issue with different repository naming between portage/paludis. Thanks to Anthony Parsons in bug #537584. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 215AD14D)
Revision Changes Path 1.1 app-portage/pfl/files/pfl-2.4-reponame.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/pfl/files/pfl-2.4-reponame.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-portage/pfl/files/pfl-2.4-reponame.patch?rev=1.1&content-type=text/plain Index: pfl-2.4-reponame.patch =================================================================== --- pfl/pfl.py (Revision 68) +++ pfl/pfl.py (Arbeitskopie) @@ -226,6 +226,8 @@ v = '%s-%s' % (v, r) repo, = self._vardbapi.aux_get(cpv, ['repository']) + if len(repo) == 0: + repo, = self._vardbapi.aux_get(cpv, ['REPOSITORY']) # timestamp of merge mergedstamp = self._vardbapi.aux_get(cpv, ['_mtime_'])[0]
