14
0
Sebastian Wagner
2024-07-15 16:47:40 +00:00
committed by Git OBS Bridge
commit f1ce748c49
6 changed files with 131 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -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

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

23
58.patch Normal file
View File

@@ -0,0 +1,23 @@
From ce1da838d74031cfbd3c4dae3a28b9c3c11b5000 Mon Sep 17 00:00:00 2001
From: Robert Scheck <robert@fedoraproject.org>
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);
}

3
py-radix-0.10.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b8dbd1344bb30c6a1097d4103203c7b117d92931620365985018de4bef5aede3
size 21815

18
python-py-radix.changes Normal file
View File

@@ -0,0 +1,18 @@
-------------------------------------------------------------------
Tue Jun 18 10:45:53 UTC 2024 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- 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

63
python-py-radix.spec Normal file
View File

@@ -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