Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r15253 - main/branches/2.1.7/bin
Date: Fri, 29 Jan 2010 18:49:05
Message-Id: E1Navtt-00070d-IX@stork.gentoo.org
1 Author: zmedico
2 Date: 2010-01-29 18:49:01 +0000 (Fri, 29 Jan 2010)
3 New Revision: 15253
4
5 Modified:
6 main/branches/2.1.7/bin/repoman
7 Log:
8 Make sure repoman knows about all files in the directory to commit using bzr. Patch by Christian Faulhammer.
9 (trunk r15199)
10
11 Modified: main/branches/2.1.7/bin/repoman
12 ===================================================================
13 --- main/branches/2.1.7/bin/repoman 2010-01-29 18:48:48 UTC (rev 15252)
14 +++ main/branches/2.1.7/bin/repoman 2010-01-29 18:49:01 UTC (rev 15253)
15 @@ -1109,7 +1109,7 @@
16 if vcs == "svn":
17 myf = os.popen("svn status --depth=files --verbose " + checkdir)
18 if vcs == "bzr":
19 - myf = os.popen("bzr status -S " + checkdir)
20 + myf = os.popen("bzr ls -v --kind=file " + checkdir)
21 myl = myf.readlines()
22 myf.close()
23 for l in myl: