Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9389 - main/trunk/bin
Date: Wed, 27 Feb 2008 16:00:57
Message-Id: E1JUOiF-0002Se-Kw@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-02-27 16:00:54 +0000 (Wed, 27 Feb 2008)
3 New Revision: 9389
4
5 Modified:
6 main/trunk/bin/repoman
7 Log:
8 Bug #211294 - Make repoman ignore profiles labeled with anything other
9 than "stable" or "dev" in profiles.desc so that we can extend it with
10 new labels such as "exp".
11
12
13 Modified: main/trunk/bin/repoman
14 ===================================================================
15 --- main/trunk/bin/repoman 2008-02-27 08:57:06 UTC (rev 9388)
16 +++ main/trunk/bin/repoman 2008-02-27 16:00:54 UTC (rev 9389)
17 @@ -1308,6 +1308,9 @@
18
19 for prof in profiles[arch]:
20
21 + if prof[1] not in ("stable", "dev"):
22 + continue
23 +
24 profdir = portdir+"/profiles/"+prof[0]
25
26 if prof[0] in arch_caches:
27
28 --
29 gentoo-commits@l.g.o mailing list