commit f9b00e29e65caae5c7676565b67ad0dd3aa384801cc35d1bd3248d2822b08372 Author: Todd R Date: Fri Dec 11 09:52:14 2015 +0000 Accepting request 348332 from home:gary_lin:iovisor New module 'python-pyroute2' to manipulate the network configuration OBS-URL: https://build.opensuse.org/request/show/348332 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyroute2?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/pyroute2-0.3.15.tar.gz b/pyroute2-0.3.15.tar.gz new file mode 100644 index 0000000..1a5c56f --- /dev/null +++ b/pyroute2-0.3.15.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b7116fd97f73f97adc3b9c040a4ddbe61f18bb02f47e1c8399567c8791d270 +size 143335 diff --git a/python-pyroute2.changes b/python-pyroute2.changes new file mode 100644 index 0000000..72642c8 --- /dev/null +++ b/python-pyroute2.changes @@ -0,0 +1,10 @@ +------------------------------------------------------------------- +Fri Dec 11 04:11:42 UTC 2015 - glin@suse.com + +- Update to 0.3.15 + +------------------------------------------------------------------- +Fri Nov 6 04:50:44 UTC 2015 - glin@suse.com + +- initial import 0.3.14 + diff --git a/python-pyroute2.spec b/python-pyroute2.spec new file mode 100644 index 0000000..1176f95 --- /dev/null +++ b/python-pyroute2.spec @@ -0,0 +1,67 @@ +# +# spec file for package python-pyroute2 +# +# Copyright (c) 2015 SUSE LINUX Products 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/ + + +Name: python-pyroute2 +Version: 0.3.15 +Release: 0 +License: GPL-2.0+ or Apache-2.0 +Summary: Python Netlink library +Url: https://github.com/svinota/pyroute2 +Group: Development/Languages/Python +Source: https://pypi.python.org/packages/source/p/pyroute2/pyroute2-%{version}.tar.gz +BuildRequires: python-devel +BuildRoot: %{_tmppath}/%{name}-%{version}-build +%if 0%{?suse_version} && 0%{?suse_version} <= 1110 +%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%else +BuildArch: noarch +%endif + +%description +Pyroute2 is a pure Python **netlink** and Linux **network configuration** +library. It requires only Python stdlib, no 3rd party libraries. +Later it can change, but the deps tree will remain as simple, as +it is possible. + +The library provides several modules: + +* Netlink protocol implementations (RTNetlink, TaskStats, etc) + * **rtnl**, network settings --- addresses, routes, traffic controls + * **nl80211** --- wireless functions API (work in progress) + * **nfnetlink** --- netfilter API: **ipset** (work in progress), ... + * **ipq** --- simplest userspace packet filtering, iptables QUEUE target + * **taskstats** --- extended process statistics +* Simple netlink socket object, that can be used in poll/select +* Network configuration module IPRoute provides API that in some + way resembles ip/tc functionality +* IPDB is an async transactional database of Linux network settings + +%prep +%setup -q -n pyroute2-%{version} + +%build +python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%files +%defattr(-,root,root,-) +%doc README.make.md README.packages.md README.md LICENSE.Apache.v2 CHANGELOG.md LICENSE.GPL.v2 README.license.md +%{python_sitelib}/* + +%changelog