Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
Author: zmedico
Date: 2008-12-20 19:46:33 +0000 (Sat, 20 Dec 2008)
New Revision: 12263
Modified:
main/branches/2.1.6/pym/repoman/checks.py
Log:
Bug #251591 - Adjust the InheritAutotools pattern to treat more things similar to
whitespace. Now it recognizes escaped newlines, || operators, and && operators.
(trunk r12260)
Modified: main/branches/2.1.6/pym/repoman/checks.py
===================================================================
--- main/branches/2.1.6/pym/repoman/checks.py 2008-12-20 19:46:18 UTC (rev 12262)
+++ main/branches/2.1.6/pym/repoman/checks.py 2008-12-20 19:46:33 UTC (rev 12263)
@@ -242,8 +242,8 @@
_autotools_funcs = (
"eaclocal", "eautoconf", "eautoheader",
"eautomake", "eautoreconf", "_elibtoolize")
- _autotools_func_re = re.compile(r'(^|\s)(' + \
- "|".join(_autotools_funcs) + ')(\s|$)')
+ _autotools_func_re = re.compile(r'(^|\s|\|\||&&)(' + \
+ "|".join(_autotools_funcs) + r')(\s|\|\||&&|\\?$)')
# Exempt eclasses:
# git - An EGIT_BOOTSTRAP variable may be used to call one of
# the autotools functions.
|
|