rpms/brutus-keyring/devel brutus-keyring.spec,1.1,1.2

Brian Pepple (bpepple) fedora-extras-commits at redhat.com
Mon Jul 16 15:04:41 UTC 2007


Author: bpepple

Update of /cvs/pkgs/rpms/brutus-keyring/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv26257

Modified Files:
	brutus-keyring.spec 
Log Message:
* Mon Jul 16 2007 Brian Pepple <bpepple at fedoraproject.org> - 0.9.0-5
- spec clean-up.
- Drop unnecessary requires.



Index: brutus-keyring.spec
===================================================================
RCS file: /cvs/pkgs/rpms/brutus-keyring/devel/brutus-keyring.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- brutus-keyring.spec	9 Jul 2007 15:31:34 -0000	1.1
+++ brutus-keyring.spec	16 Jul 2007 15:04:09 -0000	1.2
@@ -1,44 +1,21 @@
-#  
-#  RPM spec file for the Brutus Keyring.
-#  Copyright (C) 2007 OMC Denmark ApS
-#
-#  This program is free software; you can redistribute it and/or modify
-#  it under the terms of the GNU General Public License as published by
-#  the Free Software Foundation; either version 2 of the License, or
-#  (at your option) any later version.
-#
-#  This program is distributed in the hope that it will be useful,
-#  but WITHOUT ANY WARRANTY; without even the implied warranty of
-#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-#  GNU General Public License for more details.
-#
-#  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software
-#  Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
-#  MA 02111-1307 USA
-#
-
-
-
-
-Summary:         Brutus Keyring - a small keyring daemon build upon libgcrypt
 Name:            brutus-keyring
 Version:         0.9.0
-Release:         4%{?dist}
+Release:         5%{?dist}
+Summary:         Small keyring daemon
+
 License:         GPL
 Group:           Applications/System
+URL:             http://trac.brutus.net/brutus-keyring/
 Source0:         http://www.omesc.com/sites/default/files/downloads/dist/%{name}/Fedora%207/SOURCES/%{name}-%{version}.tar.gz
 BuildRoot:       %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-URL:             http://trac.brutus.net/brutus-keyring/
-Conflicts:       evolution-brutus < 1.1.28
+
 BuildRequires:   ORBit2-devel >= 2.14.1
 BuildRequires:   libgcrypt-devel >= 1.2.2
 
+Requires:        libIDL >= 0.8.5
 
+Conflicts:       evolution-brutus < 1.1.28
 
-Requires:        ORBit2 >= 2.14.1
-Requires:        libIDL >= 0.8.5
-Requires:        libgcrypt >= 1.2.2
 
 %description
 This is the Brutus Keyring. It is a very small and simple 
@@ -51,12 +28,14 @@
 You will need to install this package and brutus-keyring-devel if 
 you want to write programs using Brutus Keyring.
 
+
 %package devel
 Summary:         IDL and header files for brutus-keyring
 Group:           Development/Libraries
-Requires:        %name = %{version}-%{release}
+Requires:        %{name} = %{version}-%{release}
 Requires:        pkgconfig >= 0.20
-Requires:        ORBit2*-devel*
+Requires:        ORBit2-devel >= 2.14.1
+
 
 %description devel 
 This is the Brutus Keyring development files. Brutus Keyring is 
@@ -70,45 +49,53 @@
 %prep
 %setup -q 
 
+
 %build
-%configure --enable-brutus-target=fedora --enable-brutus-dist=yes --enable-brutus-debug=yes --enable-brutus-devel=yes
+%configure				\
+	--enable-brutus-target=fedora	\
+	--enable-brutus-dist=yes	\
+	--enable-brutus-debug=yes	\
+	--enable-brutus-devel=yes
 make %{?_smp_mflags}
 
+
 %install 
 rm -rf %{buildroot}
 make INSTALL="install -c -p" DESTDIR=%{buildroot} install
-find %{buildroot}%{_libdir}/ -name '*.la' -exec rm {} \;
+find %{buildroot} -name '*.la' -exec rm -f {} ';'
+# Don't bother to pack unnecessary docs.
+#rm -rf %{buildroot}%{_datadir}/doc/%{name}-devel-%{version}/
+
+
+%clean 
+rm -rf %{buildroot}
+
 
 %post devel -p /sbin/ldconfig
 
+
 %postun devel -p /sbin/ldconfig
 
-%clean 
-rm -rf %{buildroot}
 
 %files
 %defattr(-,root,root,-)
-%dir %{_docdir}/brutus-keyring-0.9.0
+%doc COPYING README AUTHORS ChangeLog docs/brutus-keyring-guide
 %{_bindir}/brutus-keyringd
-%{_docdir}/brutus-keyring-0.9.0/brutus-keyring-guide
-%{_docdir}/brutus-keyring-0.9.0/COPYING
-%{_docdir}/brutus-keyring-0.9.0/README
-%{_docdir}/brutus-keyring-0.9.0/AUTHORS
-%{_docdir}/brutus-keyring-0.9.0/ChangeLog
+%{_bindir}/%{name}-client
 
 %files devel
 %defattr(-,root,root,-)
-%dir %{_includedir}/brutus-keyring-1.0
-%dir %{_datadir}/idl/brutus-keyring
-%dir %{_docdir}/brutus-keyring-devel-0.9.0
-%{_bindir}/brutus-keyring-client
+%doc docs/brutus-keyring-devel-guide
+%{_includedir}/%{name}-1.0/*
 %{_libdir}/libBrutusKeyringd*
 %{_libdir}/pkgconfig/libBrutusKeyringd*
-%{_includedir}/brutus-keyring-1.0/*
-%{_datadir}/idl/brutus-keyring/*
-%{_docdir}/brutus-keyring-devel-0.9.0/brutus-keyring-devel-guide
+%{_datadir}/idl/%{name}/
 
 %changelog
+* Mon Jul 16 2007 Brian Pepple <bpepple at fedoraproject.org> - 0.9.0-5
+- spec clean-up.
+- Drop unnecessary requires.
+
 * Sat Jun 30 2007 Jules Colding <colding at omesc.com> 0.9.0-4
 - Fix one more review issue
 




More information about the fedora-extras-commits mailing list