Gentoo Archives: gentoo-commits

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