Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15273 - main/branches/2.1.7/bin
Date: Fri, 29 Jan 2010 19:07:58
Message-Id: E1NawCC-0000GL-Hk@stork.gentoo.org
1 Author: zmedico
2 Date: 2010-01-29 19:07:56 +0000 (Fri, 29 Jan 2010)
3 New Revision: 15273
4
5 Modified:
6 main/branches/2.1.7/bin/repoman
7 Log:
8 Don't ignore CVS/Entries.IO_error when not in commit mode. (trunk r15272)
9
10 Modified: main/branches/2.1.7/bin/repoman
11 ===================================================================
12 --- main/branches/2.1.7/bin/repoman 2010-01-29 19:07:38 UTC (rev 15272)
13 +++ main/branches/2.1.7/bin/repoman 2010-01-29 19:07:56 UTC (rev 15273)
14 @@ -1157,12 +1157,11 @@
15 if l[-7:] == ".ebuild":
16 eadded.append(os.path.basename(l[:-7]))
17 except IOError:
18 - if options.mode == 'commit':
19 - if vcs == "cvs":
20 - stats["CVS/Entries.IO_error"] += 1
21 - fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries")
22 - else:
23 - raise
24 + if vcs == "cvs":
25 + stats["CVS/Entries.IO_error"] += 1
26 + fails["CVS/Entries.IO_error"].append(checkdir+"/CVS/Entries")
27 + else:
28 + raise
29 continue
30
31 mf = Manifest(checkdir, repoman_settings["DISTDIR"])