14
0
Files
python-pyroute2/python-pyroute2.spec
Dirk Mueller 1155d6efcc - update to 0.4.15:
* req: #365 -- full and short nla notation fixed, critical
   * iproute: #364 -- new method, `brport()`
   * ipdb: -- support bridge port options
   * event: new genl protocols set: VFS_DQUOT, acpi_event, thermal_event
   * ipdb: #310 -- fixed priority change on routes
   * ipdb: #349 -- fix setting ifalias on interfaces
   * ipdb: #353 -- mitigate kernel oops during bridge creation
   * ipdb: #354 -- allow to explicitly choose plugins to load
   * ipdb: #359 -- provide read-only context managers
   * rtnl: #336 -- vlan flags support
   * rtnl: #352 -- support interface type plugins
   * tc: #344 -- mirred action
   * tc: #346 -- connmark action
   * netlink: #358 -- memory optimization
   * config: #360 -- generic asyncio config
   * iproute: #362 -- allow to change or replace a qdisc
   * ipset: full rework of the IPSET_ATTR_DATA and IPSET_ATTR_ADT
     ACHTUNG: this commit may break API compatibility
   * ipset: hash:mac support
   * ipset: list:set support
   * ipdb: throw EEXIST when creates VLAN/VXLAN devs with same ID, but
     under different names
   * tests: #329 -- include unit tests into the bundle
    * legal: E/// logo removed

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyroute2?expand=0&rev=11
2017-06-13 09:50:31 +00:00

69 lines
2.5 KiB
RPMSpec

#
# spec file for package python-pyroute2
#
# Copyright (c) 2017 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/
#
Name: python-pyroute2
Version: 0.4.15
Release: 0
Summary: Python Netlink library
License: GPL-2.0+ or Apache-2.0
Group: Development/Languages/Python
Url: https://github.com/svinota/pyroute2
Source: https://pypi.io/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