- Work around an idiotic bug in rpm (#118780) by using multiple Requires

lines instead of the Requires(foo,bar) syntax that rpm documentation
    states is valid. This fixes reported pinfo kickstart issue (#155700)
This commit is contained in:
mharris 2005-04-22 13:17:21 +00:00
parent de2a447f64
commit cd5719118a

View File

@ -1,7 +1,7 @@
Summary: An info file viewer.
Name: pinfo
Version: 0.6.8
Release: 10
Release: 11
Group: System Environment/Base
License: GPL
URL: http://dione.ids.pl/~pborys/software/pinfo
@ -13,9 +13,11 @@ Patch1: pinfo-0.6.8-htmlview.patch
Patch2: pinfo-0.6.8.memcorruption.patch
Patch3: pinfo-0.6.8.memleak.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-root
BuildRequires: ncurses-devel
Requires: htmlview
Requires(post,preun): /sbin/install-info
Requires(post): /sbin/install-info
Requires(preun): /sbin/install-info
%description
Pinfo is an info file (or man page) viewer with a user interface
@ -68,6 +70,11 @@ fi
rm -rf $RPM_BUILD_ROOT
%changelog
* Fri Apr 22 2005 Mike A. Harris <mharris@redhat.com> 0.6.8-11
- Work around an idiotic bug in rpm (#118780) by using multiple Requires
lines instead of the Requires(foo,bar) syntax that rpm documentation
states is valid. This fixes reported pinfo kickstart issue (#155700)
* Thu Mar 3 2005 Mike A. Harris <mharris@redhat.com> 0.6.8-10
- Rebuilt with gcc 4 for FC4
- Replaced Prereq: with Requires(post,preun)