Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/
Date: Fri, 01 Jun 2012 03:32:43
Message-Id: 1338521534.033084fd96d2a92e4dbfd952bf8c68301e435437.zmedico@gentoo
1 commit: 033084fd96d2a92e4dbfd952bf8c68301e435437
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 1 03:31:37 2012 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 1 03:32:14 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=033084fd
7
8 InheritEclass: base and cmake-utils exemptions
9
10 ---
11 pym/repoman/checks.py | 6 +++++-
12 1 files changed, 5 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py
15 index 2101435..4d37187 100644
16 --- a/pym/repoman/checks.py
17 +++ b/pym/repoman/checks.py
18 @@ -529,7 +529,7 @@ _eclass_info = {
19 'comprehensive': False,
20
21 # These are "eclasses are the whole ebuild" type thing.
22 - 'exempt_eclasses': ('toolchain', 'toolchain-binutils', 'vim'),
23 + 'exempt_eclasses': ('base', 'cmake-utils', 'toolchain', 'toolchain-binutils', 'vim'),
24
25 #'inherited_api': ('multilib', 'user',),
26 },
27 @@ -553,6 +553,10 @@ _eclass_info = {
28 'funcs': (
29 'get_libdir',
30 ),
31 +
32 + # These are "eclasses are the whole ebuild" type thing.
33 + 'exempt_eclasses': ('cmake-utils',),
34 +
35 'comprehensive': False
36 },