From ea1b0103d1284e615da45ae1c8f6f3bc7021e655 Mon Sep 17 00:00:00 2001 From: tigro Date: Sat, 4 Jan 2025 15:34:52 +0300 Subject: [PATCH] import python-zmq-25.1.1-11.el10 --- .gitignore | 2 +- .python-zmq.metadata | 1 + SOURCES/1961.patch | 29 +++ SPECS/python-zmq.spec | 485 ++++++++++++++++++++++++++++++++++++++++++ python-zmq.spec | 177 --------------- sources | 1 - 6 files changed, 516 insertions(+), 179 deletions(-) create mode 100644 .python-zmq.metadata create mode 100644 SOURCES/1961.patch create mode 100644 SPECS/python-zmq.spec delete mode 100644 python-zmq.spec delete mode 100644 sources diff --git a/.gitignore b/.gitignore index 3910fcc..ac0f248 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -pyzmq-*.tar.gz +SOURCES/pyzmq-25.1.1.tar.gz diff --git a/.python-zmq.metadata b/.python-zmq.metadata new file mode 100644 index 0000000..60ff197 --- /dev/null +++ b/.python-zmq.metadata @@ -0,0 +1 @@ +b41640bd297435588593ef255eb77857effa7716 SOURCES/pyzmq-25.1.1.tar.gz diff --git a/SOURCES/1961.patch b/SOURCES/1961.patch new file mode 100644 index 0000000..0dc615c --- /dev/null +++ b/SOURCES/1961.patch @@ -0,0 +1,29 @@ +From 82831563d02f0c1cc4887173c00fd04308bb4804 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= +Date: Mon, 11 Mar 2024 09:54:57 +0100 +Subject: [PATCH] Don't fail when logging.Logger.warn is not available + +Python 3.13 removed it. + +See https://github.com/python/cpython/issues/105376 +--- + zmq/log/handlers.py | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/zmq/log/handlers.py b/zmq/log/handlers.py +index 841d80524..88fe571ca 100644 +--- a/zmq/log/handlers.py ++++ b/zmq/log/handlers.py +@@ -218,7 +218,11 @@ def log(self, level, topic, msg, *args, **kwargs): + # Generate the methods of TopicLogger, since they are just adding a + # topic prefix to a message. + for name in "debug warn warning error critical fatal".split(): +- meth = getattr(logging.Logger, name) ++ try: ++ meth = getattr(logging.Logger, name) ++ except AttributeError: ++ # some methods are missing, e.g. Logger.warn was removed from Python 3.13 ++ continue + setattr( + TopicLogger, + name, diff --git a/SPECS/python-zmq.spec b/SPECS/python-zmq.spec new file mode 100644 index 0000000..56d6cbd --- /dev/null +++ b/SPECS/python-zmq.spec @@ -0,0 +1,485 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.6.3) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 11; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +%global common_description %{expand: +The 0MQ lightweight messaging kernel is a library which extends the +standard socket interfaces with features traditionally provided by +specialized messaging middle-ware products. 0MQ sockets provide an +abstraction of asynchronous message queues, multiple messaging +patterns, message filtering (subscriptions), seamless access to +multiple transport protocols and more.} + +Name: python-zmq +Version: 25.1.1 +Release: %autorelease +Summary: Software library for fast, message-based applications + +License: MPLv2.0 and ASL 2.0 and BSD +URL: https://zeromq.org/languages/python/ +Source0: %{pypi_source pyzmq} + +# Python 3.13 compatibility +Patch: https://github.com/zeromq/pyzmq/pull/1961.patch + +BuildRequires: gcc + +BuildRequires: pkgconfig(libzmq) + +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: python%{python3_pkgversion}-pytest +BuildRequires: python%{python3_pkgversion}-pytest-asyncio +BuildRequires: python%{python3_pkgversion}-tornado +BuildRequires: python%{python3_pkgversion}-numpy + +# The gevent tests are automatically skipped when gevent is not installed. +# When bootstrapping new Python versions, gevent is often not available until very late. +# This bcond allows to ship zmq without gevent when needed. +%bcond gevent 1 +%if %{with gevent} +BuildRequires: python%{python3_pkgversion}-gevent +%endif + +%description %{common_description} + + +%package -n python%{python3_pkgversion}-zmq +Summary: %{summary} +License: MPL-2.0 +%py_provides python%{python3_pkgversion}-pyzmq + +%description -n python%{python3_pkgversion}-zmq %{common_description} + +This package contains the python bindings. + + +%package -n python%{python3_pkgversion}-zmq-tests +Summary: %{summary}, testsuite +License: MPL-2.0 +Requires: python%{python3_pkgversion}-zmq = %{version}-%{release} +%py_provides python%{python3_pkgversion}-pyzmq-tests + +%description -n python%{python3_pkgversion}-zmq-tests %{common_description} + +This package contains the testsuite for the python bindings. + + +%prep +%autosetup -p1 -n pyzmq-%{version} + +# Upstream is testing with cython 3 on 3.12 +sed -i -e '/cython>=3/d' pyproject.toml test-requirements.txt +sed -i -e '/min_cython_version/s/"3.*"/"0.29"/' setup.py + +# remove bundled libraries +rm -rf bundled + +# remove the Cython .c files in order to regenerate them: +find zmq -name "*.c" -delete + +# remove shebangs +grep -lr "^#\!/usr/bin/env python" | xargs sed -i "1d" + +# remove excecutable bits +find . -type f -executable | xargs chmod -x + +%generate_buildrequires +%pyproject_buildrequires + +%build +%pyproject_wheel + +%install +%pyproject_install +%pyproject_save_files zmq + +%check +# to avoid partially initialized zmq module from cwd +# test_draft seems to get incorrectly run - https://github.com/zeromq/pyzmq/issues/1853 +cd %{_topdir} +%pytest --pyargs zmq -v --asyncio-mode auto \ +%ifarch ppc64le +-k "not (test_draft or test_green_device or (Green and (test_raw or test_timeout or test_poll)))" # this crashes on Python 3.12, TODO investigate +%else +-k "not test_draft" +%endif + + +%files -n python%{python3_pkgversion}-zmq -f %{pyproject_files} +%doc README.md +%exclude %{python3_sitearch}/zmq/tests + +%files -n python%{python3_pkgversion}-zmq-tests +%{python3_sitearch}/zmq/tests + + +%changelog +* Sat Jan 04 2025 Arkady L. Shane - 25.1.1-11 +- Rebuilt for MSVSphere 10 + +## START: Generated by rpmautospec +* Sat Jun 08 2024 Python Maint - 25.1.1-11 +- Rebuilt for Python 3.13 + +* Sat Jun 08 2024 Python Maint - 25.1.1-10 +- Bootstrap for Python 3.13 + +* Sat Apr 13 2024 Miroslav Suchý - 25.1.1-9 +- convert MPLv2.0 license to SPDX + +* Tue Mar 12 2024 Miro Hrončok - 25.1.1-8 +- Python 3.13 compatibility + +* Sun Feb 18 2024 Orion Poplawski - 25.1.1-6 +- Ignore test_draft failures + +* Fri Jan 26 2024 Fedora Release Engineering - 25.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 25.1.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sun Oct 22 2023 Denis Arnaud - 25.1.1-3 +- Fixed the ZeroMQ dependency + +* Sun Oct 22 2023 Denis Arnaud - 25.1.1-2 +- Upstream upgrade to v25.1.1 + +* Sun Oct 22 2023 Denis Arnaud - 25.1.1-1 +- Build for ZeroMQ 4.3.5 + +* Fri Jul 21 2023 Fedora Release Engineering - 25.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Wed Jun 28 2023 Miro Hrončok - 25.1.0-2 +- Temporarily deselect tests crashing on ppc64le to unblock the Py3.12 + rebuild + +* Wed Jun 28 2023 Orion Poplawski - 25.1.0-1 +- Update to 25.1.0 + +* Thu Jun 22 2023 Python Maint - 24.0.1-3 +- Rebuilt for Python 3.12 + +* Fri Jan 20 2023 Fedora Release Engineering - 24.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sun Jan 08 2023 Kevin Fenzi - 24.0.1-1 +- Update to 24.0.1. Fixes rhbz#2128693 + +* Sun Sep 18 2022 Kevin Fenzi - 24.0.0-1 +- Update to 24.0.0. Fixes rhbz#2127189 + +* Wed Aug 03 2022 Miro Hrončok - 23.2.0-3 +- Remove old cruft + +* Wed Aug 03 2022 Miro Hrončok - 23.2.0-2 +- Run the tests + +* Wed Aug 03 2022 Charalampos Stratakis - 23.2.0-1 +- Update to 23.2.0 + +* Fri Jul 22 2022 Fedora Release Engineering - 22.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Jun 13 2022 Python Maint - 22.3.0-3 +- Rebuilt for Python 3.11 + +* Fri Jan 21 2022 Fedora Release Engineering - 22.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Sun Jan 09 2022 Kevin Fenzi - 22.3.0-1 +- Update to 22.3.0. Fixes rhbz#2004837 + +* Sun Aug 08 2021 Kevin Fenzi - 22.2.1-1 +- Update to 22.2.1. Fixes rhbz#1989975 + +* Fri Jul 23 2021 Fedora Release Engineering - 22.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Thu Jun 03 2021 Python Maint - 22.0.3-2 +- Rebuilt for Python 3.10 + +* Sat Feb 13 2021 Kevin Fenzi - 22.0.3-1 +- Update to 22.0.3. Fixes rhbz#1928104 + +* Wed Feb 03 2021 Kevin Fenzi - 22.0.2-1 +- Update to 22.0.2. Fixes rhbz#1922110 + +* Fri Jan 29 2021 Kevin Fenzi - 21.0.2-1 +- Update to 21.0.2. Fixes rhbz#1920351 + +* Wed Jan 27 2021 Fedora Release Engineering - 21.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Jan 16 2021 Kevin Fenzi - 21.0.0-1 +- Update to 21.0.0. Fixes rhbz#1916136 + +* Fri Jan 01 2021 Kevin Fenzi - 20.0.0-1 +- Update to 20.0.0. Fixes rhbz#1832893 + +* Tue Nov 24 2020 Joel Capitao - 19.0.2-1 +- Update to 19.0.2 + +* Wed Jul 29 2020 Fedora Release Engineering - 19.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sat May 23 2020 Miro Hrončok - 19.0.0-2 +- Rebuilt for Python 3.9 + +* Sat Apr 04 2020 Carl George - 19.0.0-1 +- Update to 19.0.0 + +* Thu Jan 30 2020 Fedora Release Engineering - 18.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Jan 14 2020 Jochen Breuer - 18.1.0-3 +- Adding python-pyzqm in provides + +* Fri Nov 29 2019 Miro Hrončok - 18.1.0-2 +- Subpackages python2-zmq, python2-zmq-test have been removed + +* Sun Oct 06 2019 Kevin Fenzi - 18.1.0-1 +- Update to 18.1.0. Fixes bug #1742606 + +* Thu Oct 03 2019 Miro Hrončok - 18.0.2-4 +- Rebuilt for Python 3.8.0rc1 (#1748018) + +* Fri Aug 16 2019 Miro Hrončok - 18.0.2-3 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 18.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Jun 30 2019 Kevin Fenzi - 18.0.2-1 +- Update to 18.0.2. Fixes bug #1724706 + +* Tue May 14 2019 Miro Hrončok - 18.0.1-2 +- Regenerate Cython files + +* Mon Apr 29 2019 Kevin Fenzi - 18.0.1-1 +- Update to 18.0.1. Fixes bug #1601128 + +* Tue Feb 12 2019 Miro Hrončok - 17.0.0-7 +- https://fedoraproject.org/wiki/Changes/Python_Extension_Flags + +* Sat Feb 02 2019 Fedora Release Engineering - 17.0.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Jan 28 2019 Igor Gnatenko - 17.0.0-5 +- Remove obsolete Group tag + +* Sat Jul 14 2018 Fedora Release Engineering - 17.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jul 10 2018 Igor Gnatenko - 17.0.0-3 +- add BuildRequires: gcc + +* Sun Jun 17 2018 Miro Hrončok - 17.0.0-2 +- Rebuilt for Python 3.7 + +* Sat May 12 2018 Miro Hrončok - 17.0.0-1 +- Update to 17.0.0 (#1538381), fix shebangs + +* Fri Feb 09 2018 Fedora Release Engineering - 16.0.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 31 2018 Iryna Shcherbina - 16.0.2-6 +- Update Python 2 dependency declarations to new packaging standards + +* Thu Aug 03 2017 Fedora Release Engineering - 16.0.2-5 +- Rebuilt for + https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 16.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 16.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 16.0.2-2 +- Rebuild for Python 3.6 + +* Wed Nov 23 2016 Kevin Fenzi - 16.0.2-1 +- Update to 16.0.2. Fixes bug #1397615 + +* Sun Nov 13 2016 Thomas Spura - 16.0.1-1 +- Update to 16.0.1 +- Build twice: once for installing later and once for in-place testing: + Testing in-place and installing conflicts (you seem to be able to do only + one of them at the same time). Building twice seems to fix this + +* Tue Jul 19 2016 Fedora Release Engineering - 15.3.0-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_ + Packages + +* Tue Jul 12 2016 Orion Poplawski - 15.3.0-1 +- Update to 15.3.0 + +* Tue Jul 12 2016 Orion Poplawski - 14.7.0-13 +- Use modern provides filtering + +* Thu Feb 04 2016 Fedora Release Engineering - 14.7.0-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Mon Nov 16 2015 Thomas Spura - 14.7.0-11 +- Use setupegg.py for building/installing to have an unzip'ed egg + +* Tue Nov 10 2015 Peter Robinson - 14.7.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Fri Oct 16 2015 Thomas Spura - 14.7.0-9 +- rebuilt to pick up new obsoletes/provides + +* Wed Oct 14 2015 Thomas Spura - 14.7.0-8 +- Close %%if properly + +* Wed Oct 14 2015 Thomas Spura - 14.7.0-7 +- Disable python3 tests again as they are randomly hanging on koji + +* Wed Oct 14 2015 Thomas Spura - 14.7.0-6 +- Cleanup spec and use py_build macros + +* Wed Oct 14 2015 Thomas Spura - 14.7.0-5 +- use python_provide macro + +* Tue Sep 01 2015 Ralph Bean - 14.7.0-4 +- Get ready to support python34 on EPEL7. + +* Tue Jun 23 2015 Thomas Spura - 14.7.0-3 +- temporarily disable python3 testsuite as it hangs on koji + +* Tue Jun 23 2015 Thomas Spura - 14.7.0-2 +- czmq currently FTBFS, so enable it some time later + +* Tue Jun 23 2015 Thomas Spura - 14.7.0-1 +- update to 14.7.0 + +* Thu Jun 18 2015 Dennis Gilmore - 14.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Nov 17 2014 Thomas Spura - 14.4.1-1 +- Update to 14.4.1 and rebuild against zeromq-4 + +* Wed Aug 27 2014 Thomas Spura - 14.3.1-1 +- update to 14.3.1 + +* Sun Aug 17 2014 Peter Robinson - 13.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Dennis Gilmore - 13.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Fri May 16 2014 Slavek Kabrda - 13.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Mon Aug 05 2013 Thomas Spura - 13.0.2-1 +- Fix changelog/release from last commit + +* Mon Aug 05 2013 Thomas Spura - 13.0.0-3 +- update to new version (fixes FTBFS) + +* Sun Aug 04 2013 Dennis Gilmore - 13.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Mar 20 2013 Thomas Spura - 13.0.0-1 +- update to 13.0.0 + +* Thu Feb 14 2013 Dennis Gilmore - 2.2.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Mon Oct 15 2012 Thomas Spura - 2.2.0.1-3 +- not all *.c files may be deleted, when receneration of .c files by + Cython/remove bundled folder explicitely + +* Mon Oct 15 2012 Thomas Spura - 2.2.0.1-2 +- Fix date in changelog + +* Mon Oct 15 2012 Thomas Spura - 2.2.0.1-1 +- update to 2.2.0.1 and move to BR zeromq3 + +* Sun Aug 05 2012 David Malcolm - 2.2.0-5 +- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3 + +* Fri Aug 03 2012 David Malcolm - 2.2.0-4 +- force regeneration of .c files by Cython (needed for python 3.3 support) + +* Fri Aug 03 2012 David Malcolm - 2.2.0-3 +- remove rhel logic from with_python3 conditional + +* Sat Jul 21 2012 Dennis Gilmore - 2.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Thu Apr 26 2012 Thomas Spura - 2.2.0-1 +- update to 2.2.0 + +* Wed Mar 07 2012 Thomas Spura - 2.1.11-1 +- update to new version + +* Sat Jan 14 2012 Dennis Gilmore - 2.1.9-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Dec 14 2011 Thomas Spura - 2.1.9-5 +- tests package requires main package - filter python3 libs + +* Thu Dec 08 2011 Thomas Spura - 2.1.9-4 +- don't include tests twice + +* Thu Dec 08 2011 Thomas Spura - 2.1.9-3 +- also bump the release + +* Thu Dec 08 2011 Thomas Spura - 2.1.9-2 +- use proper buildroot macro + +* Wed Sep 21 2011 Thomas Spura - 2.1.9-1 +- update to new version - run testsuite on python3 + +* Sun Jul 31 2011 Thomas Spura - 2.1.4-4 +- don't delete the tests, needed by ipython-tests on runtime - don't use + _sourcedir macro + +* Wed Apr 06 2011 Thomas Spura - 2.1.4-3 +- upload buildutils, fetched from upstream git repo + +* Wed Apr 06 2011 Thomas Spura - 2.1.4-2 +- also upload new sources + +* Wed Apr 06 2011 Thomas Spura - 2.1.4-1 +- update to new version 2.1.4 (#690199) + +* Wed Mar 23 2011 Thomas Spura - 2.1.1-1 +- update to new version + +* Wed Feb 09 2011 Dennis Gilmore - 2.0.10.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Jan 30 2011 Thomas Spura - 2.0.10.1-1 +- update to new version (fixes memory leak) - no need to run 2to3 on + python3 subpackage + +* Tue Jan 18 2011 Thomas Spura - 2.0.10-1 +- update to new version - remove patch (is upstream) - run tests + differently + +* Thu Dec 30 2010 David Malcolm - 2.0.8-3 +- rebuild for newer python3 + +* Thu Sep 23 2010 Thomas Spura - 2.0.8-2 +- forgot to upload the new sources + +* Thu Sep 23 2010 Thomas Spura - 2.0.8-1 +- update to new version to be comply with zeromq + +* Sun Aug 22 2010 Thomas Spura - 0.1.20100725git18f5d06-2 +- rebuild with python3.2 + http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html + +* Mon Aug 16 2010 Thomas Spura - 0.1.20100725git18f5d06-1 +- initial import (#603245) +## END: Generated by rpmautospec diff --git a/python-zmq.spec b/python-zmq.spec deleted file mode 100644 index 5487fbd..0000000 --- a/python-zmq.spec +++ /dev/null @@ -1,177 +0,0 @@ -Name: python-zmq -Version: 19.0.2 -Release: %autorelease -Summary: Python bindings for zeromq - -# As noted in https://github.com/zeromq/pyzmq/blob/v26.2.0/RELICENSE/README.md: -# pyzmq starting with 26.0.0 is fully licensed under the 3-clause Modified -# BSD License. A small part of the core (Cython backend only) was previously -# licensed under LGPLv3 for historical reasons. Permission has been granted -# by the contributors of the vast majority of those components to relicense -# under MPLv2 or BSD. This backend has been completely replaced in pyzmq 26, -# and the new implementation is fully licensed under BSD-3-Clause, so pyzmq -# is now under a single license. -# Since this package is currently at 19.0.0, the entire source is BSD-3-Clause -# (LICENSE.BSD), except: -# - Some core files (the low-level Cython bindings) are LGPL-3.0-or-later -# (LICENSE.LESSER); based on comments in file headers, this is: -# * zmq/backend/cython/_device.pyx. -# * zmq/include/zmq.h -# * zmq/include/zmq_utils.h -# - zmq/ssh/forward.py, which is derived from a Paramiko demo, is -# LGPL-2.1-or-later -# - The following are Apache-2.0: -# * zmq/eventloop/minitornado/ioloop.py -# * zmq/eventloop/minitornado/platform/auto.py -# * zmq/eventloop/minitornado/platform/interface.py -# * zmq/eventloop/minitornado/platform/posix.py -# * zmq/eventloop/minitornado/stack_context.py -# * zmq/eventloop/zmqstream.py -# - zmq/utils/sixcerpt.py, which is derived from python3dist(six), is MIT -# Additionally, the following do not affect the license of the binary RPMs: -# - tools/run_with_env.cmd is CC0-1.0; for distribution in the source RPM, it -# is covered by “Existing uses of CC0-1.0 on code files in Fedora packages -# prior to 2022-08-01, and subsequent upstream versions of those files in -# those packages, continue to be allowed. We encourage Fedora package -# maintainers to ask upstreams to relicense such files.” -# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/91#note_1151947383 -# - examples/device/device.py and examples/win32-interrupt/display.py are -# LicenseRef-Fedora-Public-Domain; approved in “Review of -# python-zmq examples dedicated to the public domain,” -# https://gitlab.com/fedora/legal/fedora-license-data/-/issues/616; see -# https://gitlab.com/fedora/legal/fedora-license-data/-/merge_requests/716 -# - The following are BSD-2-Clause, but are removed in %%prep: -# * bundled/zeromq/external/wepoll/ -# - The following are LGPL-3.0-or-later, but are removed in %%prep: -# * bundled/zeromq/, except bundled/zeromq/external/wepoll/ -License: %{shrink: - BSD-3-Clause AND - LGPL-3.0-or-later AND - LGPL-2.1-or-later AND - Apache-2.0 AND - MIT - } -URL: https://zeromq.org/languages/python/ -Source0: %{pypi_source pyzmq} -# BUG: A file is licensed Apache-2.0, but the license text is not distributed -# https://github.com/zeromq/pyzmq/issues/2048 -Source1: https://www.apache.org/licenses/LICENSE-2.0.txt#/LICENSE.Apache-2.0 - -BuildRequires: gcc - -BuildRequires: zeromq-devel - -BuildRequires: python%{python3_pkgversion}-devel -BuildRequires: python%{python3_pkgversion}-setuptools -BuildRequires: python%{python3_pkgversion}-Cython - -%global common_description %{expand: -This package contains Python bindings for ZeroMQ. ØMQ is a lightweight and fast -messaging implementation.} - -%description %{common_description} - - -%package -n python%{python3_pkgversion}-zmq -Summary: %{summary} -%{?python_provide:%python_provide python%{python3_pkgversion}-zmq} -%{?python_provide:%python_provide python%{python3_pkgversion}-pyzmq} -Provides: python%{python3_pkgversion}-pyzmq = %{version}-%{release} - -%description -n python%{python3_pkgversion}-zmq %{common_description} - - -%package -n python%{python3_pkgversion}-zmq-tests -Summary: Test suite for Python bindings for zeromq -# This subpackage does not contain any of the files that are under other -# licenses; see the comment above the main License tag. -License: BSD-3-Clause - -Requires: python%{python3_pkgversion}-zmq%{?_isa} = %{version}-%{release} -%{?python_provide:%python_provide python%{python3_pkgversion}-zmq-tests} -%{?python_provide:%python_provide python%{python3_pkgversion}-pyzmq-tests} -Provides: python%{python3_pkgversion}-pyzmq-tests = %{version}-%{release} - -BuildRequires: python%{python3_pkgversion}-pytest -Requires: python%{python3_pkgversion}-pytest -BuildRequires: python%{python3_pkgversion}-tornado -Requires: python%{python3_pkgversion}-tornado -# Some tests in zmq/tests/test_context.py and zmq/tests/test_socket.py require -# pyczmq, which is not packaged and has not been updated in a decade. -# -# Enable more tests in zmq/tests/test_message.py: -BuildRequires: python%{python3_pkgversion}-numpy -Requires: python%{python3_pkgversion}-numpy - -%description -n python%{python3_pkgversion}-zmq-tests %{common_description} - -This package contains the test suite for the Python bindings. - - -%prep -%autosetup -n pyzmq-%{version} - -# remove bundled libraries -rm -rv bundled/ - -# forcibly regenerate the Cython-generated .c files: -find zmq -name '*.c' -delete - -# Remove useless shebangs in files that will be installed without executable -# permission. The pattern of selecting files before modifying them with sed -# keeps us from unnecessarily discarding the original mtimes on unmodified -# files. -find zmq -type f -name '*.py' \ - -exec gawk '/^#!/ { print FILENAME }; { nextfile }' '{}' '+' | - xargs -r sed -r -i '1{/^#!/d}' - -# BUG: A file is licensed Apache-2.0, but the license text is not distributed -# https://github.com/zeromq/pyzmq/issues/2048 -cp -p '%{SOURCE1}' . - - -%build -%{python3} setup.py cython -%py3_build - - -%install -%py3_install - - -%check -# to avoid partially initialized zmq module from cwd -mkdir -p _empty -cd _empty -ln -s %{buildroot}%{python3_sitearch}/zmq/ ../pytest.ini ./ - -# test_draft seems to get incorrectly run: -# https://github.com/zeromq/pyzmq/issues/1853 -k="${k-}${k+ and }not test_draft" - -# Whatever it takes to build the Cython extension tests/cython_ext.pyx that is -# *in the tests*, we aren’t doing it. This goes away in later releases, so we -# don’t put any effort into figuring out how to make it work. -k="${k-}${k+ and }not test_cython" - -# These hang; TODO: why? -k="${k-}${k+ and }not (TestAsyncioAuthentication and test_blacklist)" -k="${k-}${k+ and }not (TestAsyncioAuthentication and test_curve)" -k="${k-}${k+ and }not (TestAsyncioAuthentication and test_plain)" - -%pytest -k "${k-}" -v -rs zmq/tests - - -%files -n python%{python3_pkgversion}-zmq -%license COPYING.* -%doc README.md -%{python3_sitearch}/pyzmq-%{version}-py%{python3_version}.egg-info -%{python3_sitearch}/zmq/ -%exclude %{python3_sitearch}/zmq/tests/ - -%files -n python%{python3_pkgversion}-zmq-tests -%{python3_sitearch}/zmq/tests/ - - -%changelog -%autochangelog diff --git a/sources b/sources deleted file mode 100644 index eeeb633..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (pyzmq-19.0.2.tar.gz) = aca37b54e07fe6c3c16be56aa5bd856bbf0f4d7bebd11bd9fdecc6e74b7f996572f1dc52e32ae94562c5a63391975a1caeb04d3c0af9f82f780dbee37aae1a9f