From 390b40b399bbaf6cb0db3670356f5cb4e66c017825f6f988a04cf776927bc2b2 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Fri, 13 Jan 2012 13:32:21 +0000 Subject: [PATCH] Accepting request 100119 from home:jimfunk:python CRC function generator OBS-URL: https://build.opensuse.org/request/show/100119 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-crcmod?expand=0&rev=1 --- .gitattributes | 23 ++++++++++++++++ .gitignore | 1 + crcmod-1.7.tar.gz | 3 +++ python-crcmod.changes | 5 ++++ python-crcmod.spec | 62 +++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 94 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 crcmod-1.7.tar.gz create mode 100644 python-crcmod.changes create mode 100644 python-crcmod.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/crcmod-1.7.tar.gz b/crcmod-1.7.tar.gz new file mode 100644 index 0000000..c7807ea --- /dev/null +++ b/crcmod-1.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc7051a0db5f2bd48665a990d3ec1cc305a466a77358ca4492826f41f283601e +size 89670 diff --git a/python-crcmod.changes b/python-crcmod.changes new file mode 100644 index 0000000..37a36a4 --- /dev/null +++ b/python-crcmod.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sun Nov 27 00:58:43 UTC 2011 - jfunk@funktronics.ca + +- Initial release + diff --git a/python-crcmod.spec b/python-crcmod.spec new file mode 100644 index 0000000..349926e --- /dev/null +++ b/python-crcmod.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-crcmod +# +# Copyright (c) 2011 SUSE LINUX Products 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 http://bugs.opensuse.org/ +# + +Name: python-crcmod +Version: 1.7 +Release: 0 +Url: http://crcmod.sourceforge.net/ +Summary: CRC Generator +License: MIT +Group: Development/Languages/Python +Source: http://pypi.python.org/packages/source/c/crcmod/crcmod-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: python-devel +%if 0%{?suse_version} +%py_requires +%endif +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} +%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} + +%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 +CFLAGS="%{optflags}" python setup.py build + +%install +python setup.py install --prefix=%{_prefix} --root=%{buildroot} + +%files +%defattr(-,root,root,-) +%doc LICENSE README changelog docs/html +%{python_sitearch}/* + +%changelog