2015-12-11 09:52:14 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-pyroute2
|
|
|
|
#
|
2017-01-10 17:19:52 +00:00
|
|
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
2015-12-11 09:52:14 +00:00
|
|
|
#
|
|
|
|
# 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/
|
2016-08-08 08:27:17 +00:00
|
|
|
#
|
2015-12-11 09:52:14 +00:00
|
|
|
|
|
|
|
|
2017-07-10 07:14:32 +00:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2015-12-11 09:52:14 +00:00
|
|
|
Name: python-pyroute2
|
2017-09-19 13:26:53 +00:00
|
|
|
Version: 0.4.21
|
2015-12-11 09:52:14 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Python Netlink library
|
2016-08-08 08:27:17 +00:00
|
|
|
License: GPL-2.0+ or Apache-2.0
|
2015-12-11 09:52:14 +00:00
|
|
|
Group: Development/Languages/Python
|
2016-08-08 08:27:17 +00:00
|
|
|
Url: https://github.com/svinota/pyroute2
|
2017-07-10 07:14:32 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/pyroute2/pyroute2-%{version}.tar.gz
|
|
|
|
BuildRequires: %{python_module devel}
|
|
|
|
BuildRequires: python-rpm-macros
|
2015-12-11 09:52:14 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
2017-07-10 07:14:32 +00:00
|
|
|
|
|
|
|
%python_subpackages
|
2015-12-11 09:52:14 +00:00
|
|
|
|
|
|
|
%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
|
2017-07-10 07:14:32 +00:00
|
|
|
%python_build
|
2015-12-11 09:52:14 +00:00
|
|
|
|
|
|
|
%install
|
2017-07-10 07:14:32 +00:00
|
|
|
%python_install
|
2015-12-11 09:52:14 +00:00
|
|
|
|
2017-07-10 07:14:32 +00:00
|
|
|
%files %{python_files}
|
2015-12-11 09:52:14 +00:00
|
|
|
%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
|