filter out failure from broken webservers, add new licenses

This commit is contained in:
Tom Callaway 2015-05-29 12:09:59 -04:00
parent 65d75b9e5f
commit 71d1d188e1
2 changed files with 13 additions and 2 deletions

View File

@ -40,7 +40,7 @@ setOption("DanglingSymlinkExceptions", (
setOption("ValidLicenses", (
# These are the short names for all of the Fedora approved licenses.
# The master list is kept here: http://fedoraproject.org/wiki/Licensing
# Last synced with revision "2.25, 2 December 2014" of that page.
# Last synced with revision "2.29, 17 March 2015" of that page.
'AAL',
'Abstyles',
'Adobe',
@ -106,6 +106,7 @@ setOption("ValidLicenses", (
'EFL 2.0+',
'eGenix',
'Entessa',
'EPICS',
'EPL',
'ERPL',
'EU Datagrid',
@ -135,6 +136,7 @@ setOption("ValidLicenses", (
'GPLv3+',
'GPLv3+ with exceptions',
'HaskellReport',
'HSRL',
'IBM',
'IJG',
'ImageMagick',
@ -254,6 +256,7 @@ setOption("ValidLicenses", (
'TOSL',
'TPDL',
'TPL',
'TTWL',
'UCD',
'Unicode',
'Unlicense',
@ -418,6 +421,10 @@ addFilter("broken-syntax-in-scriptlet-requires")
# Files that are intentionally not supposed to be readable
# Contains passwords
addFilter("non-readable /etc/ovirt-engine/isouploader.conf")
# Ignore webservers which are just broken.
addFilter("invalid-url .*\.googlecode\.com/.*HTTP Error 404")
addFilter("invalid-url .*\.jboss\.org/.*HTTP Error 403")
addFilter("invalid-url .*\bitbucket\.org/.*HTTP Error 403")
# https://bugzilla.redhat.com/496737, https://bugzilla.redhat.com/646455
for pkg, exe in (("coreutils", "/bin/su"),

View File

@ -1,6 +1,6 @@
Name: rpmlint
Version: 1.6
Release: 2%{?dist}
Release: 3%{?dist}
Summary: Tool for checking common errors in RPM packages
Group: Development/Tools
License: GPLv2
@ -99,6 +99,10 @@ make check
%{_mandir}/man1/rpmlint.1*
%changelog
* Fri May 29 2015 Tom Callaway <spot@fedoraproject.org> - 1.6-3
- filter out failure from broken webservers
- add new licenses
* Tue Dec 9 2014 Tom Callaway <spot@fedoraproject.org> - 1.6-2
- update license list in config file