From f501544bf40b110a720d894146a298b36c79fb9f04ffb036a7d15257afff8089 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Fri, 23 Aug 2024 04:22:45 +0000 Subject: [PATCH] - Do not use setup.py test to "run" the testsuite, use pytest to actually run it. - Switch to pyproject macros. - No more greedy globs in %files. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-iptables?expand=0&rev=12 --- python-iptables.changes | 8 ++++++++ python-iptables.spec | 23 ++++++++++++++++------- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/python-iptables.changes b/python-iptables.changes index 0200fe8..4dc1c57 100644 --- a/python-iptables.changes +++ b/python-iptables.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Fri Aug 23 04:18:10 UTC 2024 - Steve Kowalik + +- Do not use setup.py test to "run" the testsuite, use pytest to + actually run it. +- Switch to pyproject macros. +- No more greedy globs in %files. + ------------------------------------------------------------------- Thu Dec 7 22:57:15 UTC 2023 - Dirk Müller diff --git a/python-iptables.spec b/python-iptables.spec index 3146d9e..412f1c8 100644 --- a/python-iptables.spec +++ b/python-iptables.spec @@ -1,7 +1,7 @@ # # spec file for package python-iptables # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,19 +16,24 @@ # -%{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-iptables Version: 1.0.1 Release: 0 Summary: Python bindings for iptables License: Apache-2.0 -Group: Development/Languages/Python URL: https://github.com/ldx/python-iptables Source: https://github.com/ldx/python-iptables/archive/v%{version}.tar.gz BuildRequires: %{python_module devel} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module wheel} BuildRequires: fdupes +BuildRequires: libiptc-devel +BuildRequires: libxtables-devel +BuildRequires: pkg-config BuildRequires: python-rpm-macros +BuildRequires: xtables-plugins %python_subpackages %description @@ -43,18 +48,22 @@ at the same time leveraging all available iptables match and target extensions w chmod -x README.md %build -%python_build +%pyproject_wheel %install -%python_install +%pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitearch} %check -%python_exec setup.py clean build test --help +export XTABLES_LIBDIR=$(pkg-config xtables --variable=xtlibdir) +# Most of the tests require root +%pytest_arch -k 'TestChain and not (test_chain or test_create_chain)' %files %{python_files} %license NOTICE %doc doc README.md -%{python_sitearch}/* +%{python_sitearch}/iptc +%{python_sitearch}/libxtwrapper.cpython*-linux-gnu.so +%{python_sitearch}/python_iptables-%{version}.dist-info %changelog