Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13496 - main/branches/2.1.6/pym/portage/dbapi
Date: Thu, 30 Apr 2009 07:09:09
Message-Id: E1LzQOJ-0007gA-MS@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 07:09:07 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13496
4
5 Modified:
6 main/branches/2.1.6/pym/portage/dbapi/porttree.py
7 Log:
8 Bug #265768 - Handle CacheError when deleting currupt cache inside
9 portdbapi._pull_valid_cache(). (trunk r13331)
10
11 Modified: main/branches/2.1.6/pym/portage/dbapi/porttree.py
12 ===================================================================
13 --- main/branches/2.1.6/pym/portage/dbapi/porttree.py 2009-04-30 07:08:33 UTC (rev 13495)
14 +++ main/branches/2.1.6/pym/portage/dbapi/porttree.py 2009-04-30 07:09:07 UTC (rev 13496)
15 @@ -486,6 +486,8 @@
16 del auxdb[cpv]
17 except KeyError:
18 pass
19 + except CacheError:
20 + pass
21 else:
22 eapi = metadata.get('EAPI', '').strip()
23 if not eapi: