- Use noun phrase in summary. OBS-URL: https://build.opensuse.org/request/show/654139 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitstring?expand=0&rev=13
75 lines
2.3 KiB
RPMSpec
75 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-bitstring
|
|
#
|
|
# Copyright (c) 2018 SUSE LINUX 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
# Test files missing
|
|
%bcond_with test
|
|
Name: python-bitstring
|
|
Version: 3.1.5
|
|
Release: 0
|
|
Summary: Python module for the construction, analysis and modification of binary data
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/scott-griffiths/bitstring
|
|
Source: https://files.pythonhosted.org/packages/source/b/bitstring/bitstring-%{version}.zip
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: unzip
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
BuildRequires: %{python_module pytest}
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
Bitstring is a pure Python module to aid
|
|
the creation and analysis of binary data.
|
|
|
|
Bitstrings can be constructed from integers (big and little endian), hex,
|
|
octal, binary, strings or files. They can be sliced, joined, reversed,
|
|
inserted into, overwritten, etc. with functions or slice notation.
|
|
They can also be read from, searched and replaced, and navigated in,
|
|
similar to a file or stream.
|
|
|
|
%prep
|
|
%setup -q -n bitstring-%{version}
|
|
sed -i 's/\r$//' README.rst
|
|
sed -i '1{\@^#!%{_bindir}/env python@d}' bitstring.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%if %{with test}
|
|
%check
|
|
%{python_expand export PYTHONPATH=%{buildroot}%{$python_sitelib}
|
|
py.test-%{$python_bin_suffix}
|
|
}
|
|
%endif
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README.rst
|
|
%{python_sitelib}/*
|
|
|
|
%changelog
|