# Detect the distribution in use %global __despace head -n 1 | tr -d '[:space:]' | sed -e 's/[(].*[)]//g' %global __lower4 cut -c 1-4 | tr '[:upper:]' '[:lower:]' %global __distfile %([ -f /etc/SuSE-release ] && echo /etc/SuSE-release || echo /etc/redhat-release) %global __distinit %(sed -e 's/ release .*//' -e 's/\\([A-Za-z]\\)[^ ]*/\\1/g' %{__distfile} | %{__despace} | %{__lower4}) %global __distvers %(sed -e 's/.* release \\([^. ]*\\).*/\\1/' %{__distfile} | %{__despace}) # Identify Alma, CentOS, CentOS Stream and Rocky Linux as rhel %if "%{__distinit}" == "a" || "%{__distinit}" == "c" || "%{__distinit}" == "cl" || "%{__distinit}" == "cs" || "%{__distinit}" == "rl" %global __distinit rhel %endif # Dist tag for Fedora is still "fc" %if "%{__distinit}" == "f" %global __distinit fc %endif %global pythonver %(%{__python} -c "import sys; print sys.version[:3]" 2>/dev/null || echo 0.0) %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)" 2>/dev/null)} Name: python-crcmod Summary: CRC Generator Version: 1.7 Release: 2.%{__distinit}%{__distvers} Group: Development/Libraries License: MIT URL: http://crcmod.sourceforge.net/ Source0: http://pypi.python.org/packages/source/c/crcmod/crcmod-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-buildroot-%(id -nu) BuildRequires: coreutils BuildRequires: gcc BuildRequires: python2-devel BuildRequires: python-setuptools %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 %setup -q -n crcmod-%{version} %build %{__python} setup.py build rm -f docs/html/.buildinfo %install rm -rf %{buildroot} %{__python} setup.py install -O1 --skip-build --root %{buildroot} %{_fixperms} %{buildroot}%{python_sitearch}/crcmod/_crcfunext.so # See if there's any egg-info if [ -f %{buildroot}%{python_sitearch}/crcmod-%{version}-py%{pythonver}.egg-info ]; then echo %{python_sitearch}/crcmod-%{version}-py%{pythonver}.egg-info fi > egg-info %check cd test PYTHONPATH=%{buildroot}%{python_sitearch} %{__python} test_crcmod.py cd - %clean rm -rf %{buildroot} %files -f egg-info %if 0%{?_licensedir:1} %license LICENSE %else %doc LICENSE %endif %doc changelog docs/html/ PKG-INFO README %{python_sitearch}/crcmod/ %changelog * Sat Oct 10 2015 Paul Howarth - 1.7-2 - Import * Tue Apr 07 2015 Vladimir Rusinov - 1.7-1 - initial version