Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15271 - main/branches/2.1.7/bin
Date: Fri, 29 Jan 2010 18:53:50
Message-Id: E1NavyJ-0007vz-Gq@stork.gentoo.org
1 Author: zmedico
2 Date: 2010-01-29 18:53:35 +0000 (Fri, 29 Jan 2010)
3 New Revision: 15271
4
5 Modified:
6 main/branches/2.1.7/bin/repoman
7 Log:
8 Remove code for svn.IO_error and bzr.IO_error categories since they don't
9 exist therefore and if this code had ever executed it would have raised
10 a KeyError. (trunk r15222)
11
12 Modified: main/branches/2.1.7/bin/repoman
13 ===================================================================
14 --- main/branches/2.1.7/bin/repoman 2010-01-29 18:53:23 UTC (rev 15270)
15 +++ main/branches/2.1.7/bin/repoman 2010-01-29 18:53:35 UTC (rev 15271)
16 @@ -1161,12 +1161,8 @@
17 if vcs == "cvs":
18 stats["CVS/Entries.IO_error"] += 1
19 fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries")
20 - elif vcs == "svn":
21 - stats["svn.IO_error"] += 1
22 - fails["svn.IO_error"].append(checkdir)
23 - elif vcs == "bzr":
24 - stats["bzr.IO_error"] += 1
25 - fails["bzr.IO_error"].append(checkdir)
26 + else:
27 + raise
28 continue
29
30 mf = Manifest(checkdir, repoman_settings["DISTDIR"])