0.69, default config and miscellaneous other improvements.
This commit is contained in:
parent
96ada82990
commit
c4857dd4f0
@ -1 +1 @@
|
||||
rpmlint-0.68.tar.bz2
|
||||
rpmlint-0.69.tar.bz2
|
||||
|
@ -4,15 +4,13 @@
|
||||
|
||||
from Config import *
|
||||
|
||||
#setOption("Vendor", "Fedora Extras")
|
||||
#setOption("Distribution", "Fedora Extras")
|
||||
setOption("ReleaseExtension", '')
|
||||
setOption("ValidBuildHost", ".*")
|
||||
setOption("Packager", ".*")
|
||||
setOption("UseVersionInChangeLog", 1)
|
||||
setOption("UseBzip2", 0)
|
||||
setOption("UseEpoch", 0)
|
||||
setOption("ValidSrcPerms", (0644, ))
|
||||
setOption("ValidSrcPerms", (0664, 0644, ))
|
||||
setOption("ValidGroups", (
|
||||
"Amusements/Games",
|
||||
"Amusements/Graphics",
|
||||
@ -83,3 +81,8 @@ addFilter("E: .* no-dependency-on (perl|python)-base.*")
|
||||
addFilter("W: .* (python|perl5)-naming-policy-not-applied.*")
|
||||
addFilter("W: .* invalid-distribution .*")
|
||||
addFilter("W: .* invalid-vendor .*")
|
||||
addFilter("E: .* incoherent-version-in-name.*")
|
||||
addFilter("E: .* invalid-build-requires .*")
|
||||
addFilter("E: .* no-packager-tag")
|
||||
addFilter("W: .* ghost-files-without-postin")
|
||||
addFilter("W: .* postin-without-ghost-file-creation .*")
|
||||
|
40
rpmlint.spec
40
rpmlint.spec
@ -1,12 +1,12 @@
|
||||
Name: rpmlint
|
||||
Version: 0.68
|
||||
Version: 0.69
|
||||
Release: 2
|
||||
Summary: RPM correctness checker
|
||||
Summary: Tool for checking common errors in RPM packages
|
||||
|
||||
Group: Development/Tools
|
||||
License: GPL
|
||||
URL: http://people.mandrakesoft.com/~flepied/projects/rpmlint/
|
||||
Source0: http://people.mandrakesoft.com/~flepied/projects/rpmlint/dist/rpmlint-0.68.tar.bz2
|
||||
Source0: http://people.mandrakesoft.com/~flepied/projects/rpmlint/dist/%{name}-%{version}.tar.bz2
|
||||
Source1: %{name}-fedora-config
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
@ -23,6 +23,9 @@ and source packages can be checked.
|
||||
%setup -q
|
||||
%{__perl} -pi -e 's|/etc/httpd/webapps\.d|%{_sysconfdir}/httpd/conf.d|' \
|
||||
FilesCheck.py I18NCheck.py
|
||||
for f in AUTHORS ChangeLog ; do
|
||||
iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv $f.utf8 $f
|
||||
done
|
||||
|
||||
|
||||
%build
|
||||
@ -32,10 +35,8 @@ make
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
rm -f $RPM_BUILD_ROOT%{_datadir}/rpmlint/compile.pyo
|
||||
install -pm 644 rpmlint.bash-completion $RPM_BUILD_ROOT%{_datadir}/rpmlint
|
||||
install -dm 755 $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
|
||||
touch $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/rpmlint
|
||||
install -Dpm 644 rpmlint.bash-completion \
|
||||
$RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/rpmlint
|
||||
install -pm 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rpmlint/config
|
||||
|
||||
# Take care of files that may be generated later.
|
||||
@ -59,28 +60,29 @@ done
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%triggerin -- bash-completion
|
||||
if [ ! -e %{_sysconfdir}/bash_completion.d/rpmlint ] ; then
|
||||
ln -s %{_datadir}/rpmlint/rpmlint.bash-completion \
|
||||
%{_sysconfdir}/bash_completion.d/rpmlint
|
||||
fi
|
||||
|
||||
%triggerun -- bash-completion
|
||||
[ $2 -gt 0 ] || rm -f %{_sysconfdir}/bash_completion.d/rpmlint
|
||||
|
||||
|
||||
%files -f %{name}-%{version}-files.list
|
||||
%defattr(-,root,root,0755)
|
||||
%doc AUTHORS COPYING ChangeLog README
|
||||
%{_bindir}/rpm*
|
||||
%dir %{_datadir}/rpmlint
|
||||
%{_datadir}/rpmlint/rpmlint.bash-completion
|
||||
%exclude %{_datadir}/rpmlint/check-install.py*
|
||||
%dir %{_sysconfdir}/rpmlint
|
||||
%config(noreplace) %{_sysconfdir}/rpmlint/config
|
||||
%ghost %{_sysconfdir}/bash_completion.d/rpmlint
|
||||
# Not config (yet?) to achieve clean upgrade from pre-0.69.
|
||||
%{_sysconfdir}/bash_completion.d
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Apr 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.69-2
|
||||
- 0.69.
|
||||
- Simplify bash-completion snippet installation, remove triggers.
|
||||
- Default configuration improvements: filter messages about missing packager,
|
||||
Mandriva specific package naming conventions, %%ghost files without
|
||||
%%post scriptlets, and 0664 source permissions.
|
||||
- Exclude check-install.py, it doesn't currently work with rpm >= 4.2.
|
||||
- Convert docs to UTF-8.
|
||||
- Improve summary.
|
||||
|
||||
* Sun Mar 13 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.68-2
|
||||
- 0.68, siteperl patch applied upstream.
|
||||
- Fix "no-dependency-on" filtering in default config.
|
||||
|
Loading…
Reference in New Issue
Block a user