b42c2a
%if 0%{?rhel} && 0%{?rhel} < 8
b42c2a
%bcond_with python3
b42c2a
%bcond_with tests
b42c2a
%else
b42c2a
%bcond_without python3
b42c2a
%bcond_without tests
b42c2a
%endif
b42c2a
b42c2a
%if %{defined el6} || %{defined el7}
b42c2a
%bcond_without python2
b42c2a
%endif
b42c2a
b42c2a
%global srcname kombu
b42c2a
b42c2a
Name:           python-%{srcname}
b42c2a
Version:        5.0.2
b42c2a
Release:        2%{?dist}
b42c2a
Epoch:          1
b42c2a
Summary:        An AMQP Messaging Framework for Python
b42c2a
b42c2a
# utils/functional.py contains a header that says Python
b42c2a
License:        BSD and Python
b42c2a
URL:            http://kombu.readthedocs.org/
b42c2a
Source0:        https://github.com/celery/kombu/archive/v%{version}/%{srcname}-%{version}.tar.gz
b42c2a
b42c2a
BuildArch: noarch
b42c2a
b42c2a
%description
b42c2a
AMQP is the Advanced Message Queuing Protocol, an open standard protocol
b42c2a
for message orientation, queuing, routing, reliability and security.
b42c2a
b42c2a
One of the most popular implementations of AMQP is RabbitMQ.
b42c2a
b42c2a
The aim of Kombu is to make messaging in Python as easy as possible by
b42c2a
providing an idiomatic high-level interface for the AMQP protocol, and
b42c2a
also provide proven and tested solutions to common messaging problems.
b42c2a
b42c2a
%if %{with python2}
b42c2a
%package -n python2-%{srcname}
b42c2a
Summary:        %{summary}
b42c2a
Requires:       python2-amqp >= 2.5.2
b42c2a
Requires:       python2-vine
b42c2a
b42c2a
BuildRequires:  python2-devel
b42c2a
BuildRequires:  python2-setuptools
b42c2a
b42c2a
%if %{with tests}
b42c2a
# test requirements
b42c2a
BuildRequires:  python2-pytest
b42c2a
BuildRequires:  python2-pytest-cov
b42c2a
BuildRequires:  python2-vine
b42c2a
BuildRequires:  python2-case
b42c2a
BuildRequires:  python2-pytz
b42c2a
b42c2a
BuildRequires:  python2-nose
b42c2a
b42c2a
BuildRequires:  python2-nose-cover3
b42c2a
BuildRequires:  python2-coverage
b42c2a
BuildRequires:  python2-mock
b42c2a
BuildRequires:  python2-simplejson
b42c2a
BuildRequires:  python2-pyyaml
b42c2a
BuildRequires:  python2-msgpack
b42c2a
BuildRequires:  python2-amqp
b42c2a
# No longer packaged
b42c2a
#BuildRequires:  python2-pymongo
b42c2a
%endif
b42c2a
b42c2a
# For documentation
b42c2a
#BuildRequires:  python2-pymongo python2-sphinx
b42c2a
#This causes tests error, needs fixing upstream. Incompatible with python > 2.7
b42c2a
#BuildRequires:  python2-couchdb
b42c2a
%{?python_provide:%python_provide python2-%{srcname}}
b42c2a
b42c2a
%description -n python2-%{srcname}
b42c2a
AMQP is the Advanced Message Queuing Protocol, an open standard protocol
b42c2a
for message orientation, queuing, routing, reliability and security.
b42c2a
b42c2a
One of the most popular implementations of AMQP is RabbitMQ.
b42c2a
b42c2a
The aim of Kombu is to make messaging in Python as easy as possible by
b42c2a
providing an idiomatic high-level interface for the AMQP protocol, and
b42c2a
also provide proven and tested solutions to common messaging problems.
b42c2a
%endif
b42c2a
b42c2a
%if %{with python3}
b42c2a
%package -n python3-%{srcname}
b42c2a
Summary:        %{summary}
b42c2a
Requires:       python3-amqp >= 5.0.1
b42c2a
Requires:       python3-vine
b42c2a
b42c2a
BuildRequires:  python3-devel
b42c2a
BuildRequires:  python3-setuptools
b42c2a
%if %{with tests}
b42c2a
BuildRequires:  python3-mock
b42c2a
BuildRequires:  python3-nose-cover3
b42c2a
BuildRequires:  python3-coverage
b42c2a
BuildRequires:  python3-amqp >= 5.0.1
b42c2a
# pymonngo not needed in RDO
b42c2a
#BuildRequires:  python3-pymongo
b42c2a
BuildRequires:  python3-nose
b42c2a
BuildRequires:  python3-vine
b42c2a
BuildRequires:  python3-case
b42c2a
BuildRequires:  python3-pytz
b42c2a
BuildRequires:  python3-sqlalchemy
b42c2a
BuildRequires:  python3-boto3
b42c2a
BuildRequires:  python3-pytest
b42c2a
%endif
b42c2a
%{?python_provide:%python_provide python3-%{srcname}}
b42c2a
b42c2a
%description -n python3-%{srcname}
b42c2a
AMQP is the Advanced Message Queuing Protocol, an open standard protocol
b42c2a
for message orientation, queuing, routing, reliability and security.
b42c2a
b42c2a
One of the most popular implementations of AMQP is RabbitMQ.
b42c2a
b42c2a
The aim of Kombu is to make messaging in Python as easy as possible by
b42c2a
providing an idiomatic high-level interface for the AMQP protocol, and
b42c2a
also provide proven and tested solutions to common messaging problems.
b42c2a
%endif
b42c2a
b42c2a
%prep
b42c2a
%autosetup -n %{srcname}-%{version}
b42c2a
b42c2a
%build
b42c2a
%{?with_python2:%py2_build}
b42c2a
%{?with_python3:%py3_build}
b42c2a
b42c2a
%install
b42c2a
%{?with_python3:%py3_install}
b42c2a
%{?with_python2:%py2_install}
b42c2a
b42c2a
%check
b42c2a
%if %{with tests}
b42c2a
# python3-pyro is outdated and FTI in Fedora, ignore pyro tests
b42c2a
py.test-3 --ignore=t/unit/transport/test_pyro.py
b42c2a
%endif
b42c2a
b42c2a
%if %{with python2}
b42c2a
%files -n python2-%{srcname}
b42c2a
%doc AUTHORS FAQ READ* THANKS TODO examples/
b42c2a
%license LICENSE
b42c2a
%{python2_sitelib}/%{srcname}
b42c2a
%{python2_sitelib}/%{srcname}*.egg-info
b42c2a
%endif
b42c2a
b42c2a
%if %{with python3}
b42c2a
%files -n python3-%{srcname}
b42c2a
%doc AUTHORS FAQ READ* THANKS TODO examples/
b42c2a
%license LICENSE
b42c2a
%{python3_sitelib}/%{srcname}
b42c2a
%{python3_sitelib}/%{srcname}*.egg-info
b42c2a
%endif
b42c2a
b42c2a
%changelog
b42c2a
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:5.0.2-2
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
b42c2a
b42c2a
* Tue Sep 29 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1:5.0.2-1
b42c2a
- kombu 5.0.2
b42c2a
b42c2a
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.11-2
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
b42c2a
b42c2a
* Thu Jun 25 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1:4.6.11-1
b42c2a
- kombu 4.6.11
b42c2a
b42c2a
* Wed Jun 03 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1:4.6.10-1
b42c2a
- kombu 4.6.10
b42c2a
b42c2a
* Mon Jun 01 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1:4.6.9-1
b42c2a
- kombu 4.6.9
b42c2a
b42c2a
* Mon Jun 01 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 1:4.6.6-5
b42c2a
- Enable testsuite as python-vine is now packaged
b42c2a
b42c2a
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 1:4.6.6-4
b42c2a
- Rebuilt for Python 3.9
b42c2a
b42c2a
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.6-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
b42c2a
b42c2a
* Tue Dec 03 2019 Matthias Runge <mrunge@redhat.com> -4.6.6-2
b42c2a
- use importlib.metadata from the standard library in python
b42c2a
b42c2a
* Tue Dec 03 2019 Yatin Karel <ykarel@redhat.com> - 4.6.6-1
b42c2a
- Update to 4.6.6
b42c2a
b42c2a
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1:4.6.4-4
b42c2a
- Rebuilt for Python 3.8.0rc1 (#1748018)
b42c2a
b42c2a
* Tue Aug 20 2019 Miro Hrončok <mhroncok@redhat.com> - 1:4.6.4-3
b42c2a
- Use standard library importlib.metadata on Python 3.8
b42c2a
b42c2a
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1:4.6.4-2
b42c2a
- Rebuilt for Python 3.8
b42c2a
b42c2a
* Mon Aug 19 2019 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.6.4-1
b42c2a
- Update to latest upstream version 4.6.4 (rhbz#1742743)
b42c2a
b42c2a
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 1:4.6.3-4
b42c2a
- Rebuilt for Python 3.8
b42c2a
b42c2a
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.6.3-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
b42c2a
b42c2a
* Tue Jul 02 2019 Nils Philippsen <nils@redhat.com> - 1:4.6.3-2
b42c2a
- Don't indiscriminately require Python 2 packages to fix FTBFS on Rawhide
b42c2a
b42c2a
* Sat Jun 15 2019 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.6.3-1
b42c2a
- Update to latest upstream version 4.6.3 (rhbz#1717745)
b42c2a
b42c2a
* Fri Jun 14 2019 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.6.2-1
b42c2a
- Update to latest upstream version 4.6.2 (rhbz#1717745)
b42c2a
b42c2a
* Sat Jun 08 2019 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.6.1-2
b42c2a
- Update to latest upstream version 4.6.1 (rhbz#1717745)
b42c2a
b42c2a
* Thu May 30 2019 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.6.0-1
b42c2a
- Update to latest upstream version 4.6.0
b42c2a
b42c2a
* Thu May 30 2019 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.5.0-1
b42c2a
- Update to latest upstream version 4.5.0 (rhbz#1673119)
b42c2a
b42c2a
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.2.2-2
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
b42c2a
b42c2a
* Mon Jan 28 2019 Neal Gompa <ngompa13@gmail.com> - 1:4.2.2-1
b42c2a
- Update to 4.2.2
b42c2a
- Fix summary for Python 2 subpackage
b42c2a
- Switch to bconds for controlling the build
b42c2a
- Add EPEL7 compatibility
b42c2a
b42c2a
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.2.1-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
b42c2a
b42c2a
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1:4.2.1-2
b42c2a
- Rebuilt for Python 3.7
b42c2a
b42c2a
* Mon Jun 04 2018 Matthias Runge <mrunge@redhat.com> - 1:4.2.1-1
b42c2a
- update to 4.2.1 (rhbz#1584452)
b42c2a
b42c2a
* Thu May 24 2018 Matthias Runge <mrunge@redhat.com> - 1:4.2.0-2
b42c2a
- drop anyjson dependency
b42c2a
b42c2a
* Wed May 23 2018 Matthias Runge <mrunge@redhat.com> - 1:4.2.0-1
b42c2a
- update to 4.2.0 (rhbz#1473462)
b42c2a
b42c2a
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.0.2-8
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
b42c2a
b42c2a
* Thu Jan 25 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1:4.0.2-7
b42c2a
- Update Python 2 dependency declarations to new packaging standards
b42c2a
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
b42c2a
b42c2a
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.0.2-6
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b42c2a
b42c2a
* Fri Mar 24 2017 Matthias Runge <mrunge@redhat.com> - 1:4.0.2-5
b42c2a
- disable checks temporarily, until they are fixed
b42c2a
b42c2a
* Sun Feb 26 2017 Brian Bouterse <bmbouter@redhat.com> - 1:4.0.2-4
b42c2a
- Adds upstream patch for 699 preventing the Qpid transport from working with Celery 4
b42c2a
b42c2a
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:4.0.2-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
b42c2a
b42c2a
* Wed Jan 04 2017 Matthias Runge <mrunge@redhat.com> - 1:4.0.2-2
b42c2a
- add requires: python[23]-vine (rhbz#1409908)
b42c2a
b42c2a
* Tue Dec 27 2016 Matthias Runge <mrunge@redhat.com> - 1:4.0.2-1
b42c2a
- fixed FTBFS, upgraded to 4.0.2 (rhbz#1314754)
b42c2a
b42c2a
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1:4.0.0-8
b42c2a
- Rebuild for Python 3.6
b42c2a
b42c2a
* Wed Nov 16 2016 Fabian Affolter <mail@fabian-affolter.ch> - 1:4.0.0-1
b42c2a
- Update to latest upstream version 4.0.0 (rhbz#1314754)
b42c2a
b42c2a
* Fri Aug 05 2016 Brian Bouterse <bmbouter@redhat.com> - 1:3.0.33-7
b42c2a
- Adds additional patch for 577 which prevents leaking file descriptors in Qpid transport
b42c2a
b42c2a
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.0.33-6
b42c2a
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
b42c2a
b42c2a
* Wed Apr 06 2016 Brian Bouterse <bmbouter@redhat.com> - 1:3.0.33-5
b42c2a
- Adds patch to fix upstream issue 577
b42c2a
b42c2a
* Tue Feb 23 2016 Brian Bouterse <bmbouter@redhat.com> - 1:3.0.33-4
b42c2a
- Adds patch to fix upstream issue 569
b42c2a
- Adds patch to fix upstream issue 571
b42c2a
b42c2a
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.0.33-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b42c2a
b42c2a
* Wed Jan 27 2016 Brian Bouterse <bmbouter@redhat.com> - 1:3.0.33-2
b42c2a
- Adds patch to fix upstream issue 563 (rhbz#1300811)
b42c2a
b42c2a
* Wed Jan 20 2016 Brian Bouterse <bmbouter@redhat.com> - 1:3.0.33-1
b42c2a
- Update to latest upstream version 3.0.33 (rhbz#1297116)
b42c2a
b42c2a
* Tue Dec 22 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 1:3.0.32-1
b42c2a
- Upstream 3.0.32 (RHBZ#1289079)
b42c2a
- Fix python3 guards
b42c2a
- Bugfix for debug log flooding and redis transport
b42c2a
b42c2a
* Wed Dec 02 2015 Matthias Runge <mrunge@redhat.com> - 1:3.0.29-5
b42c2a
- add requires: python3-anyjson
b42c2a
- minor spec cleanup
b42c2a
b42c2a
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
b42c2a
b42c2a
* Mon Nov  9 2015 Toshio Kuratomi <toshio@fedoraproject.org> - - 3.0.29-2
b42c2a
- Make it so the python3 subpackage doesn't drag in python2
b42c2a
b42c2a
* Wed Oct 28 2015 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.29-1
b42c2a
- Update to latest upstream version 3.0.29 (rhbz#1275450)
b42c2a
b42c2a
* Thu Oct 15 2015 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.28-1
b42c2a
- Update to latest upstream version 3.0.28 (rhbz#1270505)
b42c2a
b42c2a
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.0.26-2
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b42c2a
b42c2a
* Thu May 07 2015 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.26-1
b42c2a
- Update to latest upstream version 3.0.26 (rhbz#1214720)
b42c2a
b42c2a
* Fri Nov 21 2014 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.24-1
b42c2a
- Update to latest upstream version 3.0.24 (rhbz#1166402)
b42c2a
b42c2a
* Thu Sep 18 2014 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.23-1
b42c2a
- Update to latest upstream version 3.0.23 (rhbz#1142995)
b42c2a
b42c2a
* Sun Sep 14 2014 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.22-1
b42c2a
- Update to latest upstream version 3.0.22 (rhbz#1118674)
b42c2a
b42c2a
* Tue Jul 15 2014 Rahul Sundaram <sundaram@fedoraproject.org> - 1:3.0.21-2
b42c2a
- reintroduce adjusted conditions for EPEL
b42c2a
- fix permission for a test script
b42c2a
b42c2a
* Sun Jul 13 2014 Rahul Sundaram <sundaram@fedoraproject.org> - 1:3.0.21-1
b42c2a
- update to 3.0.21
b42c2a
- drop conditionals in spec
b42c2a
b42c2a
* Thu Jul 03 2014 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.20-1
b42c2a
- Update to latest upstream version 3.0.20 (rhbz#1114337)
b42c2a
b42c2a
* Mon Jun 23 2014 Fabian Affolter <mail@fabian-affolter.ch> - 1:3.0.19-1
b42c2a
- Update to latest upstream version 3.0.19 (rhbz#1095266)
b42c2a
b42c2a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.0.15-4
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
b42c2a
b42c2a
* Wed May 14 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 1:3.0.15-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
b42c2a
b42c2a
* Mon May 05 2014 Matthias Runge <mrunge@redhat.com> - 3.0.15-2
b42c2a
- fix broken build
b42c2a
- have files listed only once
b42c2a
b42c2a
* Thu Apr 17 2014 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.15-1
b42c2a
- Update to latest upstream version 3.0.15 (rhbz#1072265)
b42c2a
b42c2a
* Wed Mar 26 2014 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.14-1
b42c2a
- update to 3.0.14 (rhbz#1072265)
b42c2a
b42c2a
* Wed Feb 26 2014 Matthias Runge <mrunge@redhat.com> - 3.0.12-1
b42c2a
- update to 3.0.12 (rhbz#1052424)
b42c2a
b42c2a
* Wed Jan 08 2014 Matthias Runge <mrunge@redhat.com> - 3.0.8-2
b42c2a
- Remove requirements patch, bump epoch to be upgradeable
b42c2a
b42c2a
* Wed Jan 08 2014 Matthias Runge <mrunge@redhat.com> - 3.0.8-1
b42c2a
- Update to 3.0.8 (rhbz#1037549)
b42c2a
b42c2a
* Fri Nov 22 2013 Matthias Runge <mrunge@redhat.com> - 3.0.6-1
b42c2a
- Update to 3.0.6 and enable tests for py3 as well
b42c2a
b42c2a
* Sun Nov 17 2013 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.5-1
b42c2a
- Updated to latest upstream version 3.0.5 (rhbz#1024916)
b42c2a
b42c2a
* Sat Nov 16 2013 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.4-1
b42c2a
- Update to latest upstream version 3.0.4 (rhbz#1024916)
b42c2a
b42c2a
* Fri Nov 15 2013 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.3-1
b42c2a
- Update to latest upstream version 3.0.3 (rhbz#1024916)
b42c2a
b42c2a
* Sun Nov 03 2013 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.2-1
b42c2a
- Updatd to latest upstream version 3.0.2 (rhbz#1024916)
b42c2a
b42c2a
* Mon Oct 28 2013 Fabian Affolter <mail@fabian-affolter.ch> - 3.0.1-1
b42c2a
- Update to latest upstream version 3.0.1 (rhbz#1019148)
b42c2a
b42c2a
* Mon Oct 14 2013 Matthias Runge <mrunge@redhat.com> - 2.5.15-2
b42c2a
- Enable tests for python2
b42c2a
b42c2a
* Mon Oct 14 2013 Matthias Runge <mrunge@redhat.com> - 2.5.15-1
b42c2a
- Update to 2.5.15 (rhbz#1016271)
b42c2a
b42c2a
* Sun Aug 25 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.14-1
b42c2a
- Update to latest upstream version 2.5.14 (rhbz#1000696)
b42c2a
b42c2a
* Wed Aug 21 2013 Matthias Runge <mrunge@redhat.com> - 2.5.13-1
b42c2a
- Update to latest upstream version 2.5.13 (rhbz#998104)
b42c2a
b42c2a
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.12-2
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
b42c2a
b42c2a
* Sat Jun 29 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.12-1
b42c2a
- Update to latest upstream version 2.5.12
b42c2a
b42c2a
* Mon Jun 24 2013 Rahul Sundaram <sundaram@fedoraproject.org> - 2.5.10-2
b42c2a
- Add requires on python-amqp/python3-amqp. resolves rhbz#974684
b42c2a
- Fix rpmlint warnings about macro in comments
b42c2a
b42c2a
* Sun Apr 21 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.10-1
b42c2a
- Update to latest upstream version 2.5.10
b42c2a
b42c2a
* Sat Mar 23 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.8-1
b42c2a
- Update to latest upstream version 2.5.8
b42c2a
b42c2a
* Sat Mar 09 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.7-1
b42c2a
- Update to latest upstream version 2.5.7
b42c2a
b42c2a
* Mon Feb 11 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.6-1
b42c2a
- Update to latest upstream version 2.5.6
b42c2a
b42c2a
* Sat Feb 09 2013 Fabian Affolter <mail@fabian-affolter.ch> - 2.5.5-1
b42c2a
- Update to latest upstream version 2.5.5
b42c2a
b42c2a
* Thu Dec 13 2012 Matthias Runge <mrunge@redhat.com> - 2.5.4-1
b42c2a
- Update to upstream version 2.5.4 (rhbz#886001)
b42c2a
b42c2a
* Tue Dec 04 2012 Matthias Runge <mrunge@redhat.com> - 2.5.3-1
b42c2a
- Update to latest upstream version 2.5.3
b42c2a
b42c2a
* Mon Nov 26 2012 Matthias Runge <mrunge@redhat.com> - 2.4.10-1
b42c2a
- Update to latest upstream version 2.4.10
b42c2a
b42c2a
* Tue Nov 06 2012 Matthias Runge <mrunge@redhat.com> - 2.4.8-1
b42c2a
- Update to new upstream version 2.4.8
b42c2a
b42c2a
* Thu Sep 20 2012 Matthias Runge <mrunge@redhat.com> - 2.4.7-1
b42c2a
- Update to new upstream version 2.4.7
b42c2a
b42c2a
* Sun Aug 26 2012 Matthias Runge <mrunge@matthias-runge.de> - 2.4.3-1
b42c2a
- Update to new upstream version 2.4.3
b42c2a
b42c2a
* Thu Aug 23 2012 Matthias Runge <mrunge@matthias-runge.de> - 2.4.0-1
b42c2a
- Update to new upstream version 2.4.0
b42c2a
b42c2a
* Fri Aug 03 2012 Matthias Runge <mrunge@matthias-runge.de> - 2.3.2-1
b42c2a
- Update to version 2.3.2
b42c2a
- Enable tests
b42c2a
- Require python2 and/or python3
b42c2a
b42c2a
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-3
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
b42c2a
b42c2a
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.3-2
b42c2a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
b42c2a
b42c2a
* Fri Jul 15 2011 Rahul Sundaram <sundaram@fedoraproject.org> - 1.1.3-1
b42c2a
- Initial spec
b42c2a
- Derived from the one written by Fabian Affolter
b42c2a
- Spec patch from Lakshmi Narasimhan
b42c2a