commit 19d1f1c15dee9044b7ee64fe2784fc4b18ff631e9077564d4d57cfbdf42c78f1 Author: Tomáš Chvátal Date: Thu Jan 25 11:45:38 2018 +0000 Accepting request 569487 from home:sebix can also maintain it OBS-URL: https://build.opensuse.org/request/show/569487 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-py-radix?expand=0&rev=1 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/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..37e7e06 --- /dev/null +++ b/python-py-radix.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +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..5372ad5 --- /dev/null +++ b/python-py-radix.spec @@ -0,0 +1,61 @@ +# +# spec file for package python-py-radix +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# 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 http://bugs.opensuse.org/ +# + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-py-radix +Version: 0.10.0 +Release: 0 +Summary: Radix tree implementation +License: ISC AND BSD-4-Clause +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 +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +%python_subpackages + +%description +py-radix 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. + +The C extension will be built for supported python versions. If you do not +want the C extension, set the environment variable ``RADIX_NO_EXT=1``. + +%prep +%setup -q -n py-radix-%{version} + +%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