forked from pool/rpmlint
Accepting request 33307 from Base:System
Copy from Base:System/rpmlint based on submit request 33307 from user coolo OBS-URL: https://build.opensuse.org/request/show/33307 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/rpmlint?expand=0&rev=52
This commit is contained in:
parent
596a983bee
commit
a16aad926b
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Feb 19 11:05:54 UTC 2010 - puzel@novell.com
|
||||||
|
|
||||||
|
- update suse version check (add 11.2, drop 10.3)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Feb 1 10:14:58 UTC 2010 - lnussel@suse.de
|
Mon Feb 1 10:14:58 UTC 2010 - lnussel@suse.de
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ Name: rpmlint
|
|||||||
BuildRequires: rpm-python
|
BuildRequires: rpm-python
|
||||||
Summary: Rpm correctness checker
|
Summary: Rpm correctness checker
|
||||||
Version: 0.92
|
Version: 0.92
|
||||||
Release: 2
|
Release: 3
|
||||||
Source0: %{name}-%{version}.tar.bz2
|
Source0: %{name}-%{version}.tar.bz2
|
||||||
Source1: config
|
Source1: config
|
||||||
Source1001: config.in
|
Source1001: config.in
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
Index: SpecCheck.py
|
Index: SpecCheck.py
|
||||||
===================================================================
|
===================================================================
|
||||||
--- SpecCheck.py.orig
|
--- SpecCheck.py.orig 2010-02-19 12:02:55.000000000 +0100
|
||||||
+++ SpecCheck.py
|
+++ SpecCheck.py 2010-02-19 12:05:18.000000000 +0100
|
||||||
@@ -53,6 +53,7 @@ libdir_regex = re.compile('%{?_lib(?:dir
|
@@ -50,6 +50,7 @@ libdir_regex = re.compile('%{?_lib(?:dir
|
||||||
comment_or_empty_regex = re.compile('^\s*(#|$)')
|
comment_or_empty_regex = re.compile('^\s*(#|$)')
|
||||||
defattr_regex = re.compile('^\s*%defattr\\b')
|
defattr_regex = re.compile('^\s*%defattr\\b')
|
||||||
attr_regex = re.compile('^\s*%attr\\b')
|
attr_regex = re.compile('^\s*%attr\\b')
|
||||||
@ -10,20 +10,20 @@ Index: SpecCheck.py
|
|||||||
section_regexs = dict(
|
section_regexs = dict(
|
||||||
([x, re.compile('^%' + x + '(?:\s|$)')]
|
([x, re.compile('^%' + x + '(?:\s|$)')]
|
||||||
for x in ('build', 'changelog', 'check', 'clean', 'description', 'files',
|
for x in ('build', 'changelog', 'check', 'clean', 'description', 'files',
|
||||||
@@ -363,6 +364,12 @@ class SpecCheck(AbstractCheck.AbstractCh
|
@@ -362,6 +363,12 @@ class SpecCheck(AbstractCheck.AbstractCh
|
||||||
if res:
|
if res:
|
||||||
package_noarch[current_package] = True
|
package_noarch[current_package] = True
|
||||||
|
|
||||||
+ res = suse_version_regex.search(line)
|
+ res = suse_version_regex.search(line)
|
||||||
+ if res and int(res.group(1)) > 0 and int(res.group(1)) < 1030:
|
+ if res and int(res.group(1)) > 0 and int(res.group(1)) < 1100:
|
||||||
+ printWarning(pkg, "obsolete-suse-version-check", res.group(1))
|
+ printWarning(pkg, "obsolete-suse-version-check", res.group(1))
|
||||||
+ elif res and int(res.group(1)) > 1110:
|
+ elif res and int(res.group(1)) > 1120:
|
||||||
+ printError(pkg, "invalid-suse-version-check", res.group(1))
|
+ printError(pkg, "invalid-suse-version-check", res.group(1))
|
||||||
+
|
+
|
||||||
res = prereq_regex.search(line)
|
res = prereq_regex.search(line)
|
||||||
if res:
|
if res:
|
||||||
printError(pkg, 'prereq-use', res.group(2))
|
printError(pkg, 'prereq-use', res.group(2))
|
||||||
@@ -673,6 +680,15 @@ set which may result in security issues
|
@@ -677,6 +684,15 @@ set which may result in security issues
|
||||||
depending on the system where the package is built. Add default attributes
|
depending on the system where the package is built. Add default attributes
|
||||||
using %defattr before it in the %files section, or use per line %attr's.''',
|
using %defattr before it in the %files section, or use per line %attr's.''',
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user