]> git.pld-linux.org Git - packages/zeromq.git/blobdiff - zeromq.spec
- updated to 4.3.5 (relicensed to MPL v2.0 now)
[packages/zeromq.git] / zeromq.spec
index b90fc2739db24025b96e2ea68ab459c975076bae..d66bca39f89085c9a1380fb183efc47690cae5dd 100644 (file)
@@ -1,5 +1,8 @@
 #
 # Conditional build:
+%bcond_without gnutls          # TLS transport (GnuTLS based)
+%bcond_with    kerberos5       # GSSAPI client support [expects MIT Kerberos]
+%bcond_with    norm            # NORM extension
 %bcond_without pgm             # PGM extension (using OpenPGM library)
 %bcond_without tests           # build without tests
 
@@ -7,21 +10,29 @@ Summary:     0MQ - Zero Message Queue
 Summary(en.UTF-8):     ØMQ - Zero Message Queue
 Summary(pl.UTF-8):     ØMQ (Zero Message Queue) - kolejka komunikatów
 Name:          zeromq
-Version:       4.0.4
+Version:       4.3.5
 Release:       1
-License:       LGPL v3+
+License:       MPL v2.0
 Group:         Libraries
-Source0:       http://download.zeromq.org/%{name}-%{version}.tar.gz
-# Source0-md5: f3c3defbb5ef6cc000ca65e529fdab3b
+#Source0Download: https://github.com/zeromq/libzmq/releases/
+Source0:       https://github.com/zeromq/libzmq/releases/download/v%{version}/%{name}-%{version}.tar.gz
+# Source0-md5: ae933b1e98411fd7cb8309f9502d2737
 URL:           http://www.zeromq.org/
 BuildRequires: asciidoc
 BuildRequires: autoconf >= 2.61
 BuildRequires: automake
+%{?with_gnutls:BuildRequires:  gnutls-devel >= 3.1.4}
+%{?with_krb5:BuildRequires:    krb5-devel}
+BuildRequires: libbsd-devel
+# 5.1, 5.2, 5.3 are supported
+%{?with_pgm:BuildRequires:     libpgm-devel >= 5.1}
+%{?with_pgm:BuildRequires:     libpgm-devel < 5.4}
 BuildRequires: libsodium-devel
 BuildRequires: libstdc++-devel
 BuildRequires: libtool
+BuildRequires: libunwind-devel
 BuildRequires: libuuid-devel
-%{?with_pgm:BuildRequires:     libpgm-devel >= 5.1}
+%{?with_norm:BuildRequires:    norm-devel}
 BuildRequires: pkgconfig
 BuildRequires: sed >= 4.0
 BuildRequires: xmlto
@@ -58,8 +69,13 @@ Summary(en.UTF-8):   ØMQ library header files for development
 Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki ØMQ
 Group:         Development/Libraries
 Requires:      %{name} = %{version}-%{release}
+%{?with_gnutls:Requires:       gnutls >= 3.1.4}
+Requires:      libbsd-devel
+%{?with_pgm:Requires:  libpgm-devel >= 5.1}
+Requires:      libsodium-devel
 Requires:      libstdc++-devel
-Obsoletes:     zeromq-pthreads-devel
+Requires:      libunwind-devel
+Obsoletes:     zeromq-pthreads-devel < 2
 
 %description devel
 0MQ library header files for development.
@@ -76,7 +92,7 @@ Summary(en.UTF-8):    Static ØMQ library
 Summary(pl.UTF-8):     Statyczna biblioteka ØMQ
 Group:         Development/Libraries
 Requires:      %{name}-devel = %{version}-%{release}
-Obsoletes:     zeromq-pthreads-static
+Obsoletes:     zeromq-pthreads-static < 2
 
 %description static
 Static 0MQ library.
@@ -87,9 +103,27 @@ Static ØMQ library.
 %description static -l pl.UTF-8
 Statyczna biblioteka ØMQ.
 
+%package -n cppzmq-devel
+Summary:       Development files for cppzmq
+Summary(pl.UTF-8):     Pliki programistyczne cppzmq
+Group:         Development/Libraries
+License:       MIT
+Requires:      %{name}-devel = %{version}-%{release}
+
+%description -n cppzmq-devel
+The cppzmq-devel package contains the header file for developing
+applications that use the C++ interface for 0MQ.
+
+%description -n cppzmq-devel -l pl.UTF-8
+Ten pakiet zawiera plik nagłówkowy do tworzenia aplikacji
+wykorzystujących interfejs C++ do ØMQ.
+
 %prep
 %setup -q
 
+# uses some multicast networking, timeouts on some hosts
+%{__sed} -i -e '/^\s*tests\/test_radio_dish /d' Makefile.am
+
 %build
 %{__libtoolize}
 %{__aclocal}
@@ -97,8 +131,14 @@ Statyczna biblioteka ØMQ.
 %{__automake}
 %{__autoheader}
 %configure \
+       --enable-drafts \
        --disable-silent-rules \
-       %{?with_pgm:--with-system-pgm}
+       %{?with_kerberos5:--with-libgssapi_krb5} \
+       --with-libsodium \
+       %{?with_norm:--with-norm} \
+       %{?with_pgm:--with-pgm} \
+       %{?with_gnutls:--with-tls} \
+       --disable-Werror
 %{__make}
 
 %if %{with tests}
@@ -122,10 +162,10 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc AUTHORS ChangeLog MAINTAINERS NEWS
+%doc AUTHORS ChangeLog NEWS
 %attr(755,root,root) %{_bindir}/curve_keygen
 %attr(755,root,root) %{_libdir}/libzmq.so.*.*.*
-%attr(755,root,root) %ghost %{_libdir}/libzmq.so.3
+%attr(755,root,root) %ghost %{_libdir}/libzmq.so.5
 
 %files devel
 %defattr(644,root,root,755)
This page took 0.133465 seconds and 4 git commands to generate.