forked from pool/python-iptables
- Initial version
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-iptables?expand=0&rev=1
This commit is contained in:
55
python-iptables.spec
Normal file
55
python-iptables.spec
Normal file
@@ -0,0 +1,55 @@
|
||||
#
|
||||
# spec file for package python-iptables
|
||||
#
|
||||
# Copyright (c) 2012 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-iptables
|
||||
Version: 0.1.1+git20121114
|
||||
Release: 0
|
||||
Url: https://github.com/ldx/python-iptables
|
||||
Summary: Python bindings for iptables
|
||||
License: Apache-2.0
|
||||
Group: Development/Languages/Python
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-distribute
|
||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
%endif
|
||||
|
||||
%description
|
||||
Python-iptables is a Python project that provides bindings to the iptables C libraries in Linux.
|
||||
Interoperability with iptables is achieved using the iptables C libraries (libiptc, libxtables,
|
||||
and iptables extensions), not calling the iptables executable and parsing its output as most other
|
||||
iptables wrapper libraries do; this makes python-iptables faster and not prone to parsing errors,
|
||||
at the same time leveraging all available iptables match and target extensions without further work.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}
|
||||
|
||||
%build
|
||||
python setup.py build
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc NOTICE doc
|
||||
%{python_sitearch}/*
|
||||
|
||||
%changelog
|
||||
Reference in New Issue
Block a user