--- imdbpy-3.2.orig/debian/compat +++ imdbpy-3.2/debian/compat @@ -0,0 +1 @@ +5 --- imdbpy-3.2.orig/debian/python-imdbpy.docs +++ imdbpy-3.2/debian/python-imdbpy.docs @@ -0,0 +1,22 @@ +docs/README.sqldb +docs/README.mobile +docs/CREDITS.txt +docs/README.local +docs/imdbpyPowered.png +docs/README.txt +docs/TODO.txt +docs/README.adult +docs/README.users +docs/imdbpyico.xpm +docs/DISCLAIMER.txt +docs/CONTRIBUTORS.txt +docs/imdbpyico.png +docs/imdbpywin.bmp +docs/README.utf8 +docs/imdbpyico16x16.ico +docs/imdbpyico32x32.ico +docs/README.devel +docs/AUTHOR.txt +docs/README.series +docs/README.package +docs/README.redesign --- imdbpy-3.2.orig/debian/rules +++ imdbpy-3.2/debian/rules @@ -0,0 +1,58 @@ +#!/usr/bin/make -f + +PYVERS := $(shell pyversions -r) + +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 + rm -rf build + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + for py in $(PYVERS); do \ + $$py setup.py install --root=$(CURDIR)/debian/python-imdbpy --no-compile; \ + done + rm -rf $(CURDIR)/debian/python-imdbpy/usr/bin + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs docs/Changelog.txt + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf + dh_pysupport +# dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_makeshlibs + 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 --- imdbpy-3.2.orig/debian/control +++ imdbpy-3.2/debian/control @@ -0,0 +1,19 @@ +Source: imdbpy +Section: python +Priority: optional +Maintainer: Ana Beatriz Guerrero Lopez +Build-Depends: debhelper (>= 5.0.37.2), python-all-dev (>= 2.3.5-11), python-support (>= 0.3) +Standards-Version: 3.7.2 + +Package: python-imdbpy +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} +Provides: ${python:Provides} +Description: Python package to access the IMDb's movie database + IMDbPY is a Python package useful to retrieve and manage the data of + the IMDb movie database about both movies and people. + It can be very easily used by programmers and developers to provide + access to the IMDb's data to their programs. + . + Homepage: http://imdbpy.sourceforge.net + --- imdbpy-3.2.orig/debian/changelog +++ imdbpy-3.2/debian/changelog @@ -0,0 +1,58 @@ +imdbpy (3.2-1) unstable; urgency=low + + * New upstream version. + + -- Ana Beatriz Guerrero Lopez Wed, 26 Sep 2007 06:56:59 +0200 + +imdbpy (3.1-1) unstable; urgency=low + + * New upstream version. + + -- Ana Beatriz Guerrero Lopez Fri, 20 Jul 2007 11:36:24 +0200 + +imdbpy (3.0-1) unstable; urgency=low + + * New upstream version. + + -- Ana Beatriz Guerrero Lopez Thu, 03 May 2007 22:11:48 +0100 + +imdbpy (2.9-1) unstable; urgency=low + + * New upstream version. + + -- Ana Beatriz Guerrero Lopez Sat, 24 Feb 2007 15:07:52 +0100 + +imdbpy (2.8-1) unstable; urgency=low + + * New upstream version. + + -- Ana Beatriz Guerrero Lopez Fri, 15 Dec 2006 10:39:42 +0100 + +imdbpy (2.7-2) unstable; urgency=low + + * Changed maintainer email address. + * Added space to homepage pseudo header. + * Removed dh_python and debian/pycompat. + + -- Ana Beatriz Guerrero Lopez Fri, 27 Oct 2006 19:57:47 +0200 + +imdbpy (2.7-1) unstable; urgency=low + + * New upstream version. + * debian/rules cleaned up. + + -- Ana Beatriz Guerrero Lopez Wed, 27 Sep 2006 13:25:52 +0200 + +imdbpy (2.6-2) unstable; urgency=low + + * Added missing parsers. (Closes: #380636) + + -- Ana Beatriz Guerrero Lopez Mon, 7 Aug 2006 22:29:00 +0200 + +imdbpy (2.6-1) unstable; urgency=low + + * Initial release. (Closes: #349055) + * Thank you to Davide Alberani for your patience! + + -- Ana Beatriz Guerrero Lopez Sat, 29 Jul 2006 15:40:43 +0200 + --- imdbpy-3.2.orig/debian/python-imdbpy.examples +++ imdbpy-3.2/debian/python-imdbpy.examples @@ -0,0 +1,2 @@ +bin/* + --- imdbpy-3.2.orig/debian/README.Debian +++ imdbpy-3.2/debian/README.Debian @@ -0,0 +1,25 @@ +IMDdPY for Debian +----------------- + +This package installs just the imdbpy python modules. The source code includes +some examples that upstream author made with the goal of be executables, but +since these scripts need a little setup about how to access to IMDb data, i +decided it was better not install it directly. +Please, read upstream's README.txt file to learn how to make this setup. +You can make all the necessary changes editing the py files placed at: + +/usr/share/doc/python2.X-imdbpy/examples/ + +And after this, make a symbolic link, for example: +ln -s /usr/share/doc/python-imdbpy/examples/get_first_movie.py /usr/bin/get_first_movie + + +Besides, if you want to use a local copy of the whole IMDb's database, +read the "README.local" file. Or if you want to insert the content of the plain text +data files into a SQL database, read the "README.sqldb" file. + +imdbpy2sql.py is somewhat different: it's not an example, but a script +required to put the plain text data files in the MySQL database. You can find +it gzippped in the 'example' directory. + + -- Ana Beatriz Guerrero Lopez , Sun, 2 Apr 2006 22:42:30 +0200 --- imdbpy-3.2.orig/debian/copyright +++ imdbpy-3.2/debian/copyright @@ -0,0 +1,47 @@ +This package was debianized by Ana Beatriz Guerrero Lopez on +Sat, 29 Jul 2006 15:40:43 +0200. + +It was downloaded from http://imdbpy.sourceforge.net/ + +Upstream author: Davide Alberani + +Copyright (C) 2004-2007 Davide Alberani + +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. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU General Public License +can be found in `/usr/share/common-licenses/GPL'. + + +AUTHOR'S DISCLAIMER +==================== + +IMDbPY (and the author) is not affiliated with Internet Movie Database Inc. + +IMDb is a trademark of Internet Movie Database Inc. and all contents +and data included on the IMDb's site is the property of IMDb or its +content suppliers and protected by United States and international +copyright laws. + +Please, read the IMDb's conditions of use in their website: +- http://www.imdb.com/help/show_article?conditions +- http://www.imdb.com/help/show_leaf?usedatasoftware +- any other notice in the http://www.imdb.com/ site. + + +The Debian packaging is (C) 2006-2007, Ana Beatriz Guerrero Lopez +and is licensed under the GPL, see `/usr/share/common-licenses/GPL'.