Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9573 - in main/branches/2.1.2: bin man
Date: Fri, 28 Mar 2008 12:55:50
Message-Id: E1JfE7Y-0007SE-Cz@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-03-28 12:55:47 +0000 (Fri, 28 Mar 2008)
3 New Revision: 9573
4
5 Modified:
6 main/branches/2.1.2/bin/repoman
7 main/branches/2.1.2/man/repoman.1
8 Log:
9 Bug #212509 - Implement a new --without-mask option that causes repoman to
10 behave as if there are no package.mask entries. (trunk r9520)
11
12
13 Modified: main/branches/2.1.2/bin/repoman
14 ===================================================================
15 --- main/branches/2.1.2/bin/repoman 2008-03-28 12:49:25 UTC (rev 9572)
16 +++ main/branches/2.1.2/bin/repoman 2008-03-28 12:55:47 UTC (rev 9573)
17 @@ -127,6 +127,7 @@
18 "--quiet" : "Be less verbose about extraneous info",
19 "--verbose" : "Displays every package name while checking",
20 "--version" : "Show version info",
21 +"--without-mask" : "Behave as if no package.mask entries exist",
22 "--xmlparse" : "Forces the metadata.xml parse check to be carried out"
23 }
24 repoman_shortoptions={
25 @@ -1794,6 +1795,8 @@
26 config_profile_path=profdir,
27 config_incrementals=portage_const.INCREMENTALS,
28 local_config=False)
29 + if "--without-mask" in myoptions:
30 + dep_settings.pmaskdict.clear()
31 arch_caches[prof[0]] = dep_settings
32 while True:
33 try:
34
35 Modified: main/branches/2.1.2/man/repoman.1
36 ===================================================================
37 --- main/branches/2.1.2/man/repoman.1 2008-03-28 12:49:25 UTC (rev 9572)
38 +++ main/branches/2.1.2/man/repoman.1 2008-03-28 12:55:47 UTC (rev 9573)
39 @@ -34,9 +34,15 @@
40 \fB-v\fR, \fB--verbose\fR
41 Displays every package name while checking
42 .TP
43 -\fB-I\fR, \fB--ignore-arches\fR
44 +\fB\-i\fR, \fB\-\-ignore\-arches\fR
45 Ignore arch-specific failures (where arch != host)
46 .TP
47 +\fB\-I\fR, \fB\-\-ignore\-masked\fR
48 +Ignore masked packages (not allowed with commit mode)
49 +.TP
50 +\fB\-\-without\-mask\fR
51 +Behave as if no package.mask entries exist
52 +.TP
53 \fB-m\fR, \fB--commitmsg\fR
54 Adds a commit message via the command line
55 .TP
56
57 --
58 gentoo-commits@l.g.o mailing list