14
0
Files
python-stomp.py/python-stomp.py.spec
Tomáš Chvátal e75f2f676b Accepting request 696990 from home:mcalabkova:branches:devel:languages:python
- update to version 4.1.22
 * Infinite retry attempts
 * Terminate heartbeat thread on shutdown
 * Remove unused wait_on_receipt parameter
 * Reduce verbosity in logging to not include headers unless debug 
   level is turned on (potential security issue)
 * Fix for disconnect receipt usage in transport
 * Add __enter__/__exit__ to Connection so it can be used as a 
   context
 * Additional ssl options
- enjoy :) now without remark of tests

OBS-URL: https://build.opensuse.org/request/show/696990
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stomp.py?expand=0&rev=7
2019-04-24 08:46:34 +00:00

56 lines
1.8 KiB
RPMSpec

#
# spec file for package python-stomp.py
#
# Copyright (c) 2019 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-stomp.py
Version: 4.1.22
Release: 0
Summary: Python STOMP client
License: Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/jasonrbriggs/stomp.py
Source: https://files.pythonhosted.org/packages/source/s/stomp.py/stomp.py-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-docopt >= 0.6.2
BuildArch: noarch
%python_subpackages
%description
A Python client library for accessing messaging servers (such as ActiveMQ, Apollo or RabbitMQ) using the STOMP protocol versions 1.0, 1.1 and 1.2. It can also be run as a standalone, command-line client for testing.
%prep
%setup -q -n stomp.py-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%doc README CHANGELOG
%license LICENSE
%{python_sitelib}/*
%python3_only %{_bindir}/stomp
%changelog