librabbitmq/librabbitmq.spec

133 lines
3.1 KiB
RPMSpec
Raw Normal View History

2012-03-12 15:19:34 +00:00
Name: librabbitmq
Summary: Client library and command line tools for AMQP
Version: 0.3.0
2013-03-13 09:05:09 +00:00
Release: 2%{?dist}
2012-08-01 13:10:50 +00:00
License: MIT
2012-03-12 15:19:34 +00:00
Group: System Environment/Libraries
2012-08-01 13:10:50 +00:00
URL: https://github.com/alanxz/rabbitmq-c
2012-03-12 15:19:34 +00:00
Source0: https://github.com/alanxz/rabbitmq-c/archive/rabbitmq-c-v%{version}.tar.gz
2012-03-12 15:19:34 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: libtool
BuildRequires: python-simplejson
# For tools
%if 0%{?rhel} == 5
BuildRequires: popt
%else
BuildRequires: popt-devel
%endif
# For man page
BuildRequires: xmlto
%description
This is a C-language AMQP client library for use with AMQP servers
speaking protocol versions 0-9-1.
%package devel
Summary: Header files and development libraries for %{name}
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package contains the header files and development libraries
for %{name}.
2012-03-12 15:19:34 +00:00
%package tools
Summary: Example tools built using the librabbitmq package
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}
2012-03-12 15:19:34 +00:00
%description tools
This package contains example tools built using %{name}.
It provides:
amqp-consume Consume messages from a queue on an AMQP server
amqp-declare-queue Declare a queue on an AMQP server
amqp-delete-queue Delete a queue from an AMQP server
amqp-get Get a message from a queue on an AMQP server
amqp-publish Publish a message on an AMQP server
%prep
%setup -q -n rabbitmq-c-rabbitmq-c-v%{version}
2012-03-12 15:19:34 +00:00
# Copy sources to be included in -devel docs.
cp -pr examples Examples
2012-03-12 15:19:34 +00:00
%build
autoreconf -i
2012-08-01 13:10:50 +00:00
%configure --enable-tools --enable-docs
2012-03-12 15:19:34 +00:00
make %{_smp_mflags}
%install
rm -rf %{buildroot}
make install DESTDIR="%{buildroot}"
2012-08-01 13:10:50 +00:00
rm %{buildroot}%{_libdir}/%{name}.la
2012-03-12 15:19:34 +00:00
%check
make check
%clean
rm -rf %{buildroot}
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr (-,root,root,-)
%doc AUTHORS README.md THANKS TODO LICENSE-MIT
%{_libdir}/%{name}.so.1*
2012-03-12 15:19:34 +00:00
%files devel
%defattr (-,root,root,-)
%doc Examples
2012-03-12 15:19:34 +00:00
%{_libdir}/%{name}.so
%{_includedir}/amqp*
2012-08-01 13:10:50 +00:00
%{_libdir}/pkgconfig/librabbitmq.pc
2012-03-12 15:19:34 +00:00
%files tools
%defattr(-,root,root)
%{_bindir}/amqp-*
%doc %{_mandir}/man1/amqp-*.1*
%doc %{_mandir}/man7/librabbitmq-tools.7.gz
2012-03-12 15:19:34 +00:00
%changelog
2013-03-13 09:05:09 +00:00
* Wed Mar 13 2013 Remi Collet <remi@fedoraproject.org> - 0.3.0-2
- remove tools from main package
* Wed Mar 13 2013 Remi Collet <remi@fedoraproject.org> - 0.3.0-1
- update to 0.3.0
- create sub-package for tools
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-0.2.git2059570
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2012-08-01 13:10:50 +00:00
* Wed Aug 01 2012 Remi Collet <remi@fedoraproject.org> - 0.2-0.1.git2059570
- update to latest snapshot (version 0.2, moved to github)
- License is now MIT
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-0.3.hgfb6fca832fd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
2012-03-12 15:19:34 +00:00
* Sun Mar 11 2012 Remi Collet <remi@fedoraproject.org> - 0.1-0.2.hgfb6fca832fd2
- add %%check (per review comment)
* Sat Mar 10 2012 Remi Collet <remi@fedoraproject.org> - 0.1-0.1.hgfb6fca832fd2
- Initial RPM