--- py-libmpdclient-0.11.1.orig/mpdclient2.py +++ py-libmpdclient-0.11.1/mpdclient2.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python - # py-libmpdclient2 is written by Nick Welch , 2005. # # This software is in the public domain --- py-libmpdclient-0.11.1.orig/test.py +++ py-libmpdclient-0.11.1/test.py @@ -1,4 +1,5 @@ -#!/usr/bin/env python +#!/usr/bin/python + import mpdclient2 m = mpdclient2.connect() --- py-libmpdclient-0.11.1.orig/debian/control +++ py-libmpdclient-0.11.1/debian/control @@ -0,0 +1,18 @@ +Source: py-libmpdclient +Section: python +Priority: extra +Maintainer: Decklin Foster +XS-Python-Version: all +Build-Depends: debhelper (>= 5.0.37.1), python, python-dev +Build-Depends-Indep: python-support (>= 0.2.3) +Standards-Version: 3.7.2 + +Package: python-mpdclient +Architecture: all +XB-Python-Version: ${python:Versions} +Depends: ${python:Depends} +Recommends: mpd +Description: Python interface to MPD + mpdclient is a simple Python interface to MPD, the Music Player Daemon. It + provides an interface analogous to the libmpdclient C library, allowing for + expeditious scripting of any mpd instance and ease of MPD client development. --- py-libmpdclient-0.11.1.orig/debian/rules +++ py-libmpdclient-0.11.1/debian/rules @@ -0,0 +1,48 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +clean: + dh_testdir + dh_testroot + + # Add here commands to clean up after the build process. + python setup.py clean --all + dh_clean + +build: +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + python setup.py install --no-compile --prefix $(CURDIR)/debian/python-mpdclient/usr --install-lib $(CURDIR)/debian/python-mpdclient/usr/share/python-support/mpdclient + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_pysupport + 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 --- py-libmpdclient-0.11.1.orig/debian/changelog +++ py-libmpdclient-0.11.1/debian/changelog @@ -0,0 +1,41 @@ +py-libmpdclient (0.11.1-2) unstable; urgency=low + + * Build with python-support. + * Standards-Version: 3.7.2. + * Move python from Build-Depends-Indep to Build-Depends. + + -- Decklin Foster Sun, 18 Jun 2006 14:03:07 -0400 + +py-libmpdclient (0.11.1-1) unstable; urgency=low + + * New upstream release (merges KeyError fix.) + + -- Decklin Foster Sun, 29 Jan 2006 17:27:58 -0500 + +py-libmpdclient (0.11.0-2) unstable; urgency=low + + * Change section to python. + + -- Decklin Foster Fri, 13 Jan 2006 20:45:07 -0500 + +py-libmpdclient (0.11.0-1) unstable; urgency=low + + * New upstream release. + * Update to debhelper 5 and policy 3.6.2. Using python-support, so splitting + this for 2.3 and 2.4 should be unnecessary. + + -- Decklin Foster Fri, 13 Jan 2006 10:39:01 -0500 + +py-libmpdclient (0.10.0-2) unstable; urgency=low + + * Arch: all. + * Build-deps: Add python and python2.3-dev, bump debhelper version. + * Rebuild with -sa since -1 was never uploaded to the archive. + + -- Decklin Foster Wed, 16 Mar 2005 16:09:10 -0500 + +py-libmpdclient (0.10.0-1) unstable; urgency=low + + * Initial Release. + + -- Decklin Foster Fri, 14 Jan 2005 22:50:18 -0500 --- py-libmpdclient-0.11.1.orig/debian/compat +++ py-libmpdclient-0.11.1/debian/compat @@ -0,0 +1 @@ +5 --- py-libmpdclient-0.11.1.orig/debian/python-mpdclient.examples +++ py-libmpdclient-0.11.1/debian/python-mpdclient.examples @@ -0,0 +1 @@ +test.py --- py-libmpdclient-0.11.1.orig/debian/copyright +++ py-libmpdclient-0.11.1/debian/copyright @@ -0,0 +1,11 @@ +This package was debianized by Decklin Foster on +Fri, 14 Jan 2005 22:50:18 -0500. + +It was downloaded from: http://pygmy.berlios.de/files/ + +Upstream Author: Nick Welch + +License: + + This software is in the public domain + and is provided AS IS, with NO WARRANTY.