rpms/qpidc/F-8 qpidc.spec,1.6,1.7 sources,1.7,1.8

Nuno Santos (nsantos) fedora-extras-commits at redhat.com
Thu Jan 3 20:59:02 UTC 2008


Author: nsantos

Update of /cvs/extras/rpms/qpidc/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv27341

Modified Files:
	qpidc.spec sources 
Log Message:
importing release 0.2-16 from Beta repo


Index: qpidc.spec
===================================================================
RCS file: /cvs/extras/rpms/qpidc/F-8/qpidc.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qpidc.spec	17 Apr 2007 20:48:31 -0000	1.6
+++ qpidc.spec	3 Jan 2008 20:58:28 -0000	1.7
@@ -5,7 +5,7 @@
 
 Name:           qpidc
 Version:        0.2
-Release:        5%{?dist}
+Release:        16%{?dist}
 Summary:        Libraries for Qpid C++ client applications
 Group:          System Environment/Libraries
 License:        Apache Software License
@@ -13,7 +13,8 @@
 Source0:        http://rhm.et.redhat.com/download/%{name}-%{version}.tar.gz
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildRequires: apr-devel
+ExclusiveArch: i386 x86_64
+
 BuildRequires: boost-devel
 BuildRequires: cppunit-devel
 BuildRequires: doxygen
@@ -22,9 +23,9 @@
 BuildRequires: help2man
 BuildRequires: libtool
 BuildRequires: pkgconfig
+BuildRequires: ruby
 
 Requires: boost
-Requires: apr
 
 Requires(post):/sbin/chkconfig
 Requires(preun):/sbin/chkconfig
@@ -40,7 +41,6 @@
 Summary: Header files and documentation for developing Qpid C++ clients
 Group: Development/System
 Requires: %name = %version-%release
-Requires: apr-devel
 Requires: boost-devel
 Requires: e2fsprogs-devel
 
@@ -53,6 +53,7 @@
 Group: System Environment/Daemons
 Requires: %name = %version-%release
 
+
 %description -n %{qpidd}
 A message broker daemon that receives stores and routes messages using
 the open AMQP messaging protocol.
@@ -63,6 +64,7 @@
 Requires: %name-devel = %version-%release
 Requires: %{qpidd} = %version-%release
 
+
 %description -n %{qpidd}-devel
 Libraries and header files for developing extensions to the
 Qpid broker daemon.
@@ -71,7 +73,7 @@
 %setup -q
 
 %build
-%configure --disable-static
+%configure --disable-static --disable-cluster CXXFLAGS="-O3 -DNDEBUG"
 make %{?_smp_mflags}
 # Remove this generated perl file, we don't need it and it upsets rpmlint.
 rm docs/api/html/installdox
@@ -96,6 +98,7 @@
 %_libdir/libqpidcommon.so.0.1.0
 %_libdir/libqpidclient.so.0
 %_libdir/libqpidclient.so.0.1.0
+%config(noreplace) %_sysconfdir/qpidd.conf
 
 %files devel
 %defattr(-,root,root,-)
@@ -103,23 +106,29 @@
 %_includedir/qpid/client
 %_includedir/qpid/framing
 %_includedir/qpid/sys
+%_includedir/qpid/log
+%_includedir/qpid/management
 %_libdir/libqpidcommon.so
 %_libdir/libqpidclient.so
+%doc %_datadir/%{name}/examples
 %doc docs/api/html
 
 %files -n %{qpidd}
 %defattr(-,root,root,-)
 %_libdir/libqpidbroker.so.0
 %_libdir/libqpidbroker.so.0.1.0
+%_libdir/libqpidcluster.so.0
+%_libdir/libqpidcluster.so.0.1.0
 %_sbindir/%{qpidd}
 %{_initrddir}/%{qpidd}
 %doc %_mandir/man1/%{qpidd}.*
 
 %files -n %{qpidd}-devel
 %defattr(-,root,root,-)
-%doc rpm/README.qpidd-devel 
+%doc rpm/README.qpidd-devel
 %defattr(-,root,root,-)
 %_libdir/libqpidbroker.so
+%_libdir/libqpidcluster.so
 %_includedir/qpid/broker
 
 %post -p /sbin/ldconfig
@@ -146,6 +155,35 @@
 
 %changelog
 
+* Thu Jan 03 2008 Nuno Santos <nsantos at redhat.com> - 0.2-16
+- limit builds to i386 and x86_64 archs
+
+* Thu Jan 03 2008 Nuno Santos <nsantos at redhat.com> - 0.2-15
+- add ruby as a build dependency
+
+* Tue Dec 18 2007 Nuno Santos <nsantos at redhat.com> - 0.2-14
+- include fixes from Gordon Sim (fragmentation, lazy-loading, staging) 
+  and Alan Conway (exception handling in the client).
+
+* Thu Dec 6 2007 Alan Conway <aconway at redhat.com> - 0.2-13
+- installcheck target to build examples in installation.
+
+* Thu Nov 8 2007 Alan Conway <aconway at redhat.com> - 0.2-10
+- added examples to RPM package.
+
+* Thu Oct 9 2007 Alan Conway <aconway at redhat.com> - 0.2-9
+- added config(noreplace) for qpidd.conf
+
+* Thu Oct 4 2007 Alan Conway <aconway at redhat.com> - 0.2-8
+- Added qpidd.conf configuration file.
+- Updated man page to detail configuration options.
+
+* Thu Sep 20 2007 Alan Conway <aconway at redhat.com> - 0.2-7
+- Removed apr dependency.
+
+* Wed Aug 1 2007 Alan Conway <aconway at redhat.com> - 0.2-6
+- added --disable-cluster flag
+
 * Tue Apr 17 2007 Alan Conway <aconway at redhat.com> - 0.2-5
 - Add missing Requires: e2fsprogs-devel for qpidc-devel.
 
@@ -159,7 +197,7 @@
 - Bugfix for memory errors on x86_64.
 
 * Thu Apr 12 2007 Alan Conway <aconway at redhat.com> - 0.2-1
-- Bumped version number for rhm dependencies. 
+- Bumped version number for rhm dependencies.
 
 * Wed Apr 11 2007 Alan Conway <aconway at redhat.com> - 0.1-5
 - Add qpidd-devel sub-package.
@@ -170,7 +208,7 @@
 - Add --disable-static.
 
 * Thu Jan 25 2007 Alan Conway <aconway at redhat.com> - 0.1-3
-- Applied Jim Meyerings fixes from http://mail-archives.apache.org/mod_mbox/incubator-qpid-dev/200701.mbox/%3c87hcugzmyp.fsf@rho.meyering.net%3e
+- Applied Jim Meyerings fixes from http://mail-archives.apache.org/mod_mbox/incubator-qpid-dev/200701.mbox/<87hcugzmyp.fsf@rho.meyering.net>
 
 * Mon Dec 22 2006 Alan Conway <aconway at redhat.com> - 0.1-1
 - Fixed all rpmlint complaints (with help from David Lutterkort)


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/qpidc/F-8/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources	17 Apr 2007 20:48:31 -0000	1.7
+++ sources	3 Jan 2008 20:58:28 -0000	1.8
@@ -1 +1 @@
-3c9ec5d142146fd7343893d1ef2ab815  qpidc-0.2.tar.gz
+bf44b9f69ad6fc2db1de1d368df4489c  qpidc-0.2.tar.gz




More information about the fedora-extras-commits mailing list