rpms/check/devel check.spec,1.13,1.14

Jerry James jjames at fedoraproject.org
Thu Aug 6 15:29:07 UTC 2009


Author: jjames

Update of /cvs/pkgs/rpms/check/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv2146/devel

Modified Files:
	check.spec 
Log Message:
* Thu Aug  6 2009 Jerry James <loganjerry at gmail.com> - 0.9.6-5
- Support --excludedocs (bz 515933)
- Replace broken upstream info dir entry



Index: check.spec
===================================================================
RCS file: /cvs/pkgs/rpms/check/devel/check.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -p -r1.13 -r1.14
--- check.spec	24 Jul 2009 18:51:31 -0000	1.13
+++ check.spec	6 Aug 2009 15:29:07 -0000	1.14
@@ -1,6 +1,6 @@
 Name:           check
 Version:        0.9.6
-Release:        4%{?dist}
+Release:        5%{?dist}
 Summary:        A unit test framework for C
 Source0:        http://download.sourceforge.net/check/%{name}-%{version}.tar.gz
 # This patch fixes debian bug 519597: use of -ansi conflicts with strdup()
@@ -56,13 +56,17 @@ rm -rf $RPM_BUILD_ROOT
 
 %post
 /sbin/ldconfig
-/sbin/install-info %{_infodir}/%{name}.info %{_infodir}/dir || :
+if [ -e %{_infodir}/%{name}.info* ]; then
+  /sbin/install-info \
+    --entry='* Check: (check).               A unit testing framework for C.' \
+    %{_infodir}/%{name}.info %{_infodir}/dir || :
+fi
 
 %postun -p /sbin/ldconfig
 
 %preun
-if [ $1 = 0 ]; then
-    /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
+if [ $1 = 0 -a -e %{_infodir}/%{name}.info* ]; then
+  /sbin/install-info --delete %{_infodir}/%{name}.info %{_infodir}/dir || :
 fi
 
 %files
@@ -86,6 +90,10 @@ fi
 %{_libdir}/libcheck.a
 
 %changelog
+* Thu Aug  6 2009 Jerry James <loganjerry at gmail.com> - 0.9.6-5
+- Support --excludedocs (bz 515933)
+- Replace broken upstream info dir entry
+
 * Fri Jul 24 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.9.6-4
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 




More information about the fedora-extras-commits mailing list