Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11753 - main/trunk/bin
Date: Thu, 30 Oct 2008 20:34:05
Message-Id: E1KveDN-0004x2-Ev@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-10-30 20:33:57 +0000 (Thu, 30 Oct 2008)
3 New Revision: 11753
4
5 Modified:
6 main/trunk/bin/repoman
7 Log:
8 Make sure mychanged and mynew are always defined even if there is no vcs
9 because commit mode is allowed without a vcs in pretend mode.
10
11
12 Modified: main/trunk/bin/repoman
13 ===================================================================
14 --- main/trunk/bin/repoman 2008-10-30 20:20:38 UTC (rev 11752)
15 +++ main/trunk/bin/repoman 2008-10-30 20:33:57 UTC (rev 11753)
16 @@ -748,6 +748,8 @@
17
18 new_ebuilds = set()
19 modified_changelogs = set()
20 +mychanged = []
21 +mynew = []
22 if vcs == "cvs":
23 mycvstree = cvstree.getentries("./", recursive=1)
24 mychanged = cvstree.findchanged(mycvstree, recursive=1, basedir="./")