You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.8 KiB
109 lines
2.8 KiB
Name: zeromq
|
|
Version: 2.1.3
|
|
Release: 1%{?dist}
|
|
Summary: Software library for fast, message-based applications
|
|
|
|
Group: System Environment/Libraries
|
|
License: LGPLv3+
|
|
URL: http://www.zeromq.org
|
|
# VCS: git:http://github.com/zeromq/zeromq2.git
|
|
Source0: http://download.zeromq.org/zeromq-%{version}.tar.gz
|
|
|
|
BuildRequires: glib2-devel
|
|
BuildRequires: libuuid-devel
|
|
|
|
# utils subpackage was removed in F-16
|
|
# -> can be deleted in F-19
|
|
Obsoletes: zeromq-utils < 2.1.3-1
|
|
|
|
%description
|
|
The 0MQ lightweight messaging kernel is a library which extends the
|
|
standard socket interfaces with features traditionally provided by
|
|
specialized messaging middle-ware products. 0MQ sockets provide an
|
|
abstraction of asynchronous message queues, multiple messaging
|
|
patterns, message filtering (subscriptions), seamless access to
|
|
multiple transport protocols and more.
|
|
|
|
This package contains the ZeroMQ shared library.
|
|
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
%configure --disable-static
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
make install DESTDIR=%{buildroot} INSTALL="install -p"
|
|
|
|
# remove *.la
|
|
rm %{buildroot}%{_libdir}/libzmq.la
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc AUTHORS ChangeLog COPYING COPYING.LESSER NEWS README
|
|
%{_libdir}/libzmq.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_libdir}/libzmq.so
|
|
%{_libdir}/pkgconfig/libzmq.pc
|
|
%{_includedir}/zmq*
|
|
%{_mandir}/man3/zmq*
|
|
%{_mandir}/man7/zmq*
|
|
|
|
|
|
%changelog
|
|
* Wed Mar 23 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.3-1
|
|
- update to new version (#690199)
|
|
- utils subpackage was removed upstream
|
|
(obsolete it)
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.10-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Thu Jan 13 2011 Pavel Zhukov <pavel@zhukoff.net> - 2.0.10-1
|
|
- update version
|
|
- add rpath delete
|
|
- change includedir filelist
|
|
|
|
* Fri Aug 27 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.8-1
|
|
- update to new version
|
|
|
|
* Fri Jul 23 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.7-4
|
|
- upstream VCS changed
|
|
- remove buildroot / %%clean
|
|
- change descriptions
|
|
|
|
* Tue Jul 20 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.7-3
|
|
- move binaries to seperate utils package
|
|
|
|
* Sat Jun 12 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.7-2
|
|
- remove BR: libstdc++-devel
|
|
- move man3 to the devel package
|
|
- change group to System Environment/Libraries
|
|
|
|
* Sat Jun 12 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.7-1
|
|
- initial package (based on upstreams example one)
|