debian/0000755000000000000000000000000012203636240007164 5ustar debian/compat0000644000000000000000000000000212203636240010362 0ustar 9 debian/control0000644000000000000000000000376612203636240010603 0ustar Source: python-crcmod Section: python Priority: optional Maintainer: PKG OpenStack Uploaders: Julien Danjou , Thomas Goirand , Mehdi Abaakouk Build-Depends: debhelper (>= 9), openstack-pkg-tools, python-all (>= 2.6.6-3~), python-setuptools, python3-all, python3-setuptools Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-crcmod.git Vcs-Git: git://anonscm.debian.org/openstack/python-crcmod.git Homepage: http://crcmod.sourceforge.net/ Package: python-crcmod Architecture: any Pre-Depends: dpkg (>= 1.15.6~) Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends} Recommends: ${python:Recommends} Description: CRC Generator - python 2.x CRCmod generates objects that compute the Cyclic Redundancy Check (CRC). It 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. . This package contains the Python 2.x module. Package: python3-crcmod Architecture: any Pre-Depends: dpkg (>= 1.15.6~) Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends} Recommends: ${python3:Recommends} Description: CRC Generator - python 3.x CRCmod generates objects that compute the Cyclic Redundancy Check (CRC). It 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. . This package contains the Python 3.x module. debian/source/0000755000000000000000000000000012203636240010464 5ustar debian/source/format0000644000000000000000000000001412203636240011672 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000021012203636240010574 0ustar [DEFAULT] upstream-branch = upstream-sid debian-branch = debian-sid pristine-tar = True [git-buildpackage] export-dir = ../build-area/ debian/watch0000644000000000000000000000011612203636240010213 0ustar version=3 http://pypi.python.org/packages/source/c/crcmod crcmod-(.*).tar.gz debian/changelog0000644000000000000000000000023312203636240011034 0ustar python-crcmod (1.7-1) unstable; urgency=low * Initial release. (Closes: #719968) -- Thomas Goirand Fri, 16 Aug 2013 12:21:09 +0200 debian/copyright0000644000000000000000000000253312203636240011122 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: crcmod Source: http://crcmod.sourceforge.net/ Files: debian/* Copyright: (c) 2013, Thomas Goirand License: MIT Files: * Copyright: (c) 2010, Raymond L. Buvel (c) 2010, Craig McQueen License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/rules0000755000000000000000000000121412203636240010242 0ustar #!/usr/bin/make -f PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) UPSTREAM_GIT = git://github.com//crcmod.git include /usr/share/openstack-pkg-tools/pkgos.make %: dh $@ --buildsystem=python_distutils --with=python2,python3 override_dh_auto_install: set -e && for pyvers in $(PYTHONS); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-crcmod; \ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-crcmod; \ done override_dh_auto_test: echo "Nothing" #python test_crcmod.py