Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r12096 - main/trunk/bin
Date: Wed, 26 Nov 2008 06:39:16
Message-Id: E1L5E3N-00036w-6e@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-11-26 06:39:12 +0000 (Wed, 26 Nov 2008)
3 New Revision: 12096
4
5 Modified:
6 main/trunk/bin/repoman
7 Log:
8 Remove redundant reference to 'mynew' since 'myupdates' already contains those files.
9
10
11 Modified: main/trunk/bin/repoman
12 ===================================================================
13 --- main/trunk/bin/repoman 2008-11-26 06:25:55 UTC (rev 12095)
14 +++ main/trunk/bin/repoman 2008-11-26 06:39:12 UTC (rev 12096)
15 @@ -1945,8 +1945,8 @@
16 write_atomic(x, "".join(mylines))
17
18 manifest_commit_required = True
19 - if vcs != 'git' and (myupdates or myremoved or mynew):
20 - myfiles=myupdates+myremoved+mynew
21 + if vcs != 'git' and (myupdates or myremoved):
22 + myfiles = myupdates + myremoved
23 for x in range(len(myfiles)-1, -1, -1):
24 if myfiles[x].count("/") < 4-repolevel:
25 del myfiles[x]