From 5ee93420b31ab1bb69e1d6f87ddfb9d70631a651 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 11 Mar 2009 23:49:03 +0000 Subject: Bug #262211 - Make vardbapi.aux_get() translate empty SLOT to 0 since other code expects non-empty SLOT (for generation package slot atoms). svn path=/main/trunk/; revision=13060 --- pym/portage/dbapi/vartree.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pym') diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 48a2a1639..9f6a72b07 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1179,6 +1179,10 @@ class vardbapi(dbapi): cache_data[aux_key] = mydata[aux_key] self._aux_cache["packages"][mycpv] = (mydir_mtime, cache_data) self._aux_cache["modified"].add(mycpv) + if not mydata['SLOT']: + # Empty slot triggers InvalidAtom exceptions when generating slot + # atoms for packages, so translate it to '0' here. + mydata['SLOT'] = '0' return [mydata[x] for x in wants] def _aux_get(self, mycpv, wants, st=None): -- cgit v1.2.3-1-g7c22