commit 0f25c7487882e002d843a08546cfa3bdca10d2e00fce3dd88276dbc90f1a7286 Author: Robert Schweikert Date: Tue Aug 28 23:58:14 2018 +0000 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 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/AMQPStorm-2.4.1.tar.gz b/AMQPStorm-2.4.1.tar.gz new file mode 100644 index 0000000..728f4be --- /dev/null +++ b/AMQPStorm-2.4.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8021e966f65d05fba510613680514075bab83cc9023f14fb28c51cb28a83e51 +size 64596 diff --git a/python-amqpstorm.changes b/python-amqpstorm.changes new file mode 100644 index 0000000..da1c5d3 --- /dev/null +++ b/python-amqpstorm.changes @@ -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 diff --git a/python-amqpstorm.spec b/python-amqpstorm.spec new file mode 100644 index 0000000..9dbfd57 --- /dev/null +++ b/python-amqpstorm.spec @@ -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