2012-09-13 18:01:40 +02:00
|
|
|
Index: FilesCheck.py
|
|
|
|
===================================================================
|
|
|
|
--- FilesCheck.py.orig
|
2011-08-20 02:20:26 +02:00
|
|
|
+++ FilesCheck.py
|
2012-09-13 18:01:40 +02:00
|
|
|
@@ -1153,8 +1153,11 @@ class FilesCheck(AbstractCheck.AbstractC
|
2011-08-20 02:20:26 +02:00
|
|
|
if res and not (pkg.check_versioned_dep('python-base',
|
|
|
|
res.group(1)) or
|
|
|
|
pkg.check_versioned_dep('python',
|
|
|
|
- res.group(1))):
|
|
|
|
- printError(pkg, 'no-dependency-on', 'python-base',
|
|
|
|
+ res.group(1)) or
|
|
|
|
+ pkg.check_versioned_dep('python(abi)',
|
2011-08-20 02:27:04 +02:00
|
|
|
+ res.group(1))
|
2011-08-20 02:20:26 +02:00
|
|
|
+ ):
|
|
|
|
+ printError(pkg, 'no-dependency-on', 'python(abi)',
|
|
|
|
res.group(1))
|
|
|
|
python_dep_error = True
|
|
|
|
|