diff --git a/.cvsignore b/.cvsignore index b285626..23b2b17 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -rpmlint-0.79.tar.bz2 +rpmlint-0.80.tar.bz2 diff --git a/rpmlint.config b/rpmlint.config index ef5ce3d..6582ddb 100644 --- a/rpmlint.config +++ b/rpmlint.config @@ -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$") diff --git a/rpmlint.spec b/rpmlint.spec index 6c7c6a2..0c0580f 100644 --- a/rpmlint.spec +++ b/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ä - 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ä - 0.79-1 - 0.79, fixes #211417, #212491, #214605, #218250, #219068, #220061, #221116, #222585, and #226879. diff --git a/sources b/sources index 4ef1ddb..ef07119 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -50ebdf88ede4b1265e9a69b20e356f44 rpmlint-0.79.tar.bz2 +31e1bda0b4e19188a7a5b075dc1a203f rpmlint-0.80.tar.bz2