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