diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-08-04 22:06:59 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-08-04 22:06:59 -0700 |
commit | 3b9488a32d6f170387b6dfbf1985e87db556f998 (patch) | |
tree | 33e18d103b24f342ef74e4b2110992f0b702b117 /pym | |
parent | repoman: Check if the prefix.eclass is inherited if eprefixify is used. Thank... (diff) | |
download | portage-multirepo-3b9488a32d6f170387b6dfbf1985e87db556f998.tar.gz portage-multirepo-3b9488a32d6f170387b6dfbf1985e87db556f998.tar.bz2 portage-multirepo-3b9488a32d6f170387b6dfbf1985e87db556f998.zip |
Bug #285191 - Add back the RDEPEND.implicit warning to detect the cases
where DEPEND is set and RDEPEND is unset in the ebuild, since this
triggers implicit RDEPEND=$DEPEND assignment (prior to EAPI 4) and is
forbidden by the QA team.
Diffstat (limited to 'pym')
-rw-r--r-- | pym/repoman/checks.py | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 5588fa86..7e76bf78 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -324,6 +324,39 @@ class EprefixifyDefined(LineCheck): elif self._inherit_prefix_re.search(line) is not None: self._prefix_inherited = True +class ImplicitRuntimeDeps(LineCheck): + """ + Detect the case where DEPEND is set and RDEPEND is unset in the ebuild, + since this triggers implicit RDEPEND=$DEPEND assignment (prior to EAPI 4). + """ + + repoman_check_name = 'RDEPEND.implicit' + _assignment_re = re.compile(r'^\s*(R?DEPEND)=') + + def new(self, pkg): + self._rdepend = False + self._depend = False + + def check_eapi(self, eapi): + # Beginning with EAPI 4, there is no + # implicit RDEPEND=$DEPEND assignment + # to be concerned with. + return eapi in ('0', '1', '2', '3') + + def check(self, num, line): + if not self._rdepend: + m = self._assignment_re.match(line) + if m is None: + pass + elif m.group(1) == "RDEPEND": + self._rdepend = True + elif m.group(1) == "DEPEND": + self._depend = True + + def end(self): + if self._depend and not self._rdepend: + yield 'RDEPEND is not explicitly assigned' + class InheritAutotools(LineCheck): """ Make sure appropriate functions are called in @@ -512,7 +545,7 @@ _constant_checks = tuple((c() for c in ( EbuildAssignment, Eapi3EbuildAssignment, EbuildUselessDodoc, EbuildUselessCdS, EbuildNestedDie, EbuildPatches, EbuildQuotedA, EapiDefinition, EprefixifyDefined, - IUseUndefined, InheritAutotools, + ImplicitRuntimeDeps, InheritAutotools, IUseUndefined, EMakeParallelDisabled, EMakeParallelDisabledViaMAKEOPTS, NoAsNeeded, DeprecatedBindnowFlags, SrcUnpackPatches, WantAutoDefaultValue, SrcCompileEconf, Eapi3DeprecatedFuncs, |