[packages/python3-pyrsistent] up to 0.20.0
atler
atler at pld-linux.org
Tue Mar 25 13:23:37 CET 2025
commit eb0e902e1f996f3e79064a19d1e6dab0d31de6e3
Author: Jan Palus <atler at pld-linux.org>
Date: Tue Mar 25 12:30:43 2025 +0100
up to 0.20.0
add upstream fix for python 3.13
python3-pyrsistent.spec | 8 +++++---
python3.13.patch | 36 ++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+), 3 deletions(-)
---
diff --git a/python3-pyrsistent.spec b/python3-pyrsistent.spec
index 1146c15..90cb4b2 100644
--- a/python3-pyrsistent.spec
+++ b/python3-pyrsistent.spec
@@ -6,13 +6,14 @@
Summary: Persistent/Functional/Immutable data structures
Summary(pl.UTF-8): Trwałe/funkcyjne/niezmienne struktury danych
Name: python3-pyrsistent
-Version: 0.19.3
-Release: 3
+Version: 0.20.0
+Release: 1
License: MIT
Group: Libraries/Python
#Source0Download: https://pypi.org/simple/pyrsistent/
Source0: https://files.pythonhosted.org/packages/source/p/pyrsistent/%{module}-%{version}.tar.gz
-# Source0-md5: 761266eab1f9dc9280cdb0a6d2dedb08
+# Source0-md5: dce0f9a13668dbf8bb76f74954b4a42a
+Patch0: python3.13.patch
URL: http://github.com/tobgu/pyrsistent/
BuildRequires: python3-devel >= 1:3.7
BuildRequires: python3-setuptools
@@ -37,6 +38,7 @@ strukturami danych). Są trwałe w tym sensie, że są niezmienne.
%prep
%setup -q -n %{module}-%{version}
+%patch -P0 -p1
# Remove bundled egg-info
%{__rm} -r %{module}.egg-info
diff --git a/python3.13.patch b/python3.13.patch
new file mode 100644
index 0000000..e6b37a0
--- /dev/null
+++ b/python3.13.patch
@@ -0,0 +1,36 @@
+From c876adc774e7bb3c896b013f13d7c6ce80e79544 Mon Sep 17 00:00:00 2001
+From: "Benjamin A. Beasley" <code at musicinmybrain.net>
+Date: Thu, 26 Oct 2023 09:53:40 -0400
+Subject: [PATCH] Replace _PyList_Extend with PyList_SetSlice
+
+This private function is no longer exported in Python 3.13.
+
+It is possible that a PyList_Extend() function-like macro may be added
+before Python 3.13 final, but using PyList_SetSlice() directly will
+still work.
+
+https://github.com/python/cpython/pull/108451
+
+https://github.com/python/cpython/issues/111138
+---
+ pvectorcmodule.c | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/pvectorcmodule.c b/pvectorcmodule.c
+index 8667abb..9b83a56 100644
+--- a/pvectorcmodule.c
++++ b/pvectorcmodule.c
+@@ -1313,12 +1313,10 @@ static PyObject *PVectorEvolver_append(PVectorEvolver *self, PyObject *args) {
+ }
+
+ static PyObject *PVectorEvolver_extend(PVectorEvolver *self, PyObject *args) {
+- PyObject *retVal = _PyList_Extend((PyListObject *)self->appendList, args);
+- if (retVal == NULL) {
++ if (PyList_SetSlice(self->appendList, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, args) < 0) {
+ return NULL;
+ }
+
+- Py_DECREF(retVal);
+ Py_INCREF(self);
+ return (PyObject*)self;
+ }
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/python3-pyrsistent.git/commitdiff/eb0e902e1f996f3e79064a19d1e6dab0d31de6e3
More information about the pld-cvs-commit
mailing list