From f1ce748c493c546469bc7743e74d2aa36f908e1a30cad41d7ee06dae5d1acea0 Mon Sep 17 00:00:00 2001 From: Sebastian Wagner Date: Mon, 15 Jul 2024 16:47:40 +0000 Subject: [PATCH] fix patch syntax for 15.6 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-py-radix?expand=0&rev=8 --- .gitattributes | 23 +++++++++++++++ .gitignore | 1 + 58.patch | 23 +++++++++++++++ py-radix-0.10.0.tar.gz | 3 ++ python-py-radix.changes | 18 ++++++++++++ python-py-radix.spec | 63 +++++++++++++++++++++++++++++++++++++++++ 6 files changed, 131 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 58.patch create mode 100644 py-radix-0.10.0.tar.gz create mode 100644 python-py-radix.changes create mode 100644 python-py-radix.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/58.patch b/58.patch new file mode 100644 index 0000000..b6ca91e --- /dev/null +++ b/58.patch @@ -0,0 +1,23 @@ +From ce1da838d74031cfbd3c4dae3a28b9c3c11b5000 Mon Sep 17 00:00:00 2001 +From: Robert Scheck +Date: Sun, 16 Jun 2024 19:03:43 +0200 +Subject: [PATCH] Change incompatible pointer type from RadixNodeObject to + PyObject + +--- + radix/_radix.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/radix/_radix.c b/radix/_radix.c +index 5a1b88f..5dcfc59 100644 +--- a/radix/_radix.c ++++ b/radix/_radix.c +@@ -524,7 +524,7 @@ add_node_to_list(radix_node_t *node, void *arg) + PyObject *ret = arg; + + if (node->data != NULL) +- PyList_Append(ret, ((RadixNodeObject *)node->data)); ++ PyList_Append(ret, ((PyObject *)node->data)); + return (0); + } + diff --git a/py-radix-0.10.0.tar.gz b/py-radix-0.10.0.tar.gz new file mode 100644 index 0000000..c6e9689 --- /dev/null +++ b/py-radix-0.10.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8dbd1344bb30c6a1097d4103203c7b117d92931620365985018de4bef5aede3 +size 21815 diff --git a/python-py-radix.changes b/python-py-radix.changes new file mode 100644 index 0000000..f36573a --- /dev/null +++ b/python-py-radix.changes @@ -0,0 +1,18 @@ +------------------------------------------------------------------- +Tue Jun 18 10:45:53 UTC 2024 - John Paul Adrian Glaubitz + +- Cherry-pick upstream patch to fix build with GCC 14 + * https://github.com/mjschultz/py-radix/pull/58.patch +- Switch package to modern Python Stack on SLE-15 + + Use Python 3.11 on SLE-15 by default + + Drop support for older Python versions + +------------------------------------------------------------------- +Thu Jan 25 11:52:58 UTC 2018 - sebix+novell.com@sebix.at + +- shorten and rephrase package description + +------------------------------------------------------------------- +Thu Jan 25 09:52:48 UTC 2018 - sebix+novell.com@sebix.at + +- initial package for version 0.10.0 diff --git a/python-py-radix.spec b/python-py-radix.spec new file mode 100644 index 0000000..19cd7a1 --- /dev/null +++ b/python-py-radix.spec @@ -0,0 +1,63 @@ +# +# spec file for package python-py-radix +# +# Copyright (c) 2024 SUSE LLC +# +# 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/ +# + + +%{?sle15_python_module_pythons} +Name: python-py-radix +Version: 0.10.0 +Release: 0 +Summary: Radix tree implementation +License: BSD-4-Clause AND ISC +Group: Development/Languages/Python +URL: https://github.com/mjschultz/py-radix +Source: https://files.pythonhosted.org/packages/source/p/py-radix/py-radix-%{version}.tar.gz +# PATCH-FIX-UPSTREAM - Change incompatible pointer type from RadixNodeObject to PyObject +Patch0: https://github.com/mjschultz/py-radix/pull/58.patch +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +%python_subpackages + +%description +Implements the radix tree data structure for the storage and +retrieval of IPv4 and IPv6 network prefixes. + +The radix tree is commonly used for routing table lookups. It efficiently +stores network prefixes of varying lengths and allows fast lookups of +containing networks. + +This package includes the C-extension. + +%prep +%setup -q -n py-radix-%{version} +%patch0 -p1 + +%build +export CFLAGS="%{optflags}" +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitearch} + +%files %{python_files} +%doc README.rst +%license LICENSE +%{python_sitearch}/* + +%changelog