Blame SPECS/zeromq.spec

c09f90
%bcond_without pgm
c09f90
%bcond_without unwind
c09f90
c09f90
Name:           zeromq
c09f90
Version:        4.3.5
c09f90
Release:        19%{?dist}
c09f90
Summary:        Software library for fast, message-based applications
c09f90
c09f90
License:        MPL-2.0 AND BSD-3-Clause AND MIT
c09f90
URL:            https://zeromq.org
c09f90
Source0:        https://github.com/%{name}/libzmq/archive/v%{version}/%{name}-%{version}.tar.gz
c09f90
Patch1:         zeromq-configure-c99.patch
c09f90
c09f90
BuildRequires:  make
c09f90
BuildRequires:  autoconf
c09f90
BuildRequires:  automake
c09f90
BuildRequires:  gcc-c++
c09f90
BuildRequires:  libtool
c09f90
BuildRequires:  asciidoc
c09f90
BuildRequires:  xmlto
c09f90
BuildRequires:  libsodium-devel
c09f90
c09f90
%if %{with unwind}
c09f90
BuildRequires:  libunwind-devel
c09f90
%endif
c09f90
c09f90
%if %{with pgm}
c09f90
BuildRequires:  openpgm-devel
c09f90
BuildRequires:  krb5-devel
c09f90
%endif
c09f90
c09f90
%description
c09f90
The 0MQ lightweight messaging kernel is a library which extends the
c09f90
standard socket interfaces with features traditionally provided by
c09f90
specialized messaging middle-ware products. 0MQ sockets provide an
c09f90
abstraction of asynchronous message queues, multiple messaging
c09f90
patterns, message filtering (subscriptions), seamless access to
c09f90
multiple transport protocols and more.
c09f90
c09f90
This package contains the ZeroMQ shared library.
c09f90
c09f90
c09f90
%package devel
c09f90
Summary:        Development files for %{name}
c09f90
Requires:       %{name}%{?_isa} = %{version}-%{release}
c09f90
c09f90
c09f90
%description devel
c09f90
The %{name}-devel package contains libraries and header files for
c09f90
developing applications that use %{name}.
c09f90
c09f90
c09f90
%prep
c09f90
%autosetup -p1 -n libzmq-%{version}
c09f90
c09f90
# Remove bundled code.
c09f90
rm -rf external/wepoll
c09f90
c09f90
# Fix permissions.
c09f90
chmod -x src/xsub.hpp
c09f90
c09f90
c09f90
%build
c09f90
autoreconf -fi
c09f90
%configure \
c09f90
%if %{with pgm}
c09f90
            --with-pgm \
c09f90
            --with-libgssapi_krb5 \
c09f90
%endif
c09f90
            --with-libsodium \
c09f90
            --enable-drafts \
c09f90
%if %{with unwind}
c09f90
            --enable-libunwind \
c09f90
%endif
c09f90
            --disable-Werror \
c09f90
            --disable-static
c09f90
%make_build
c09f90
c09f90
c09f90
%install
c09f90
%make_install
c09f90
c09f90
# remove *.la
c09f90
rm %{buildroot}%{_libdir}/libzmq.la
c09f90
c09f90
c09f90
%check
c09f90
%ifarch s390x
c09f90
make check V=1 XFAIL_TESTS=tests/test_radio_dish || ( cat test-suite.log && exit 1 )
c09f90
%endif
c09f90
c09f90
c09f90
%ldconfig_scriptlets
c09f90
c09f90
c09f90
%files
c09f90
%doc README.md AUTHORS NEWS
c09f90
%license LICENSE
c09f90
%{_bindir}/curve_keygen
c09f90
%{_libdir}/libzmq.so.5*
c09f90
%{_mandir}/man3/zmq_*
c09f90
%{_mandir}/man7/zmq_*
c09f90
%{_mandir}/man7/zmq.*
c09f90
c09f90
%files devel
c09f90
%{_libdir}/libzmq.so
c09f90
%{_libdir}/pkgconfig/libzmq.pc
c09f90
%{_includedir}/zmq*.h
c09f90
c09f90
c09f90
%changelog
c09f90
c09f90
* Wed Jan 15 2025 Joel Capitao <jcapitao@redhat.com> - 4.3.5-19
c09f90
- Specify tarball name
c09f90
c09f90
* Sun Sep 08 2024 Miroslav Suchý <msuchy@redhat.com> - 4.3.5-18
c09f90
- Migrate to SPDX license
c09f90
c09f90
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.5-17
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
c09f90
c09f90
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.5-16
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
c09f90
c09f90
* Wed Nov 29 2023 Florian Weimer <fweimer@redhat.com> - 4.3.5-15
c09f90
- Build with _DEFAULT_SOURCE to avoid compatibility issue
c09f90
c09f90
* Tue Oct 31 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 4.3.5-14
c09f90
- XFAIL the faileing tests/test_radio_dish
c09f90
c09f90
* Tue Oct 31 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-13
c09f90
- BZ#2247171 / PR#7 - Added the --enable-drafts option by default
c09f90
c09f90
* Tue Oct 31 2023 Mattias Ellert <mattias.ellert@physics.uu.se> - 4.3.5-12
c09f90
- Enable draft API (rhbz#2247171)
c09f90
c09f90
* Tue Oct 24 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-11
c09f90
- Revert "BZ#2245747 - Build system switched to CMake"
c09f90
c09f90
* Tue Oct 24 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-10
c09f90
- Revert "CMake / Improved the build"
c09f90
c09f90
* Tue Oct 24 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-9
c09f90
- Improved the build
c09f90
c09f90
* Tue Oct 24 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-8
c09f90
- BZ#2245747 - Build system switched to CMake
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-7
c09f90
- Fixed the license name
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-6
c09f90
- Fixed the changelog section
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-5
c09f90
- Upstream upgrade
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-4
c09f90
- Upstream upgrade
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-3
c09f90
- Upstream upgrade
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-2
c09f90
- Upstream upgrade
c09f90
c09f90
* Sun Oct 22 2023 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.5-1
c09f90
- Upstream upgrade
c09f90
c09f90
* Thu Oct 05 2023 Remi Collet <remi@fedoraproject.org> - 4.3.4-9
c09f90
- rebuild for new libsodium
c09f90
c09f90
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.4-8
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
c09f90
c09f90
* Wed May 17 2023 David Cantrell <dcantrell@redhat.com> - 4.3.4-7
c09f90
- Convert License tag to SPDX identifiers
c09f90
c09f90
* Tue Mar 07 2023 Ben Woodard <woodard@redhat.com> - 4.3.4-6
c09f90
- Remove libunwind from dependencies
c09f90
c09f90
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.4-5
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
c09f90
c09f90
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.4-4
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
c09f90
c09f90
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.4-3
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
c09f90
c09f90
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.4-2
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
c09f90
c09f90
* Fri Jan 29 2021 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.4-1
c09f90
- Upstream upgrade Fixes #1921879, #1921972, #1921973, #1921975, #1921976,
c09f90
  #1921979, #1921981, #1921983, #1921983, #1921985, #1921987, #1921989,
c09f90
  #1921992, #1921994
c09f90
c09f90
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.3-5
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
c09f90
c09f90
* Sat Jan 09 2021 Tom Stellard <tstellar@redhat.com> - 4.3.3-4
c09f90
- Add BuildRequires: make
c09f90
c09f90
* Tue Sep 15 2020 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.3-3
c09f90
- No check for s390x
c09f90
c09f90
* Tue Sep 15 2020 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.3-2
c09f90
- Added dependencies for the man pages
c09f90
c09f90
* Tue Sep 15 2020 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.3-1
c09f90
- Upstream upgrade Fixes #1876738 and #1876689
c09f90
c09f90
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.2-5
c09f90
- Second attempt - Rebuilt for
c09f90
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c09f90
c09f90
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.2-4
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
c09f90
c09f90
* Wed Apr 15 2020 Dan Horák <dan@danny.cz> - 4.3.2-3
c09f90
- libunwind is available on all Fedora arches
c09f90
c09f90
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.2-2
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c09f90
c09f90
* Sun Sep 08 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.3.2-1
c09f90
- Update to latest version.
c09f90
c09f90
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.1-5
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
c09f90
c09f90
* Sat Feb 16 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.3.1-4
c09f90
- Disable libunwind on unsupported arches.
c09f90
c09f90
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.1-3
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
c09f90
c09f90
* Tue Jan 22 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.3.1-2
c09f90
- Split cppzmq into its own package.
c09f90
c09f90
* Tue Jan 22 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.3.1-1
c09f90
- Update to latest version of libzmq and cppzmq.
c09f90
c09f90
* Tue Jan 22 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.1.6-15
c09f90
- Backport another patch to fix s390x.
c09f90
c09f90
* Mon Jan 21 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.1.6-14
c09f90
- Use explicit soname version.
c09f90
c09f90
* Mon Jan 21 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.1.6-13
c09f90
- Backport patch to fix test failure.
c09f90
c09f90
* Mon Jan 21 2019 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 4.1.6-12
c09f90
- Remove some old stuff.
c09f90
c09f90
* Tue Aug 28 2018 Pavel Zhukov <pzhukov@redhat.com> - 4.1.6-11
c09f90
- Add gcc-c++ build requirement.
c09f90
c09f90
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.6-10
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
c09f90
c09f90
* Tue Feb 13 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.1.6-9
c09f90
- Remove BuildRoot definition
c09f90
c09f90
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.6-8
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c09f90
c09f90
* Sat Feb 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.1.6-7
c09f90
- Switch to %%ldconfig_scriptlets
c09f90
c09f90
* Mon Oct 02 2017 Remi Collet <remi@fedoraproject.org> - 4.1.6-6
c09f90
- rebuild for libsodium
c09f90
c09f90
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.6-5
c09f90
- Rebuilt for
c09f90
  https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
c09f90
c09f90
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.6-4
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
c09f90
c09f90
* Mon May 15 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.6-3
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild
c09f90
c09f90
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.6-2
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
c09f90
c09f90
* Sun Nov 13 2016 Thomas Spura <thomas.spura@gmail.com> - 4.1.6-1
c09f90
- Update to 4.1.6
c09f90
c09f90
* Sun Jun 12 2016 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.1.4-6
c09f90
- Improved the .gitignore file
c09f90
c09f90
* Mon Mar 07 2016 Remi Collet <remi@fedoraproject.org> - 4.1.4-5
c09f90
- rebuild for new libsodium soname
c09f90
c09f90
* Sun Feb 14 2016 Thomas Spura <thomas.spura@gmail.com> - 4.1.4-4
c09f90
- Remove Werror from compile flags
c09f90
c09f90
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.1.4-3
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c09f90
c09f90
* Sun Jan 24 2016 Thomas Spura <thomas.spura@gmail.com> - 4.1.4-2
c09f90
- Enable krb5 and fix building of pgm (#1301197)
c09f90
c09f90
* Sat Dec 19 2015 Thomas Spura <thomas.spura@gmail.com> - 4.1.4-1
c09f90
- Update to 4.1.4 (#1292814) and refresh zmq.hpp
c09f90
c09f90
* Mon Aug 24 2015 Thomas Spura <thomas.spura@gmail.com> - 4.1.3-1
c09f90
- update to 4.1.3
c09f90
- ipv6 patch included upstream
c09f90
- refresh zmq.hpp
c09f90
c09f90
* Tue Jun 23 2015 Thomas Spura <thomas.spura@gmail.com> - 4.1.2-2
c09f90
- Add missing BR:libsodium-devel
c09f90
c09f90
* Tue Jun 23 2015 Thomas Spura <thomas.spura@gmail.com> - 4.1.2-1
c09f90
- update to 4.1.2 with a upstream patch to fix a problem with ipv6
c09f90
c09f90
* Fri Jun 19 2015 Dennis Gilmore <dennis@ausil.us> - 4.0.5-9
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
c09f90
c09f90
* Mon Jun 08 2015 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-8
c09f90
- Add zmq.hpp, which originally belonged to zeromq
c09f90
c09f90
* Thu May 21 2015 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-7
c09f90
- Add cve for protocol downgrad attack
c09f90
c09f90
* Tue May 19 2015 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-6
c09f90
- Fix changelog. Obsoletes:zeromq-utils was removed not Provides:
c09f90
c09f90
* Tue May 19 2015 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-5
c09f90
- remove %%%%defattr
c09f90
c09f90
* Tue May 19 2015 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-4
c09f90
- Remove Provides:zeromq-utils
c09f90
c09f90
* Tue May 19 2015 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-3
c09f90
- Cherry-pick patch for protocol downgrade attack (#1221666)
c09f90
c09f90
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 4.0.5-2
c09f90
- Rebuilt for GCC 5 C++11 ABI change
c09f90
c09f90
* Mon Nov 17 2014 Thomas Spura <thomas.spura@gmail.com> - 4.0.5-1
c09f90
- update to 4.0.5
c09f90
c09f90
* Mon Aug 18 2014 Peter Robinson <pbrobinson@fedoraproject.org> - 2.2.0-14
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
c09f90
c09f90
* Sat Jun 07 2014 Dennis Gilmore <dennis@ausil.us> - 2.2.0-13
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
c09f90
c09f90
* Sun Aug 04 2013 Dennis Gilmore <dennis@ausil.us> - 2.2.0-12
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c09f90
c09f90
* Fri May 17 2013 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-11
c09f90
- Rewrite openpgm version in configure*
c09f90
c09f90
* Fri May 17 2013 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-10
c09f90
- Rebuilt for openpm-5.2 and sed correct version into configure (#963894)
c09f90
c09f90
* Wed Mar 27 2013 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-9
c09f90
- also add libtool to BR
c09f90
c09f90
* Wed Mar 27 2013 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-8
c09f90
- also add automake to BR
c09f90
c09f90
* Wed Mar 27 2013 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-7
c09f90
- run autoreconf before configure so aarch64 is supported (#926859)
c09f90
c09f90
* Fri Feb 15 2013 Dennis Gilmore <dennis@ausil.us> - 2.2.0-6
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
c09f90
c09f90
* Mon Jan 14 2013 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-5
c09f90
- delete foreign files with dubious license in %%%%prep (#892111)
c09f90
c09f90
* Mon Dec 24 2012 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-4
c09f90
- Build against openpgm
c09f90
- add bcond_without pgm macro (Jose Pedro Oliveira, #867182)
c09f90
- remove bundled pgm
c09f90
- build against openpgm
c09f90
c09f90
* Sun Jul 22 2012 Dennis Gilmore <dennis@ausil.us> - 2.2.0-3
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
c09f90
c09f90
* Thu Apr 26 2012 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-2
c09f90
- upload sources for 2.2.0
c09f90
c09f90
* Thu Apr 26 2012 Thomas Spura <thomas.spura@gmail.com> - 2.2.0-1
c09f90
- update to 2.2.0
c09f90
c09f90
* Fri Jan 06 2012 Thomas Spura <thomas.spura@gmail.com> - 2.1.11-2
c09f90
- Upload sources for 2.1.11
c09f90
c09f90
* Fri Jan 06 2012 Thomas Spura <thomas.spura@gmail.com> - 2.1.11-1
c09f90
- update to 2.1.11
c09f90
c09f90
* Sat Oct 22 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-7
c09f90
- handle epel6=fedora
c09f90
c09f90
* Wed Sep 21 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-6
c09f90
- remove buildroot before installing (needed for el5)
c09f90
c09f90
* Wed Sep 21 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-5
c09f90
- buildroot is needed on el5
c09f90
c09f90
* Wed Sep 21 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-4
c09f90
- s/epel/rhel/g in macros
c09f90
c09f90
* Wed Sep 21 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-3
c09f90
- libuuid-devel is e2fsprogs-devel in el5 according to Thomas S Hatch
c09f90
c09f90
* Wed Sep 21 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-2
c09f90
- Don't turn warnings into errors
c09f90
c09f90
* Wed Sep 21 2011 Thomas Spura <thomas.spura@gmail.com> - 2.1.9-1
c09f90
- update to 2.1.9 - add check section
c09f90
c09f90
* Wed Apr 06 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.4-2
c09f90
- also upload new sources
c09f90
c09f90
* Wed Apr 06 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.4-1
c09f90
- update to new version 2.1.4 (#690199)
c09f90
c09f90
* Wed Mar 23 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.3-2
c09f90
- upload new sources
c09f90
c09f90
* Wed Mar 23 2011 Thomas Spura <tomspur@fedoraproject.org> - 2.1.3-1
c09f90
- update to new version and obsolete -utils subpackage
c09f90
c09f90
* Tue Feb 08 2011 Dennis Gilmore <dennis@ausil.us> - 2.0.10-2
c09f90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
c09f90
c09f90
* Thu Jan 13 2011 Pavel Zhukov <pavel@zhukoff.net> - 2.0.10-1
c09f90
- update version - add rpath delete - change includedir filelist
c09f90
c09f90
* Fri Aug 27 2010 Thomas Spura <tomspur@fedoraproject.org> - 2.0.8-1
c09f90
- update to new version
c09f90
c09f90
* Thu Jul 29 2010 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.7-2
c09f90
- dist-git conversion
c09f90
c09f90
* Sun Jul 25 2010 tomspur <tomspur@fedoraproject.org> - 2.0.7-1
c09f90
- initial commit (#603233)