2009-09-16 18:41:21 +02:00
|
|
|
Index: SpecCheck.py
|
|
|
|
===================================================================
|
2010-04-28 22:41:49 +02:00
|
|
|
--- SpecCheck.py.orig
|
|
|
|
+++ SpecCheck.py
|
|
|
|
@@ -56,6 +56,7 @@ libdir_regex = re.compile('%{?_lib(?:dir
|
2008-06-25 19:08:32 +02:00
|
|
|
comment_or_empty_regex = re.compile('^\s*(#|$)')
|
|
|
|
defattr_regex = re.compile('^\s*%defattr\\b')
|
|
|
|
attr_regex = re.compile('^\s*%attr\\b')
|
2008-04-17 04:52:37 +02:00
|
|
|
+suse_version_regex = re.compile('%suse_version\s*[<>=]+\s*(\d+)')
|
2009-08-21 18:19:06 +02:00
|
|
|
section_regexs = dict(
|
|
|
|
([x, re.compile('^%' + x + '(?:\s|$)')]
|
|
|
|
for x in ('build', 'changelog', 'check', 'clean', 'description', 'files',
|
2010-10-14 14:32:03 +02:00
|
|
|
@@ -348,6 +349,12 @@ class SpecCheck(AbstractCheck.AbstractCh
|
2009-03-13 16:06:45 +01:00
|
|
|
if res:
|
2009-08-21 18:19:06 +02:00
|
|
|
package_noarch[current_package] = True
|
2008-04-17 04:52:37 +02:00
|
|
|
|
2009-03-13 16:06:45 +01:00
|
|
|
+ res = suse_version_regex.search(line)
|
2010-10-14 14:32:03 +02:00
|
|
|
+ if res and int(res.group(1)) > 0 and int(res.group(1)) < 1110:
|
2009-03-13 16:06:45 +01:00
|
|
|
+ printWarning(pkg, "obsolete-suse-version-check", res.group(1))
|
2010-10-14 14:32:03 +02:00
|
|
|
+ elif res and int(res.group(1)) > 1140:
|
2009-03-13 16:06:45 +01:00
|
|
|
+ printError(pkg, "invalid-suse-version-check", res.group(1))
|
2008-04-17 04:52:37 +02:00
|
|
|
+
|
2009-03-13 16:06:45 +01:00
|
|
|
res = prereq_regex.search(line)
|
|
|
|
if res:
|
|
|
|
printError(pkg, 'prereq-use', res.group(2))
|
2011-05-19 16:19:35 +02:00
|
|
|
@@ -758,6 +765,15 @@ in the resulting binary package dependin
|
|
|
|
version (typically < 4.4). Add default attributes using %defattr before it in
|
|
|
|
the %files section, or use per entry %attr's.''',
|
2009-08-21 18:19:06 +02:00
|
|
|
|
2008-04-17 04:52:37 +02:00
|
|
|
+'obsolete-suse-version-check',
|
|
|
|
+'''The specfile contains a comparison of %suse_version against a suse release
|
|
|
|
+that is no longer in maintenance. Consider removing obsolete parts of your
|
|
|
|
+spec file to make it more readable.''',
|
|
|
|
+
|
|
|
|
+'invalid-suse-version-check',
|
|
|
|
+'''The specfile contains a comparison of %suse_version against a suse release
|
2009-08-21 18:19:06 +02:00
|
|
|
+that does not exist. Please double check.''',
|
2008-06-25 19:08:32 +02:00
|
|
|
+
|
2009-08-21 18:19:06 +02:00
|
|
|
'non-standard-group',
|
|
|
|
'''The value of the Group tag in the package is not valid. Valid groups are:
|
|
|
|
"%s".''' % '", "'.join(VALID_GROUPS),
|