Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r14490 - main/trunk/pym/repoman
Date: Sun, 04 Oct 2009 15:17:42
Message-Id: E1MuSqC-0008Ol-Jl@stork.gentoo.org
1 Author: arfrever
2 Date: 2009-10-04 15:17:40 +0000 (Sun, 04 Oct 2009)
3 New Revision: 14490
4
5 Modified:
6 main/trunk/pym/repoman/checks.py
7 Log:
8 Add src_configure and pkg_config to the list of phases in repoman.checks.PhaseCheck.__init__().
9
10
11 Modified: main/trunk/pym/repoman/checks.py
12 ===================================================================
13 --- main/trunk/pym/repoman/checks.py 2009-10-04 14:06:18 UTC (rev 14489)
14 +++ main/trunk/pym/repoman/checks.py 2009-10-04 15:17:40 UTC (rev 14490)
15 @@ -38,8 +38,8 @@
16 in_phase = ''
17
18 def __init__(self):
19 - self.phases = ('pkg_setup', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'pkg_pretend',
20 - 'src_unpack', 'src_prepare', 'src_compile', 'src_test', 'src_install')
21 + self.phases = ('pkg_pretend', 'pkg_setup', 'src_unpack', 'src_prepare', 'src_configure', 'src_compile',
22 + 'src_test', 'src_install', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'pkg_config')
23 phase_re = '('
24 for phase in self.phases:
25 phase_re += phase + '|'