From cd5719118adca74f0251e517ab98b198795c593f Mon Sep 17 00:00:00 2001 From: mharris Date: Fri, 22 Apr 2005 13:17:21 +0000 Subject: [PATCH] - 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) --- pinfo.spec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pinfo.spec b/pinfo.spec index 9234d11..545ee5d 100644 --- a/pinfo.spec +++ b/pinfo.spec @@ -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 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 0.6.8-10 - Rebuilt with gcc 4 for FC4 - Replaced Prereq: with Requires(post,preun)