forked from pool/python-amqpstorm
Accepting request 632045 from home:seanmarlow:branches:devel:languages:python:misc
Add package back to d:l:p. Update to v2.4.1 OBS-URL: https://build.opensuse.org/request/show/632045 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-amqpstorm?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
||||
3
AMQPStorm-2.4.1.tar.gz
Normal file
3
AMQPStorm-2.4.1.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b8021e966f65d05fba510613680514075bab83cc9023f14fb28c51cb28a83e51
|
||||
size 64596
|
||||
24
python-amqpstorm.changes
Normal file
24
python-amqpstorm.changes
Normal file
@@ -0,0 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 28 22:14:56 UTC 2018 - sean.marlow@suse.com
|
||||
|
||||
- Update to v2.4.1
|
||||
+ Added client/server negotiation to better determine the
|
||||
maximum supported channels and frame size.
|
||||
+ We now raise an exception if the maximum allowed channel
|
||||
count is ever reached.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 7 16:34:51 UTC 2018 - sean.marlow@suse.com
|
||||
|
||||
- Update to v2.4.0
|
||||
+ basic.consume now allows for multiple callbacks.
|
||||
- Update to v.2.3.0
|
||||
+ Added delivery_tag abd redelivered properties to message.
|
||||
+ Added support for Management Api Healthchecks.
|
||||
+ Fixed delivery_tag being set to None by default.
|
||||
+ Exposed requests verify and certs flags to Management API.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 7 02:12:27 UTC 2017 - sean.marlow@suse.com
|
||||
|
||||
- Intial release v2.2.2
|
||||
63
python-amqpstorm.spec
Normal file
63
python-amqpstorm.spec
Normal file
@@ -0,0 +1,63 @@
|
||||
#
|
||||
# spec file for package python-amqpstorm
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%bcond_without test
|
||||
Name: python-amqpstorm
|
||||
Version: 2.4.1
|
||||
Release: 0
|
||||
Summary: Thread-safe Python RabbitMQ Client & Management library
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
Url: https://github.com/eandersson/amqpstorm
|
||||
Source: https://files.pythonhosted.org/packages/source/a/amqpstorm/AMQPStorm-%{version}.tar.gz
|
||||
BuildRequires: %{python_module devel}
|
||||
BuildRequires: %{python_module pamqp}
|
||||
BuildRequires: %{python_module setuptools}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-pamqp
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildArch: noarch
|
||||
|
||||
%python_subpackages
|
||||
|
||||
%description
|
||||
Thread-safe Python RabbitMQ Client & Management library.
|
||||
|
||||
Supports Python 2.7 and Python 3.3+.
|
||||
Tested against CPython, PyPy and Pyston.
|
||||
When using a SSL connection, TLSv1 or higher is required.
|
||||
|
||||
%prep
|
||||
%setup -q -n AMQPStorm-%{version}
|
||||
|
||||
%build
|
||||
%python_build
|
||||
|
||||
%install
|
||||
%python_install
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}/amqpstorm
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}/examples
|
||||
|
||||
%files %{python_files}
|
||||
%defattr(-,root,root)
|
||||
%doc README.rst
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user