Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10858 - main/trunk/bin
Date: Mon, 30 Jun 2008 21:51:26
Message-Id: E1KDRHM-0002Rk-I7@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-06-30 21:51:19 +0000 (Mon, 30 Jun 2008)
3 New Revision: 10858
4
5 Modified:
6 main/trunk/bin/repoman
7 Log:
8 Bug #230245 - Pass the correct directory when calling `snv list` and
9 `svn status` since repoman supports category-level and repo-level
10 commits.
11
12
13 Modified: main/trunk/bin/repoman
14 ===================================================================
15 --- main/trunk/bin/repoman 2008-06-30 21:13:14 UTC (rev 10857)
16 +++ main/trunk/bin/repoman 2008-06-30 21:51:19 UTC (rev 10858)
17 @@ -872,7 +872,7 @@
18 if vcs == "cvs":
19 myf=open(checkdir+"/CVS/Entries","r")
20 if vcs == "svn":
21 - myf=os.popen("svn list")
22 + myf = os.popen("svn list " + checkdir)
23 myl=myf.readlines()
24 myf.close()
25 for l in myl:
26 @@ -891,7 +891,7 @@
27 if l[-7:] == ".ebuild":
28 eadded.append(l[:-7])
29 if vcs == "svn":
30 - myf=os.popen("svn status")
31 + myf = os.popen("svn status " + checkdir)
32 myl=myf.readlines()
33 myf.close()
34 for l in myl:
35
36 --
37 gentoo-commits@l.g.o mailing list