diff --git a/rpmlint.changes b/rpmlint.changes index 0358519..561f46e 100644 --- a/rpmlint.changes +++ b/rpmlint.changes @@ -4,6 +4,7 @@ Mon Sep 23 14:19:05 UTC 2013 - dmueller@suse.com - blacklist old systemd/udev directories (bnc#816467) - remove checking for groups (bnc#767551) - ignore icon size mismatches on animated icons (bnc#480664) +- update obsolete/invalid suse version check ------------------------------------------------------------------- Tue Sep 17 10:03:53 UTC 2013 - abergmann@suse.com diff --git a/suse-version.diff b/suse-version.diff index 3c53f58..8656513 100644 --- a/suse-version.diff +++ b/suse-version.diff @@ -15,9 +15,9 @@ Index: SpecCheck.py printWarning(pkg, 'hardcoded-prefix-tag', res.group(1)) + res = suse_version_regex.search(line) -+ if res and int(res.group(1)) > 0 and int(res.group(1)) < 1130: ++ if res and int(res.group(1)) > 0 and int(res.group(1)) < 1210: + printWarning(pkg, "obsolete-suse-version-check", res.group(1)) -+ elif res and int(res.group(1)) > 1230: ++ elif res and int(res.group(1)) > 1310: + printError(pkg, "invalid-suse-version-check", res.group(1)) + res = prereq_regex.search(line)