Accepting request 622509 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/622509 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyzmq?expand=0&rev=30
This commit is contained in:
commit
09dced66ab
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 13 15:55:29 UTC 2018 - arun@gmx.de
|
||||||
|
|
||||||
|
- update to version 17.1.0:
|
||||||
|
* Bump bundled libzmq to 4.2.5
|
||||||
|
* Improve tornado 5.0 compatibility (use
|
||||||
|
:meth:`~tornado.ioloop.IOLoop.current` instead of
|
||||||
|
:meth:`~tornado.ioloop.IOLoop.instance` to get default loops in
|
||||||
|
:class:`.ZMQStream` and :class:`.IOLoopAuthenticator`)
|
||||||
|
* Add support for :func:`.curve_public`
|
||||||
|
* Remove delayed import of json in send/recv_json
|
||||||
|
* Add :meth:`.Authenticator.configure_curve_callback`
|
||||||
|
* Various build fixes
|
||||||
|
* sdist sources generated with Cython 0.28.3
|
||||||
|
* Stop building wheels for Python 3.4, start building wheels for
|
||||||
|
Python 3.7
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 7 14:34:04 UTC 2018 - aplanas@suse.com
|
Wed Mar 7 14:34:04 UTC 2018 - aplanas@suse.com
|
||||||
|
|
||||||
|
@ -16,17 +16,16 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
# Disable tests, they are so slow that OBS thinks the build died.
|
# Disable tests, they are so slow that OBS thinks the build died.
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
Name: python-pyzmq
|
Name: python-pyzmq
|
||||||
Version: 17.0.0
|
Version: 17.1.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Python bindings for 0MQ
|
Summary: Python bindings for 0MQ
|
||||||
License: LGPL-3.0-or-later AND BSD-3-Clause
|
License: LGPL-3.0-or-later AND BSD-3-Clause
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: http://github.com/zeromq/pyzmq
|
URL: http://github.com/zeromq/pyzmq
|
||||||
Source: https://files.pythonhosted.org/packages/source/p/pyzmq/pyzmq-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/p/pyzmq/pyzmq-%{version}.tar.gz
|
||||||
Source1: python-pyzmq-rpmlintrc
|
Source1: python-pyzmq-rpmlintrc
|
||||||
# PATCH-FIX-OPENSUSE skip_test_tracker.patch
|
# PATCH-FIX-OPENSUSE skip_test_tracker.patch
|
||||||
@ -35,6 +34,8 @@ BuildRequires: %{python_module Cython}
|
|||||||
BuildRequires: %{python_module cffi}
|
BuildRequires: %{python_module cffi}
|
||||||
BuildRequires: %{python_module devel}
|
BuildRequires: %{python_module devel}
|
||||||
BuildRequires: %{python_module gevent}
|
BuildRequires: %{python_module gevent}
|
||||||
|
# Test requirements
|
||||||
|
BuildRequires: %{python_module nose}
|
||||||
BuildRequires: %{python_module numpy}
|
BuildRequires: %{python_module numpy}
|
||||||
BuildRequires: %{python_module paramiko}
|
BuildRequires: %{python_module paramiko}
|
||||||
BuildRequires: %{python_module pexpect}
|
BuildRequires: %{python_module pexpect}
|
||||||
@ -45,21 +46,18 @@ BuildRequires: %{python_module tornado}
|
|||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: zeromq-devel
|
BuildRequires: zeromq-devel
|
||||||
# Test requirements
|
|
||||||
BuildRequires: %{python_module nose}
|
|
||||||
Requires: python
|
Requires: python
|
||||||
%if 0%{?suse_version} >= 1000 || 0%{?fedora_version} >= 24
|
%if 0%{?suse_version} >= 1000 || 0%{?fedora_version} >= 24
|
||||||
Recommends: python-cffi
|
Recommends: python-cffi
|
||||||
Recommends: python-gevent
|
Recommends: python-gevent
|
||||||
Recommends: python-numpy
|
Recommends: python-numpy
|
||||||
|
Recommends: python-paramiko
|
||||||
Recommends: python-pexpect
|
Recommends: python-pexpect
|
||||||
Recommends: python-py
|
Recommends: python-py
|
||||||
Recommends: python-simplejson
|
Recommends: python-simplejson
|
||||||
Recommends: python-tornado
|
Recommends: python-tornado
|
||||||
Recommends: python-paramiko
|
|
||||||
Recommends: zeromq
|
Recommends: zeromq
|
||||||
%endif
|
%endif
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -102,8 +100,8 @@ rm -rf zmq/tests/test_auth.py
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%defattr(-,root,root,-)
|
%license COPYING.BSD COPYING.LESSER
|
||||||
%doc AUTHORS.md COPYING.BSD COPYING.LESSER README.md examples
|
%doc AUTHORS.md README.md examples
|
||||||
%{python_sitearch}/zmq/
|
%{python_sitearch}/zmq/
|
||||||
%{python_sitearch}/pyzmq-%{version}-py*.egg-info
|
%{python_sitearch}/pyzmq-%{version}-py*.egg-info
|
||||||
%exclude %{python_sitearch}/zmq/utils/*.h
|
%exclude %{python_sitearch}/zmq/utils/*.h
|
||||||
@ -111,7 +109,6 @@ rm -rf zmq/tests/test_auth.py
|
|||||||
%exclude %{python_sitearch}/zmq/backend/cffi/_cdefs.h
|
%exclude %{python_sitearch}/zmq/backend/cffi/_cdefs.h
|
||||||
|
|
||||||
%files %{python_files devel}
|
%files %{python_files devel}
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%{python_sitearch}/zmq/utils/*.h
|
%{python_sitearch}/zmq/utils/*.h
|
||||||
%{python_sitearch}/zmq/backend/cffi/_verify.c
|
%{python_sitearch}/zmq/backend/cffi/_verify.c
|
||||||
%{python_sitearch}/zmq/backend/cffi/_cdefs.h
|
%{python_sitearch}/zmq/backend/cffi/_cdefs.h
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:0145ae59139b41f65e047a3a9ed11bbc36e37d5e96c64382fcdff911c4d8c3f0
|
|
||||||
size 988170
|
|
3
pyzmq-17.1.0.tar.gz
Normal file
3
pyzmq-17.1.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2199f753a230e26aec5238b0518b036780708a4c887d4944519681a920b9dee4
|
||||||
|
size 1082716
|
Loading…
Reference in New Issue
Block a user