From 30da103309921eea08e11f7c9ec424c700a28f98 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 21 Sep 2005 18:18:50 +0000 Subject: [PATCH] - don't use --record and list files by hand so that we don't miss directories (#158480) --- python-urlgrabber.spec | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/python-urlgrabber.spec b/python-urlgrabber.spec index 23b0609..915911d 100644 --- a/python-urlgrabber.spec +++ b/python-urlgrabber.spec @@ -3,7 +3,7 @@ Summary: A high-level cross-protocol url-grabber Name: python-urlgrabber Version: 2.9.6 -Release: 3 +Release: 4 Source0: urlgrabber-%{version}.tar.gz Patch0: python-urlgrabber-2.9.6-reget.patch License: LGPL @@ -27,16 +27,24 @@ authentication, proxies and more. python setup.py build %install -python setup.py install -O1 --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES +python setup.py install -O1 --root=$RPM_BUILD_ROOT +rm -rf $RPM_BUILD_ROOT/%{_docdir}/urlgrabber-%{version} %clean rm -rf $RPM_BUILD_ROOT -%files -f INSTALLED_FILES +%files %defattr(-,root,root) +%doc ChangeLog LICENSE README TODO %dir %{python_sitelib}/urlgrabber +%{python_sitelib}/urlgrabber/* +%{_bindir}/urlgrabber %changelog +* Wed Sep 21 2005 Jeremy Katz - 2.9.6-4 +- don't use --record and list files by hand so that we don't miss + directories (#158480) + * Wed Sep 14 2005 Jeremy Katz - 2.9.6-3 - add directory to file list (#168261)