Accepting request 93425 from devel:languages:python
plz OBS-URL: https://build.opensuse.org/request/show/93425 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kombu?expand=0&rev=9
This commit is contained in:
commit
49b3c4c8c8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0dc63365b10c2f060e161b7e0b1ed23dc6e4c2d7333ae2edc924e447b9543336
|
|
||||||
size 213058
|
|
3
kombu-1.4.3.tar.bz2
Normal file
3
kombu-1.4.3.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:541813f23655dcd5c48bc55b5997f641eec9d3686844fd768c03bba28b76a743
|
||||||
|
size 222679
|
@ -1,3 +1,56 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 24 10:39:23 UTC 2011 - saschpe@suse.de
|
||||||
|
|
||||||
|
- Set license to SPDX style (BSD-2-Clause)
|
||||||
|
- Removed outdated %clean section
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 27 22:33:03 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.4.3:
|
||||||
|
- Fixes bug in ProducerPool where too many resources would be acquired.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 26 18:12:33 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.4.2:
|
||||||
|
- Eventio: Polling should ignore errno.EINTR
|
||||||
|
- SQS: str.encode did only start accepting kwargs after Py2.7.
|
||||||
|
- simple_task_queue example didn’t run correctly (Issue #72).
|
||||||
|
- Empty messages would not raise an exception not able to be
|
||||||
|
handled by on_decode_error (Issue #72)
|
||||||
|
- CouchDB: Properly authenticate if user/password set (Issue #70)
|
||||||
|
- BrokerConnection.Consumer had the wrong signature.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Sep 26 18:46:36 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.4.1:
|
||||||
|
- 1.4.0 broke the producer pool, resulting in new connections being
|
||||||
|
established for every acquire.
|
||||||
|
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 22 16:59:42 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.4.0:
|
||||||
|
- Adds module kombu.mixins.
|
||||||
|
- New example: Task Queue Example
|
||||||
|
- MongoDB transport did not work with MongoDB >= 2.0 (Issue #66)
|
||||||
|
- Redis-py version check did not account for beta identifiers in
|
||||||
|
version string.
|
||||||
|
- Producer and Consumer now accepts a connection instance as the
|
||||||
|
first argument.
|
||||||
|
- BrokerConnection has aquired a connected attribute that can be
|
||||||
|
used to check if the connection instance has established a
|
||||||
|
connection.
|
||||||
|
- ConnectionPool.acquire_channel now returns the connections
|
||||||
|
default channel rather than establising a new channel that must be manually handled.
|
||||||
|
- Added kombu.common.maybe_declare
|
||||||
|
- kombu.compat.entry_to_queue() has been moved to kombu.common
|
||||||
|
- New module kombu.clocks now contains an implementation of
|
||||||
|
Lamports logical clock.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Sep 19 18:45:36 UTC 2011 - alexandre@exatati.com.br
|
Mon Sep 19 18:45:36 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@ -15,19 +15,15 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
|
||||||
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
|
||||||
|
|
||||||
%define mod_name kombu
|
Name: python-kombu
|
||||||
|
Version: 1.4.3
|
||||||
Name: python-%{mod_name}
|
|
||||||
Version: 1.3.5
|
|
||||||
Release: 0
|
Release: 0
|
||||||
License: BSD License
|
License: BSD-2-Clause
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
Url: http://github.com/ask/kombu/
|
Url: http://github.com/ask/kombu/
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: %{mod_name}-%{version}.tar.bz2
|
Source: kombu-%{version}.tar.bz2
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-distribute
|
BuildRequires: python-distribute
|
||||||
Requires: python-amqplib
|
Requires: python-amqplib
|
||||||
@ -39,6 +35,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
An AMQP messaging framework for Python.
|
An AMQP messaging framework for Python.
|
||||||
@ -53,17 +50,13 @@ providing an idiomatic high-level interface for the AMQP protocol, and also
|
|||||||
provide proven and tested solutions to common messaging problems.
|
provide proven and tested solutions to common messaging problems.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{mod_name}-%{version}
|
%setup -q -n kombu-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%{optflags}"
|
python setup.py build
|
||||||
%{__python} setup.py build
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||||
|
|
||||||
%clean
|
|
||||||
%{__rm} -rf %{buildroot}
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
|
Loading…
Reference in New Issue
Block a user