15
0
forked from pool/python-dpkt
Files
python-dpkt/python-dpkt.spec
Matej Cepl bf0f209dbe Accepting request 855897 from home:mcepl:branches:devel:tools:scm
- Add skip_s390x_tests.patch to skip failing tests on s390x
  (gh#kbandla/dpkt#505).
- Update to 1.9.4:
  - drop python 2.6 support
  - add python 3.7, 3.8 support
  - fix netbios name encoding and decoding
  - properly set type of last vlan tag to type of eth.data layer
  - fix QinQ vlan tag parsing with miscellaneous data
  - add explicit iter to dpkt.Packet so dict() maps the fields nicely
  - fix ipv6 packet so that it can be used for generating IPv6 data
  - handle zero Eth type
  - python 3 compatibility fixes

OBS-URL: https://build.opensuse.org/request/show/855897
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-dpkt?expand=0&rev=16
2020-12-14 23:07:25 +00:00

67 lines
1.9 KiB
RPMSpec

#
# spec file for package python-dpkt
#
# Copyright (c) 2020 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.4
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
# PATCH-FIX-UPSTREAM skip_s390x_tests.patch gh#kbandla/dpkt#505 mcepl@suse.com
# Skip failing tests on s390x arch
Patch0: skip_s390x_tests.patch
BuildRequires: %{python_module mock}
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
# gh#kbandla/dpkt#505
%pytest -s dpkt
%files %{python_files}
%license LICENSE
%doc examples AUTHORS CHANGES README.rst
%{python_sitelib}/*
%changelog