rpms/texinfo/devel texinfo.spec,1.56,1.57

Vitezslav Crhonek (vcrhonek) fedora-extras-commits at redhat.com
Thu Jun 5 10:18:20 UTC 2008


Author: vcrhonek

Update of /cvs/extras/rpms/texinfo/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv8171

Modified Files:
	texinfo.spec 
Log Message:
Remove sed Requires (dependency loop)


Index: texinfo.spec
===================================================================
RCS file: /cvs/extras/rpms/texinfo/devel/texinfo.spec,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- texinfo.spec	2 Jun 2008 13:00:14 -0000	1.56
+++ texinfo.spec	5 Jun 2008 10:17:38 -0000	1.57
@@ -3,7 +3,7 @@
 Summary: Tools needed to create Texinfo format documentation files
 Name: texinfo
 Version: 4.12
-Release: 3%{?dist}
+Release: 4%{?dist}
 License: GPLv3+
 Group: Applications/Publishing
 Url: http://www.gnu.org/software/texinfo/
@@ -13,7 +13,6 @@
 Patch0: texinfo-4.12-zlib.patch
 Patch1: texinfo-4.12-install-info_crash.patch
 Requires(post): /sbin/install-info
-Requires(post): /bin/sed
 Requires(preun): /sbin/install-info
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires: zlib-devel, ncurses-devel
@@ -94,7 +93,9 @@
 
 %post -n info
 /sbin/install-info %{_infodir}/info-stnd.info %{_infodir}/dir
-/bin/sed -i '/^This is.*produced by makeinfo.*from/d' %{_infodir}/dir || :
+if [ -x /bin/sed ]; then
+    /bin/sed -i '/^This is.*produced by makeinfo.*from/d' %{_infodir}/dir || :
+fi
 
 %preun -n info
 if [ $1 = 0 ]; then
@@ -145,6 +146,10 @@
 %{_mandir}/man1/pdftexi2dvi.1*
 
 %changelog
+* Wed Jun  4 2008 Vitezslav Crhonek <vcrhonek at redhat.com> - 4.12-4
+- Remove sed Requires (dependency loop)
+  Resolves: #449705
+
 * Mon Jun  2 2008 Vitezslav Crhonek <vcrhonek at redhat.com> - 4.12-3
 - Fix install-info crashes on some info files
   Resolves: #449292




More information about the fedora-extras-commits mailing list