--- python-hiredis-0.1.4.orig/debian/changelog +++ python-hiredis-0.1.4/debian/changelog @@ -0,0 +1,24 @@ +python-hiredis (0.1.4-1chl1~saucy1) saucy; urgency=low + + * New upstream release. + + -- Chris Lea Wed, 25 Jun 2014 14:18:56 -0700 + +python-hiredis (0.1.3-1chl1~saucy1) saucy; urgency=low + + * New upstream release. + + -- Chris Lea Sun, 18 May 2014 11:47:18 -0700 + +python-hiredis (0.1.2-1chl1~saucy1) saucy; urgency=low + + * New upstream release. + * Add Python3 packages. + + -- Chris Lea Mon, 06 Jan 2014 10:14:06 -0800 + +python-hiredis (0.1.1-1chl1~saucy1) saucy; urgency=low + + * Package 0.1.1 for saucy + + -- Chris Lea Tue, 19 Jun 2012 21:52:54 +0000 --- python-hiredis-0.1.4.orig/debian/copyright +++ python-hiredis-0.1.4/debian/copyright @@ -0,0 +1,27 @@ +Copyright (c) 2011, Pieter Noordhuis +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of Redis nor the names of its contributors may be used to + endorse or promote products derived from this software without specific prior + written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --- python-hiredis-0.1.4.orig/debian/rules +++ python-hiredis-0.1.4/debian/rules @@ -0,0 +1,38 @@ +#!/usr/bin/make -f + +PYVERS := $(shell pyversions -r) +PY3VERS := $(shell py3versions -r) + +%: + dh $@ --with python2,python3 --buildsystem=python_distutils + +override_dh_auto_build: + set -ex; \ + for python in $(PYVERS) $(PY3VERS); do \ + $$python setup.py build; \ + done + +override_dh_auto_clean: + rm -rf build + rm -f .coverage + rm -rf *.egg-info + dh_auto_clean + +override_dh_auto_install: + set -ex; \ + for python in $(PYVERS); do \ + $$python setup.py install --skip-build --root debian/python-hiredis \ + --install-layout=deb; \ + done + + set -ex; \ + for python in $(PY3VERS); do \ + $$python setup.py install --skip-build --root debian/python3-hiredis \ + --install-layout=deb; \ + done + +#override_dh_auto_test: +# set -ex; \ +# for python in $(PYVERS); do \ +# $$python setup.py test; \ +# done --- python-hiredis-0.1.4.orig/debian/control +++ python-hiredis-0.1.4/debian/control @@ -0,0 +1,35 @@ +Source: python-hiredis +Section: python +Priority: extra +Maintainer: Chris Lea +Build-Depends: debhelper (>= 8), + python (>= 2.6.6~3), + python-setuptools, + python-all-dev, + python3 (>= 3.2), + python3-setuptools, + python3-all-dev, + libhiredis-dev (>= 0.10.1) +Standards-Version: 3.8.3 +X-Python-Version: >= 2.6 +X-Python3-Version: >= 3.2 +Homepage: https://github.com/pietern/hiredis-py + +Package: python-hiredis +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, libhiredis0.10 (>= 0.10.1) +Provides: ${python:Provides} +Description: Python extension that wraps hiredis + Python extension that wraps protocol parsing + code in hiredis. It is targeted at speeding up + parsing multi bulk replies. + +Package: python3-hiredis +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends}, libhiredis0.10 (>= 0.10.1) +Description: Python extension that wraps hiredis + Python extension that wraps protocol parsing + code in hiredis. It is targeted at speeding up + parsing multi bulk replies. + . + This package contains the Python3 version. --- python-hiredis-0.1.4.orig/debian/compat +++ python-hiredis-0.1.4/debian/compat @@ -0,0 +1 @@ +7