- Switch package to modern Python Stack on SLE-15
+ Add %{?sle15_python_module_pythons}
OBS-URL: https://build.opensuse.org/request/show/1167989
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-crcmod?expand=0&rev=12
70 lines
2.5 KiB
RPMSpec
70 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-crcmod
|
|
#
|
|
# 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
|
|
# 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/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-crcmod
|
|
Version: 1.7
|
|
Release: 0
|
|
Summary: CRC Generator
|
|
License: MIT
|
|
URL: https://crcmod.sourceforge.net/
|
|
Source: https://files.pythonhosted.org/packages/source/c/crcmod/crcmod-%{version}.tar.gz
|
|
Patch0: use-setuptools.patch
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pip}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: %{python_module wheel}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
%python_subpackages
|
|
|
|
%description
|
|
The software in this package is a Python module for generating objects that
|
|
compute the Cyclic Redundancy Check (CRC). There is no attempt in this package
|
|
to explain how the CRC works. There are a number of resources on the web that
|
|
give a good explanation of the algorithms. Just do a Google search for "crc
|
|
calculation" and browse till you find what you need. Another resource can be
|
|
found in chapter 20 of the book "Numerical Recipes in C" by Press et. al.
|
|
|
|
This package allows the use of any 8, 16, 24, 32, or 64 bit CRC. You can
|
|
generate a Python function for the selected polynomial or an instance of the
|
|
Crc class which provides the same interface as the ``md5`` and ``sha`` modules
|
|
from the Python standard library. A ``Crc`` class instance can also generate
|
|
C/C++ source code that can be used in another application.
|
|
|
|
%prep
|
|
%autosetup -p1 -n crcmod-%{version}
|
|
|
|
%build
|
|
%pyproject_wheel
|
|
|
|
%install
|
|
%pyproject_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}/crcmod
|
|
|
|
%check
|
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitearch} $python -c 'import crcmod'
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc README changelog
|
|
%{python_sitearch}/crcmod
|
|
%{python_sitearch}/crcmod-%{version}.dist-info
|
|
|
|
%changelog
|