Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15222 - main/trunk/bin
Date: Fri, 29 Jan 2010 18:22:17
Message-Id: E1NavTy-0003PT-0y@stork.gentoo.org
1 Author: zmedico
2 Date: 2010-01-29 18:22:13 +0000 (Fri, 29 Jan 2010)
3 New Revision: 15222
4
5 Modified:
6 main/trunk/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.
11
12
13 Modified: main/trunk/bin/repoman
14 ===================================================================
15 --- main/trunk/bin/repoman 2010-01-29 18:10:30 UTC (rev 15221)
16 +++ main/trunk/bin/repoman 2010-01-29 18:22:13 UTC (rev 15222)
17 @@ -1161,12 +1161,8 @@
18 if vcs == "cvs":
19 stats["CVS/Entries.IO_error"] += 1
20 fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries")
21 - elif vcs == "svn":
22 - stats["svn.IO_error"] += 1
23 - fails["svn.IO_error"].append(checkdir)
24 - elif vcs == "bzr":
25 - stats["bzr.IO_error"] += 1
26 - fails["bzr.IO_error"].append(checkdir)
27 + else:
28 + raise
29 continue
30
31 mf = Manifest(checkdir, repoman_settings["DISTDIR"])