--- mygpoclient-1.4.orig/debian/compat +++ mygpoclient-1.4/debian/compat @@ -0,0 +1 @@ +7 --- mygpoclient-1.4.orig/debian/control +++ mygpoclient-1.4/debian/control @@ -0,0 +1,21 @@ +Source: mygpoclient +Section: python +Priority: extra +Maintainer: Thomas Perl +Build-Depends: debhelper (>= 7), python (>= 2.5), python-central (>= 0.5.6) +Standards-Version: 3.8.4 +Homepage: http://thpinfo.com/2010/mygpoclient/ +XS-Python-Version: >= 2.5 + +Package: python-mygpoclient +XB-Python-Version: ${python:Versions} +Architecture: all +Depends: ${misc:Depends}, ${python:Depends}, python-simplejson +Provides: ${python:Provides} +Description: Client library for the my.gpodder.org web service + The mygpoclient library allows developers to utilize a + Pythonic interface to the my.gpodder.org web services. + . + In addition to the user-specific API endpoints, a public + (non-authenticated) API is provided for searching podcasts + and retrieving the podcast toplist from the server. --- mygpoclient-1.4.orig/debian/watch +++ mygpoclient-1.4/debian/watch @@ -0,0 +1,4 @@ +# Debian watch file for mygpoclient +version=3 + +http://thpinfo.com/2010/mygpoclient/mygpoclient-(.*)\.tar\.gz --- mygpoclient-1.4.orig/debian/docs +++ mygpoclient-1.4/debian/docs @@ -0,0 +1,4 @@ +README +AUTHORS +DEPENDENCIES +NEWS --- mygpoclient-1.4.orig/debian/changelog +++ mygpoclient-1.4/debian/changelog @@ -0,0 +1,31 @@ +mygpoclient (1.4-1~lucid0) lucid; urgency=low + + * Automatic build for lucid + + -- Thomas Perl Mon, 26 Apr 2010 11:17:51 +0200 + +mygpoclient (1.4-1) unstable; urgency=low + + * The "Do No Harm" release + * See the NEWS file for information on API changes in this version + + -- Thomas Perl Mon, 26 Apr 2010 13:14:47 +0200 + +mygpoclient (1.2-2) unstable; urgency=low + + * Drop Python 2.4 support (we need absolute imports) (Closes: #575212) + + -- Thomas Perl Thu, 25 Mar 2010 01:06:19 +0100 + +mygpoclient (1.2-1) unstable; urgency=low + + * New upstream release + * Update to Debian Policy 3.8.4 (no changes necessary in this package) + + -- Thomas Perl Tue, 23 Mar 2010 15:38:02 +0100 + +mygpoclient (1.0-1) unstable; urgency=low + + * Initial release (Closes: #565691) + + -- Thomas Perl Sun, 17 Jan 2010 23:14:51 +0100 --- mygpoclient-1.4.orig/debian/copyright +++ mygpoclient-1.4/debian/copyright @@ -0,0 +1,38 @@ +This package was debianized by Thomas Perl on +Sun, 17 Jan 2010 23:14:51 +0100. + +It was downloaded from + +Upstream Author: + + Thomas Perl + +Copyright: + + Copyright (C) 2009-2010 Thomas Perl + +License: + + my.gpodder.org API Client + Copyright (C) 2009-2010 Thomas Perl + + 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 3 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. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +The Debian packaging is: + + Copyright (C) 2010 Thomas Perl + +and is licensed under the GPL version 3, +see `/usr/share/common-licenses/GPL-3'. + --- mygpoclient-1.4.orig/debian/rules +++ mygpoclient-1.4/debian/rules @@ -0,0 +1,57 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +configure: configure-stamp +configure-stamp: + dh_testdir + touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp + dh_testdir + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + $(MAKE) clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + python setup.py install --no-compile --prefix=/usr --root=$(CURDIR)/debian/python-mygpoclient + +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installman + dh_link + dh_compress + dh_fixperms + dh_pycentral + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure