ignore long description lines for debuginfo packages

This commit is contained in:
Tom Callaway 2016-08-26 16:00:01 -04:00
parent 6098c6ff42
commit fcd9a01d65
2 changed files with 8 additions and 1 deletions

View File

@ -430,6 +430,10 @@ addFilter("invalid-url .*\.googlecode\.com/.*HTTP Error 404")
addFilter("invalid-url .*\.jboss\.org/.*HTTP Error 403")
addFilter("invalid-url .*bitbucket\.org/.*HTTP Error 403")
addFilter("invalid-url .*github\.com/.*HTTP Error 403")
# Don't care about long descriptions on debuginfo packages
# They automatically include the package name and are always
# quite long.
addFilter("-debuginfo.* description-line-too-long")
bad_crypto_warning = \
'''This application package calls a function to explicitly set crypto ciphers

View File

@ -16,7 +16,7 @@
Name: rpmlint
Version: 1.9
Release: 2%{?dist}
Release: 3%{?dist}
Summary: Tool for checking common errors in RPM packages
Group: Development/Tools
License: GPLv2
@ -133,6 +133,9 @@ make check PYTHON=%{python} PYTEST=%{pytest} FLAKE8=%{flake8}
%{_mandir}/man1/rpmlint.1*
%changelog
* Fri Aug 26 2016 Tom Callaway <spot@fedoraproject.org> - 1.9-3
- ignore long description lines for debuginfo packages
* Mon Jul 25 2016 Tom Callaway <spot@fedoraproject.org> - 1.9-2
- fix 403 ignore rule for github to be more complete (bz1359582)