filter out broken-syntax-in-scriptlet-requires (except on el4/5)
This commit is contained in:
parent
37bafdf91a
commit
139a2c4b32
@ -40,7 +40,7 @@ setOption("DanglingSymlinkExceptions", (
|
|||||||
setOption("ValidLicenses", (
|
setOption("ValidLicenses", (
|
||||||
# These are the short names for all of the Fedora approved licenses.
|
# These are the short names for all of the Fedora approved licenses.
|
||||||
# The master list is kept here: http://fedoraproject.org/wiki/Licensing
|
# The master list is kept here: http://fedoraproject.org/wiki/Licensing
|
||||||
# Last synced with revision "2.17, 31 July 2013" of that page.
|
# Last synced with revision "2.20, 9 February 2014" of that page.
|
||||||
'AAL',
|
'AAL',
|
||||||
'Abstyles',
|
'Abstyles',
|
||||||
'Adobe',
|
'Adobe',
|
||||||
@ -192,6 +192,7 @@ setOption("ValidLicenses", (
|
|||||||
'Newsletr',
|
'Newsletr',
|
||||||
'NGPL',
|
'NGPL',
|
||||||
'NLPL',
|
'NLPL',
|
||||||
|
'Nmap',
|
||||||
'Nokia',
|
'Nokia',
|
||||||
'NOSL',
|
'NOSL',
|
||||||
'Noweb',
|
'Noweb',
|
||||||
@ -223,6 +224,7 @@ setOption("ValidLicenses", (
|
|||||||
'Qhull',
|
'Qhull',
|
||||||
'QPL',
|
'QPL',
|
||||||
'Rdisc',
|
'Rdisc',
|
||||||
|
'REX',
|
||||||
'RiceBSD',
|
'RiceBSD',
|
||||||
'Romio',
|
'Romio',
|
||||||
'RPSL',
|
'RPSL',
|
||||||
@ -247,6 +249,7 @@ setOption("ValidLicenses", (
|
|||||||
'Tolua',
|
'Tolua',
|
||||||
'TORQUEv1.1',
|
'TORQUEv1.1',
|
||||||
'TOSL',
|
'TOSL',
|
||||||
|
'TPDL',
|
||||||
'TPL',
|
'TPL',
|
||||||
'UCD',
|
'UCD',
|
||||||
'Vim',
|
'Vim',
|
||||||
@ -402,6 +405,8 @@ addFilter("script-without-shebang .*\.desktop$")
|
|||||||
# Some files in /etc/ are not meant to be modified by the sysadmin
|
# Some files in /etc/ are not meant to be modified by the sysadmin
|
||||||
addFilter("non-conffile-in-etc /etc/rpm/.*$")
|
addFilter("non-conffile-in-etc /etc/rpm/.*$")
|
||||||
addFilter("non-conffile-in-etc /etc/rc.d/init.d/.*$")
|
addFilter("non-conffile-in-etc /etc/rc.d/init.d/.*$")
|
||||||
|
# Fixed in rpm >= 4.7.1
|
||||||
|
addFilter("broken-syntax-in-scriptlet-requires")
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/496737, https://bugzilla.redhat.com/646455
|
# https://bugzilla.redhat.com/496737, https://bugzilla.redhat.com/646455
|
||||||
for pkg, exe in (("coreutils", "/bin/su"),
|
for pkg, exe in (("coreutils", "/bin/su"),
|
||||||
|
@ -24,3 +24,5 @@ removeFilter("no-%clean-section")
|
|||||||
# (it automatically provides one).
|
# (it automatically provides one).
|
||||||
removeFilter("files-attr-not-set")
|
removeFilter("files-attr-not-set")
|
||||||
|
|
||||||
|
# Fixed in rpm >= 4.7.1
|
||||||
|
removeFilter("broken-syntax-in-scriptlet-requires")
|
||||||
|
@ -20,3 +20,5 @@ removeFilter("no-cleaning-of-buildroot")
|
|||||||
removeFilter("no-buildroot-tag")
|
removeFilter("no-buildroot-tag")
|
||||||
removeFilter("no-%clean-section")
|
removeFilter("no-%clean-section")
|
||||||
|
|
||||||
|
# Fixed in rpm >= 4.7.1
|
||||||
|
removeFilter("broken-syntax-in-scriptlet-requires")
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: rpmlint
|
Name: rpmlint
|
||||||
Version: 1.5
|
Version: 1.5
|
||||||
Release: 7%{?dist}
|
Release: 8%{?dist}
|
||||||
Summary: Tool for checking common errors in RPM packages
|
Summary: Tool for checking common errors in RPM packages
|
||||||
|
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
@ -111,6 +111,10 @@ make check
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 10 2014 Tom Callaway <spot@fedoraproject.org> - 1.5-8
|
||||||
|
- filter out broken-syntax-in-scriptlet-requires (except on el4/5)
|
||||||
|
- update license list
|
||||||
|
|
||||||
* Sun Feb 9 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.5-7
|
* Sun Feb 9 2014 Ville Skyttä <ville.skytta@iki.fi> - 1.5-7
|
||||||
- Make default config Python 3 compatible.
|
- Make default config Python 3 compatible.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user