--- pyflac-0.0.3.orig/debian/changelog +++ pyflac-0.0.3/debian/changelog @@ -0,0 +1,20 @@ +pyflac (0.0.3-1) unstable; urgency=low + + * New upstream release. + * Remove B-D on swig, since the files are pre-generated now. + + -- Joe Wreschnig Sun, 03 Apr 2005 11:49:06 -0500 + +pyflac (0.0.2-1) unstable; urgency=low + + * Use new distutils-using build method. + * Upload to Debian. (Closes: #292106) + + -- Joe Wreschnig Tue, 25 Jan 2005 15:17:16 -0600 + +pyflac (0.0.1-0.1) unstable; urgency=low + + * Initial Release. + + -- Joe Wreschnig Fri, 29 Oct 2004 04:23:41 -0500 + --- pyflac-0.0.3.orig/debian/control +++ pyflac-0.0.3/debian/control @@ -0,0 +1,16 @@ +Source: pyflac +Section: python +Priority: optional +Maintainer: Joe Wreschnig +Build-Depends: debhelper (>= 4.0.0), libflac-dev, python-dev +Standards-Version: 3.6.1.1 + +Package: python-flac +Architecture: any +Depends: ${shlibs:Depends}, ${python:Depends} +Description: Free Lossless Audio Codec [Python bindings] + FLAC stands for Free Lossless Audio Codec. Grossly oversimplified, FLAC is + similar to Ogg Vorbis, but lossless. + . + This package contains Python bindings for libFLAC, allowing programs + written in Python to read or write FLAC audio data or metadata. --- pyflac-0.0.3.orig/debian/compat +++ pyflac-0.0.3/debian/compat @@ -0,0 +1 @@ +4 --- pyflac-0.0.3.orig/debian/copyright +++ pyflac-0.0.3/debian/copyright @@ -0,0 +1,21 @@ +This package was debianized by Joe Wreschnig on +Fri, 29 Oct 2004 04:23:41 -0500. + +It was downloaded from +http://www.sacredchao.net/quodlibet/wiki/Download + +Upstream Authors: + Joe Wreschnig + David Collett + +Copyright: + +Copyright 2004: David Collett +David Collett + +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. + +On Debian systems the GNU GPL can be found in /usr/share/common-licenses/GPL. --- pyflac-0.0.3.orig/debian/docs +++ pyflac-0.0.3/debian/docs @@ -0,0 +1,2 @@ +README +examples --- pyflac-0.0.3.orig/debian/rules +++ pyflac-0.0.3/debian/rules @@ -0,0 +1,57 @@ +#!/usr/bin/make -f +CFLAGS = -Wall -g + +PYV = 2.3 + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + +build: build-stamp +build-stamp: configure-stamp + dh_testdir + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + -$(MAKE) clean + rm -f build-stamp configure-stamp + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + ./setup.py install --prefix debian/python-flac/usr + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_link + dh_strip + dh_compress -Xexamples + dh_fixperms + dh_python + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure