15
0
forked from pool/python-dpkt
Files
python-dpkt/python-dpkt.spec

67 lines
2.0 KiB
RPMSpec

#
# spec file for package python-dpkt
#
# Copyright (c) 2021 SUSE LLC
#
# 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 https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-dpkt
Version: 1.9.7.2
Release: 0
Summary: Packet creation and parsing module for Python
License: BSD-3-Clause
Group: Development/Libraries/Python
URL: https://github.com/kbandla/dpkt
Source: https://github.com/kbandla/dpkt/archive/v%{version}.tar.gz
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
A packet creation / parsing module for Python, with definitions for
the basic TCP/IP protocols.
%prep
%setup -q -n dpkt-%{version}
%autopatch -p1
# do not add extra pytest argumetns
sed -i -e '/addopts=/d' setup.cfg
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
# Skipped because of gh#kbandla/dpkt#505
export SKIPTESTS=""
%ifarch s390x ppc64
export SKIPTESTS="not (test_ethernet_unpack or test_ethernet_unpack or test_writepkt_epb_ts or test_custom_read_write or test_multi_idb_writer)"
%endif
%pytest -k "${SKIPTESTS}" dpkt
%files %{python_files}
%license LICENSE
%doc examples AUTHORS README.md docs
%{python_sitelib}/*
%changelog