forked from pool/rpmlint
This commit is contained in:
parent
2fbd24d117
commit
efb21896ef
@ -155,7 +155,6 @@ _policy_legacy_exceptions = (
|
||||
"libkdegames5",
|
||||
"libkexiv2-1",
|
||||
"libkeyutils1",
|
||||
"libkonq5",
|
||||
"libksba8",
|
||||
"libkscan1",
|
||||
"libktoblzcheck1",
|
||||
|
3
config
3
config
@ -158,6 +158,8 @@ addFilter(" setup-not-quiet")
|
||||
addFilter(" no-cleaning-of-buildroot ")
|
||||
addFilter(" mixed-use-of-spaces-and-tabs ")
|
||||
addFilter(" prereq-use ")
|
||||
# an issue with OBS, works with autobuild
|
||||
addFilter(" no-packager-tag ")
|
||||
addFilter(" unversioned-explicit-provides ")
|
||||
addFilter(" unversioned-explicit-obsoletes ")
|
||||
addFilter(" no-%clean-section")
|
||||
@ -166,7 +168,6 @@ addFilter(" non-standard-dir-perm ")
|
||||
addFilter(" conffile-without-noreplace-flag ")
|
||||
addFilter(" non-standard-executable-perm ")
|
||||
addFilter(" jar-not-indexed ")
|
||||
addFilter(" non-conffile-in-etc ")
|
||||
addFilter(" uncompressed-zip ")
|
||||
addFilter(" %ifarch-applied-patch ")
|
||||
addFilter(" read-error ")
|
||||
|
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 21 14:57:54 CEST 2008 - dmueller@suse.de
|
||||
|
||||
- enable non-conffile-in-etc warning (bnc#409643)
|
||||
- fix shlib policy dependency warnings (bnc#405280)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 1 09:14:36 CEST 2008 - dmueller@suse.de
|
||||
|
||||
|
@ -15,7 +15,7 @@ Name: rpmlint
|
||||
BuildRequires: rpm-python
|
||||
Summary: Rpm correctness checker
|
||||
Version: 0.83
|
||||
Release: 7
|
||||
Release: 15
|
||||
Source0: %{name}-%{version}.tar.bz2
|
||||
Source1: config
|
||||
Source1001: config.in
|
||||
@ -91,6 +91,7 @@ Patch61: fix-tabs-indenting.diff
|
||||
Patch62: no-badness-return.diff
|
||||
Patch63: suse-factory-config.diff
|
||||
Patch64: pt-gnu-stack.diff
|
||||
Patch65: suse-shlib-devel-dependency.diff
|
||||
%py_requires
|
||||
|
||||
%description
|
||||
@ -158,6 +159,7 @@ Authors:
|
||||
%patch62
|
||||
%patch63
|
||||
%patch64
|
||||
%patch65
|
||||
cp -p %{SOURCE1} .
|
||||
cp -p %{SOURCE2} .
|
||||
cp -p %{SOURCE3} .
|
||||
@ -196,6 +198,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/share/man/man1/rpmlint.1.gz
|
||||
|
||||
%changelog
|
||||
* Mon Jul 21 2008 dmueller@suse.de
|
||||
- enable non-conffile-in-etc warning (bnc#409643)
|
||||
- fix shlib policy dependency warnings (bnc#405280)
|
||||
* Tue Jul 01 2008 dmueller@suse.de
|
||||
- update cron dependency checker (bnc#400921)
|
||||
* Sun Jun 29 2008 schwab@suse.de
|
||||
|
14
suse-shlib-devel-dependency.diff
Normal file
14
suse-shlib-devel-dependency.diff
Normal file
@ -0,0 +1,14 @@
|
||||
--- TagsCheck.py
|
||||
+++ TagsCheck.py
|
||||
@@ -524,9 +524,9 @@ class TagsCheck(AbstractCheck.AbstractCheck):
|
||||
has_so=1
|
||||
break
|
||||
if has_so:
|
||||
- base_or_libs = base + '/' + base + '-libs/lib' + base
|
||||
+ base_or_libs = base + '*/' + base + '-libs/lib' + base
|
||||
for d in deps:
|
||||
- if d[0] == base or d[0] == base + '-libs' or d[0] == 'lib' + base:
|
||||
+ if d[0] == base or d[0] == base + '-libs' or d[0] == 'lib' + base or d[0].startswith(base):
|
||||
dep=d
|
||||
break
|
||||
if not dep:
|
Loading…
Reference in New Issue
Block a user