- Accept "Redistributable, no modification permitted" as a valid license. - Filter messages about doc file dependencies on /bin/sh. - Add missing dependency on file.
This commit is contained in:
parent
c3231bdd3c
commit
ac7c807201
@ -1 +1 @@
|
||||
rpmlint-0.79.tar.bz2
|
||||
rpmlint-0.80.tar.bz2
|
||||
|
@ -4,6 +4,7 @@
|
||||
# options in /etc/rpmlint/config and/or ~/.rpmlintrc as needed.
|
||||
|
||||
from Config import *
|
||||
from TagsCheck import DEFAULT_VALID_LICENSES
|
||||
|
||||
setOption("DistRegex", '\.(fc|rhe?l|el)\d+(?=\.|$)')
|
||||
setOption("UseVersionInChangeLog", 1)
|
||||
@ -23,6 +24,9 @@ setOption("DanglingSymlinkExceptions", (
|
||||
['consolehelper$', 'usermode'],
|
||||
['consolehelper-gtk$', 'usermode-gtk'],
|
||||
))
|
||||
setOption("ValidLicenses",
|
||||
DEFAULT_VALID_LICENSES +
|
||||
("Redistributable, no modification permitted", ))
|
||||
# Standard users & groups from the setup package:
|
||||
setOption("StandardUsers",
|
||||
("root", "bin", "daemon", "adm", "lp", "sync", "shutdown", "halt",
|
||||
@ -56,3 +60,4 @@ addFilter("-debuginfo no-documentation")
|
||||
addFilter("-debuginfo [^ ]+ /usr/lib/debug/")
|
||||
addFilter("non-standard-dir-in-usr libexec")
|
||||
addFilter(" gpg-pubkey ")
|
||||
addFilter(" doc-file-dependency .* /bin/sh$")
|
||||
|
13
rpmlint.spec
13
rpmlint.spec
@ -1,5 +1,5 @@
|
||||
Name: rpmlint
|
||||
Version: 0.79
|
||||
Version: 0.80
|
||||
Release: 1%{?dist}
|
||||
Summary: Tool for checking common errors in RPM packages
|
||||
|
||||
@ -13,14 +13,15 @@ Patch1: %{name}-0.77-compile.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python >= 2.0
|
||||
BuildRequires: python >= 2.2
|
||||
BuildRequires: rpm-python
|
||||
BuildRequires: sed >= 3.95
|
||||
Requires: rpm-python
|
||||
Requires: python >= 2.0
|
||||
Requires: python >= 2.2
|
||||
Requires: cpio
|
||||
Requires: binutils
|
||||
Requires: desktop-file-utils
|
||||
Requires: file
|
||||
|
||||
%description
|
||||
rpmlint is a tool for checking common errors in RPM packages. Binary
|
||||
@ -65,6 +66,12 @@ rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Apr 12 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.80-1
|
||||
- 0.80, fixes #227389, #228645, #233795.
|
||||
- Accept "Redistributable, no modification permitted" as a valid license.
|
||||
- Filter messages about doc file dependencies on /bin/sh.
|
||||
- Add missing dependency on file.
|
||||
|
||||
* Fri Feb 2 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.79-1
|
||||
- 0.79, fixes #211417, #212491, #214605, #218250, #219068, #220061, #221116,
|
||||
#222585, and #226879.
|
||||
|
Loading…
Reference in New Issue
Block a user