--- pyspeex-0.2.orig/debian/changelog +++ pyspeex-0.2/debian/changelog @@ -0,0 +1,72 @@ +pyspeex (0.2-1ubuntu9) focal; urgency=medium + + * No-change rebuild with fixed binutils on arm64. + + -- Matthias Klose Sat, 08 Feb 2020 11:18:01 +0000 + +pyspeex (0.2-1ubuntu8) focal; urgency=medium + + * No-change rebuild. + + -- Matthias Klose Fri, 10 Jan 2020 16:22:13 +0100 + +pyspeex (0.2-1ubuntu7) trusty; urgency=medium + + * Port to dh_python2. + + -- Dimitri John Ledkov Sun, 26 Jan 2014 22:50:31 +0000 + +pyspeex (0.2-1ubuntu6) natty; urgency=low + + * Rebuild to add support for python 2.7. + + -- Matthias Klose Fri, 03 Dec 2010 00:09:12 +0000 + +pyspeex (0.2-1ubuntu5) jaunty; urgency=low + + * Python 2.6 transition: + - debian/rules: + + Use --install-layout=deb option. + + Tune dh_pycentral call to make sure dist-package symlinks are available + at dpkg unpack. + + -- Alessio Treglia Mon, 09 Mar 2009 19:54:51 +0100 + +pyspeex (0.2-1ubuntu4) hardy; urgency=low + + * debian/control: + - Bump Standards Version to 3.7.3. + - Add Homepage field. + - Modify Maintainer value to match the DebianMaintainerField + specification. + * debian/python-speex.docs: + - Remove this file; it's not necessary to install README as it has + no interesting information. + * debian/copyright: + - Add the complete GPL header and some minor formatting changes. + + -- Siegfried-Angel Gevatter Pujals (RainCT) Sat, 01 Mar 2008 23:45:01 +0100 + +pyspeex (0.2-1ubuntu3) feisty; urgency=low + + * Convert to the new python policy. + + -- Matthias Klose Mon, 15 Jan 2007 13:58:34 +0100 + +pyspeex (0.2-1ubuntu2) feisty; urgency=low + + * Rebuild for python2.5 as the default python version. + + -- Matthias Klose Fri, 12 Jan 2007 13:22:43 +0000 + +pyspeex (0.2-1ubuntu1) hoary; urgency=low + + * Upload to hoary + + -- Thom May Sat, 29 Jan 2005 13:38:20 +0000 + +pyspeex (0.2-1) unstable; urgency=low + + * First upload. + + -- Thom May Sat, 29 Jan 2005 13:01:09 +0000 --- pyspeex-0.2.orig/debian/compat +++ pyspeex-0.2/debian/compat @@ -0,0 +1 @@ +9 --- pyspeex-0.2.orig/debian/control +++ pyspeex-0.2/debian/control @@ -0,0 +1,20 @@ +Source: pyspeex +Section: python +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Thom May +Build-Depends: debhelper (>= 4.1.16), python-all-dev, python-pyrex, libspeex-dev, dh-python +Homepage: http://www.freenet.org.nz/python/pySpeex/ +Standards-Version: 3.7.3 + +Package: python-speex +Architecture: any +Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends} +Conflicts: python2.3-speex, python2.4-speex +Replaces: python2.3-speex, python2.4-speex +Description: python bindings for Speex + pySpeex is a Python interface to the wonderful Speex audio + compressor/decompressor (codec). + . + With pySpeex, you can easily create an audio stream object, and + incrementally encode and decode speech audio data. --- pyspeex-0.2.orig/debian/copyright +++ pyspeex-0.2/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Thom May on +Sat, 29 Jan 2005 13:01:09 +0000. + +It was downloaded from http://www.freenet.org.nz/python/pySpeex/ + +Author: + + David McNab + +Copyright: + + Copyright (C) David McNab + +License: + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL'. --- pyspeex-0.2.orig/debian/rules +++ pyspeex-0.2/debian/rules @@ -0,0 +1,47 @@ +#! /usr/bin/make -f + +PYVERS := $(shell pyversions -vr) + +clean: + dh_testdir + dh_clean + rm -rf build dist + +build: build-stamp +build-stamp: $(PYVERS:%=build-python%) + touch $@ +build-python%: + dh_testdir + python$* setup.py build + touch $@ + +binary-indep: +# nothing to do + +binary-arch: build + dh_testdir -a + dh_testroot -a + dh_clean -k -a + dh_installdirs -a + + set -e; \ + for v in $(PYVERS); do \ + python$$v setup.py install --no-compile --prefix=debian/python-speex/usr \ + --install-layout=deb; \ + done + + dh_installdocs -a + cp -a doc debian/python-speex/usr/share/doc/python-speex/html + dh_installchangelogs -a + dh_strip -a + dh_installinit -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_python2 + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-arch binary-indep --- pyspeex-0.2.orig/setup.py +++ pyspeex-0.2/setup.py @@ -5,7 +5,7 @@ from distutils.core import setup, Extension from Pyrex.Distutils import build_ext -incDirs = ['../libspeex'] +incDirs = ['/usr/include/speex'] libs = [] libDirs = [] runtimeLibDirs = []