Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9390 - main/branches/2.1.2/bin
Date: Wed, 27 Feb 2008 16:02:40
Message-Id: E1JUOjr-0002Un-3y@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-02-27 16:02:34 +0000 (Wed, 27 Feb 2008)
3 New Revision: 9390
4
5 Modified:
6 main/branches/2.1.2/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". (trunk r9389)
11
12
13 Modified: main/branches/2.1.2/bin/repoman
14 ===================================================================
15 --- main/branches/2.1.2/bin/repoman 2008-02-27 16:00:54 UTC (rev 9389)
16 +++ main/branches/2.1.2/bin/repoman 2008-02-27 16:02:34 UTC (rev 9390)
17 @@ -1767,6 +1767,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