Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10615 - in main/branches/2.1.2: bin man
Date: Mon, 09 Jun 2008 14:36:11
Message-Id: E1K5iTd-0001S4-Ge@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-06-09 14:36:04 +0000 (Mon, 09 Jun 2008)
3 New Revision: 10615
4
5 Modified:
6 main/branches/2.1.2/bin/repoman
7 main/branches/2.1.2/man/repoman.1
8 Log:
9 Bug #224271 - New check 'IUSE.undefined', renamed from generic
10 "ebuild.minorsyn'. (trunk r10593)
11
12
13 Modified: main/branches/2.1.2/bin/repoman
14 ===================================================================
15 --- main/branches/2.1.2/bin/repoman 2008-06-09 14:34:05 UTC (rev 10614)
16 +++ main/branches/2.1.2/bin/repoman 2008-06-09 14:36:04 UTC (rev 10615)
17 @@ -206,6 +206,7 @@
18 "variable.readonly":"Assigning a readonly variable",
19 "LIVEVCS.stable":"This ebuild is a live checkout from a VCS but has stable keywords.",
20 "IUSE.invalid":"This ebuild has a variable in IUSE that is not in the use.desc or use.local.desc file",
21 + "IUSE.undefined":"This ebuild does not define IUSE (style guideline says to define IUSE even when empty)",
22 "LICENSE.invalid":"This ebuild is listing a license that doesnt exist in portages license/ dir.",
23 "KEYWORDS.invalid":"This ebuild contains KEYWORDS that are not listed in profiles/arch.list or for which no valid profile was found",
24 "RDEPEND.suspect":"RDEPEND contains a package that usually only belongs in DEPEND.",
25 @@ -244,6 +245,7 @@
26 "KEYWORDS.dropped",
27 "KEYWORDS.stupid",
28 "KEYWORDS.missing",
29 +"IUSE.undefined",
30 "RDEPEND.suspect",
31 "RESTRICT.invalid",
32 "ebuild.minorsyn",
33 @@ -1132,7 +1134,7 @@
34 if e:
35 yield lc.repoman_check_name, e % (num + 1)
36 if iuse_def is None:
37 - yield 'ebuild.minorsyn', 'IUSE is not defined'
38 + yield 'IUSE.undefined', 'IUSE is not defined'
39 if inherit_autotools and autotools_func_call is None:
40 yield 'inherit.autotools', 'no eauto* function called'
41
42
43 Modified: main/branches/2.1.2/man/repoman.1
44 ===================================================================
45 --- main/branches/2.1.2/man/repoman.1 2008-06-09 14:34:05 UTC (rev 10614)
46 +++ main/branches/2.1.2/man/repoman.1 2008-06-09 14:36:04 UTC (rev 10615)
47 @@ -114,6 +114,9 @@
48 .B IUSE.invalid
49 This build has a variable in IUSE that is not in the use.desc or use.local.desc file
50 .TP
51 +.B IUSE.undefined
52 +This ebuild does not define IUSE (style guideline says to define IUSE even when empty)
53 +.TP
54 .B KEYWORDS.dropped
55 Ebuilds that appear to have dropped KEYWORDS for some arch
56 .TP
57
58 --
59 gentoo-commits@l.g.o mailing list