From: Arfrever Frehtes Taifersar Arahesis Date: Sun, 4 Oct 2009 15:17:40 +0000 (-0000) Subject: Add src_configure and pkg_config to the list of phases in repoman.checks.PhaseCheck... X-Git-Tag: v2.2_rc44~12 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b85cfe5ff81688ccca3c4356326447bb057617eb;p=portage.git Add src_configure and pkg_config to the list of phases in repoman.checks.PhaseCheck.__init__(). svn path=/main/trunk/; revision=14490 --- diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 6e71aebbf..a754ad46e 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -38,8 +38,8 @@ class PhaseCheck(LineCheck): in_phase = '' def __init__(self): - self.phases = ('pkg_setup', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'pkg_pretend', - 'src_unpack', 'src_prepare', 'src_compile', 'src_test', 'src_install') + self.phases = ('pkg_pretend', 'pkg_setup', 'src_unpack', 'src_prepare', 'src_configure', 'src_compile', + 'src_test', 'src_install', 'pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm', 'pkg_config') phase_re = '(' for phase in self.phases: phase_re += phase + '|'