--- python-flickrapi-1.2.orig/flickrapi.egg-info/SOURCES.txt +++ python-flickrapi-1.2/flickrapi.egg-info/SOURCES.txt @@ -5,6 +5,7 @@ _setup.py ez_setup.py runtests +setup.cfg setup.py doc/GNUmakefile doc/documentation.css --- python-flickrapi-1.2.orig/debian/rules +++ python-flickrapi-1.2/debian/rules @@ -0,0 +1,43 @@ +#!/usr/bin/make -f +PYVERS=$(shell pyversions -r) +d=debian/python-flickrapi + +build: + +clean: + dh_testdir + for python in $(PYVERS); do \ + $$python setup.py clean; \ + done + rm -f `find $(CURDIR) -name '*.pyc'` + rm -rf build-stamp build + rm -rf $(d) + dh_clean install-stamp + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_installdirs + set -e; \ + for python in $(PYVERS); do \ + $$python setup.py install --root=$(d);\ + done + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_compress -X.py + dh_fixperms + dh_pysupport + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-arch: + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- python-flickrapi-1.2.orig/debian/control +++ python-flickrapi-1.2/debian/control @@ -0,0 +1,29 @@ +Source: python-flickrapi +Section: python +Priority: optional +Maintainer: Thomas Schmidt +XS-Python-Version: all +Build-Depends: debhelper (>= 5), python (>= 2.3.5-11), python-all-dev +Build-Depends-Indep: python-setuptools, python-support (>= 0.6.4) +Standards-Version: 3.8.1 +Vcs-Git: git://git.geekbu.de/python-flickrapi/ +Vcs-Browser: http://git.geekbu.de/?p=python-flickrapi.git +Homepage: http://stuvel.eu/projects/flickrapi + +Package: python-flickrapi +Architecture: all +XB-Python-Version: ${python:Versions} +Depends: ${python:Depends}, +Description: Flickr API wrapper for Python + Python-flickrapi is a complete and easy to use Python + module for interfacing with the Flickr API (see + http://www.flickr.com/services/api/ for details on + the Flickr API). + . + the main features are: + . + - keeping track of authentication credentials + (no need to pass them on every Flickr API call) + - caching of API calls + - support for uploading and replacing photos + - support for different XML parsers --- python-flickrapi-1.2.orig/debian/changelog +++ python-flickrapi-1.2/debian/changelog @@ -0,0 +1,30 @@ +python-flickrapi (1.2-3) unstable; urgency=low + + * Improved package long description (closes: #531014) + + -- Thomas Schmidt Fri, 29 May 2009 10:51:34 +0200 + +python-flickrapi (1.2-2) unstable; urgency=low + + * First upload to debian (closes: #528612) + * Updated debian/copyright + * Bumped Standards-Version to 3.8.1 + * Changed Upstream homepage in debian/control + * Added Vcs-Git and Vcs-Browser fields to debian/control + * Updated package short description + * Fixed debian/watch + + -- Thomas Schmidt Thu, 14 May 2009 09:20:22 +0200 + +python-flickrapi (1.2-1) unstable; urgency=low + + * New upstream release + + -- Thomas Schmidt Sat, 13 Dec 2008 10:54:39 +0100 + +python-flickrapi (1.1-1) unstable; urgency=low + + * Initial release + + -- Thomas Schmidt Fri, 25 Jul 2008 13:55:06 +0200 + --- python-flickrapi-1.2.orig/debian/compat +++ python-flickrapi-1.2/debian/compat @@ -0,0 +1 @@ +5 --- python-flickrapi-1.2.orig/debian/watch +++ python-flickrapi-1.2/debian/watch @@ -0,0 +1,4 @@ +# Compulsory line, this is a version 3 file +version=3 + +http://pypi.python.org/packages/source/f/flickrapi/flickrapi-(.*)\.tar\.gz --- python-flickrapi-1.2.orig/debian/copyright +++ python-flickrapi-1.2/debian/copyright @@ -0,0 +1,41 @@ +This package was debianized by Thomas Schmidt on +Fri, 25 Jul 2008 13:55:06 +0200. + +It was downloaded from http://stuvel.eu/projects/flickrapi + +Upstream Authors: + + Beej Jorgensen + Sybren A. Stüvel + +Copyright: + + Copyright (C) 2007-2009 Sybren A. Stüvel + Copyright (C) 2007-2008 Beej Jorgenson + +License: + + This code is subject to the Python license, as can be read on + http://www.python.org/download/releases/2.5.2/license/ + + Permission is hereby granted, free of charge, to any person obtaining + a copy of this software and associated documentation files (the + "Software"), to deal in the Software without restriction, including + without limitation the rights to use, copy, modify, merge, publish, + distribute, sublicense, and/or sell copies of the Software, and to + permit persons to whom the Software is furnished to do so, subject to + the following conditions: + + The above copyright notice and this permission notice shall be + included in all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY + CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, + TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE + SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +The Debian packaging is (C) 2008-2009, Thomas Schmidt and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'.