[packages/python3-greenlet] Up to 3.1.1
arekm
arekm at pld-linux.org
Fri Mar 14 21:51:06 CET 2025
commit fec11073e187744af95498e8b6232ffdf828941f
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Fri Mar 14 21:44:45 2025 +0100
Up to 3.1.1
python-greenlet-py3.8.patch | 23 ------
python-greenlet.spec => python3-greenlet.spec | 105 ++------------------------
2 files changed, 6 insertions(+), 122 deletions(-)
---
diff --git a/python-greenlet.spec b/python3-greenlet.spec
similarity index 54%
rename from python-greenlet.spec
rename to python3-greenlet.spec
index b54745e..90914f2 100644
--- a/python-greenlet.spec
+++ b/python3-greenlet.spec
@@ -1,41 +1,26 @@
#
# Conditional build:
-%bcond_without python2 # CPython 2.x module
-%bcond_without python3 # CPython 3.x module
%bcond_without doc # Sphinx documentation
%bcond_without tests # unit tests and benchmarks (any)
-%bcond_without tests_py2 # CPython 2.x module tests
-
-%if %{without tests}
-%undefine with_tests_py2
-%endif
%define module greenlet
Summary: Lightweight in-process concurrent programming
Summary(pl.UTF-8): Lekkie programowanie równoległe wewnątrz procesu
-Name: python-%{module}
-Version: 1.1.3
-Release: 3
+Name: python3-%{module}
+Version: 3.1.1
+Release: 1
License: MIT, PSF (Stackless Python parts)
Group: Libraries/Python
#Source0Download: https://pypi.org/simple/greenlet/
Source0: https://files.pythonhosted.org/packages/source/g/greenlet/%{module}-%{version}.tar.gz
-# Source0-md5: 4b8954da74881abb5f8129f94aa8219f
-Patch0: %{name}-py3.8.patch
+# Source0-md5: 13a71396abdf249280fa25d258acf435
URL: https://pypi.org/project/greenlet/
BuildRequires: rpm-build >= 4.6
BuildRequires: rpm-pythonprov
BuildRequires: rpmbuild(macros) >= 1.714
-%if %{with python2}
-BuildRequires: python-devel >= 1:2.7
-BuildRequires: python-setuptools
-%endif
-%if %{with python3}
-BuildRequires: python3-2to3 >= 1:3.5
BuildRequires: python3-devel >= 1:3.5
BuildRequires: python3-setuptools
BuildRequires: python3-modules >= 1:3.5
-%endif
%if %{with doc}
# already installed
BuildRequires: python3-greenlet
@@ -65,7 +50,7 @@ Summary: C development headers for Python 2 greenlet module
Summary(pl.UTF-8): Pliki nagłówkowe C dla modułu Pythona 2 greenlet
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
-Requires: python-devel >= 1:2.7
+Requires: python3-devel >= 1:3.7
%description devel
This package contains header files required for C modules development.
@@ -74,39 +59,6 @@ This package contains header files required for C modules development.
Ten pakiet zawiera pliki nagłówkowe potrzebne do tworzenia modułów w
C.
-%package -n python3-%{module}
-Summary: Lightweight in-process concurrent programming
-Summary(pl.UTF-8): Lekkie programowanie równoległe wewnątrz procesu
-Group: Libraries/Python
-Requires: python3-modules >= 1:3.5
-
-%description -n python3-%{module}
-The greenlet package is a spin-off of Stackless, a version of CPython
-that supports micro-threads called "tasklets". Tasklets run
-pseudo-concurrently (typically in a single or a few OS-level threads)
-and are synchronized with data exchanges on "channels".
-
-%description -n python3-%{module} -l pl.UTF-8
-Pakiet greenlet to odprysk projektu Stackless - wersji CPythona
-obsługującej mikrowątki zwane "taskletami". Tasklety działają
-pseudorównolegle (zwykle w jednym lub kilku wątkach na poziomie
-systemu operacyjnego) i są synchronizowane przy wymianie danych
-poprzez "kanały".
-
-%package -n python3-%{module}-devel
-Summary: C development headers for Python 3 greenlet module
-Summary(pl.UTF-8): Pliki nagłówkowe C dla modułu Pythona 3 greenlet
-Group: Development/Libraries
-Requires: python3-%{module} = %{version}-%{release}
-Requires: python3-devel >= 1:3.5
-
-%description -n python3-%{module}-devel
-This package contains header files required for C modules development.
-
-%description -n python3-%{module}-devel -l pl.UTF-8
-Ten pakiet zawiera pliki nagłówkowe potrzebne do tworzenia modułów w
-C.
-
%package apidocs
Summary: API documentation for Python greenlet module
Summary(pl.UTF-8): Dokumentacja API modułu Pythona greenlet
@@ -121,24 +73,8 @@ Dokumentacja API modułu Pythona greenlet.
%prep
%setup -q -n greenlet-%{version}
-%patch -P 0 -p1
%build
-%if %{with python2}
-%py_build
-
-%if %{with tests_py2}
-BUILDDIR=$(echo $(pwd)/build-2/lib.linux-*)
-PYTHONPATH="$BUILDDIR" \
-%{__python} -m unittest discover greenlet.tests
-
-# Run the upstream benchmarking suite to further exercise the code:
-PYTHONPATH="$BUILDDIR" \
-%{__python} benchmarks/chain.py
-%endif
-%endif
-
-%if %{with python3}
%py3_build
%if %{with tests}
@@ -147,12 +83,9 @@ PYTHONPATH="$BUILDDIR" \
%{__python3} -m unittest discover greenlet.tests
# Run the upstream benchmarking suite to further exercise the code:
-mkdir -p benchmarks-3
-2to3-%{py3_ver} -o benchmarks-3 -n -w --no-diffs benchmarks
PYTHONPATH="$BUILDDIR" \
%{__python3} benchmarks-3/chain.py
%endif
-%endif
%if %{with doc}
PYTHONPATH=$(echo $(pwd)/build-3/lib.linux-*) \
@@ -163,41 +96,16 @@ PYTHONPATH=$(echo $(pwd)/build-3/lib.linux-*) \
%install
rm -rf $RPM_BUILD_ROOT
-%if %{with python2}
-%py_install
-
-%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/greenlet/*.[ch]
-%{__rm} -r $RPM_BUILD_ROOT%{py_sitedir}/greenlet/{platform,tests}
-%py_postclean
-%endif
-
-%if %{with python3}
%py3_install
%{__rm} $RPM_BUILD_ROOT%{py3_sitedir}/greenlet/*.[ch]
%{__rm} -r $RPM_BUILD_ROOT%{py3_sitedir}/greenlet/{platform,tests}
-%endif
%clean
rm -rf $RPM_BUILD_ROOT
-%if %{with python2}
%files
%defattr(644,root,root,755)
-%doc AUTHORS CHANGES.rst LICENSE README.rst benchmarks
-%dir %{py_sitedir}/greenlet
-%attr(755,root,root) %{py_sitedir}/greenlet/_greenlet.so
-%{py_sitedir}/greenlet/*.py[co]
-%{py_sitedir}/greenlet-%{version}-py*.egg-info
-
-%files devel
-%defattr(644,root,root,755)
-%{_includedir}/python%{py_ver}/greenlet
-%endif
-
-%if %{with python3}
-%files -n python3-%{module}
-%defattr(644,root,root,755)
%doc AUTHORS CHANGES.rst LICENSE README.rst %{?with_tests:benchmarks-3}
%dir %{py3_sitedir}/greenlet
%attr(755,root,root) %{py3_sitedir}/greenlet/_greenlet.cpython-*.so
@@ -205,10 +113,9 @@ rm -rf $RPM_BUILD_ROOT
%{py3_sitedir}/greenlet/__pycache__
%{py3_sitedir}/greenlet-%{version}-py*.egg-info
-%files -n python3-%{module}-devel
+%files devel
%defattr(644,root,root,755)
%{_includedir}/python%{py3_ver}*/greenlet
-%endif
%if %{with doc}
%files apidocs
diff --git a/python-greenlet-py3.8.patch b/python-greenlet-py3.8.patch
deleted file mode 100644
index 8cb67ab..0000000
--- a/python-greenlet-py3.8.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- greenlet-0.4.15/benchmarks/chain.py.orig 2016-12-11 00:52:06.000000000 +0100
-+++ greenlet-0.4.15/benchmarks/chain.py 2020-01-01 21:06:15.218260648 +0100
-@@ -5,7 +5,10 @@
- """
-
- import optparse
--import time
-+try:
-+ from time import perf_counter
-+except:
-+ from time import clock as perf_counter
-
- import greenlet
-
-@@ -34,6 +37,6 @@
- if len(args) != 0:
- p.error('unexpected arguments: %s' % ', '.join(args))
-
-- start_time = time.clock()
-+ start_time = perf_counter()
- print 'Result:', chain(options.num_greenlets)
-- print time.clock() - start_time, 'seconds'
-+ print perf_counter() - start_time, 'seconds'
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-greenlet.git/commitdiff/fec11073e187744af95498e8b6232ffdf828941f
More information about the pld-cvs-commit
mailing list