--- lazr.restfulclient-0.9.3.orig/debian/rules +++ lazr.restfulclient-0.9.3/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +%: + dh --with quilt $@ + +clean: + dh --with quilt $@ + rm -fr *.egg + find -name "*.pyc" -delete --- lazr.restfulclient-0.9.3.orig/debian/compat +++ lazr.restfulclient-0.9.3/debian/compat @@ -0,0 +1 @@ +7 --- lazr.restfulclient-0.9.3.orig/debian/watch +++ lazr.restfulclient-0.9.3/debian/watch @@ -0,0 +1,2 @@ +version=3 +https://launchpad.net/lazr.restfulclient/+download http://launchpad.net/lazr.restfulclient/.*/lazr.restfulclient-(.+).tar.gz --- lazr.restfulclient-0.9.3.orig/debian/copyright +++ lazr.restfulclient-0.9.3/debian/copyright @@ -0,0 +1,49 @@ +This package was debianized by James Westby on +Fri, 10 Jul 2009 16:43:44 +0100. + +It was downloaded from https://launchpad.net/lazr.restfulclient/ + +Upstream Authors: + + LAZR Developers + +Copyright: + + Copyright 2008-2009 Canonical Ltd. + +License: + + lazr.restfulclient is free software: you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation, version 3 of the + License. + + lazr.restfulclient 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with lazr.restfulclient. If not, see + . + +src/lazr/restfulclient/__init__.py src/lazr/restfulclient/_browser.py +src/lazr/restfulclient/errors.py src/lazr/restfulclient/resource.py +are licensed under the following terms: + + lazr.restfulclient is free software: you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public License + as published by the Free Software Foundation, either version 3 of + the License, or (at your option) any later version. + + lazr.restfulclient 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with lazr.restfulclient. If not, see + . + +On Debian systems the complete text of the LGPL, version 3, can be found at +/usr/share/common-licenses/LGPL-3. --- lazr.restfulclient-0.9.3.orig/debian/docs +++ lazr.restfulclient-0.9.3/debian/docs @@ -0,0 +1 @@ +HACKING.txt --- lazr.restfulclient-0.9.3.orig/debian/changelog +++ lazr.restfulclient-0.9.3/debian/changelog @@ -0,0 +1,33 @@ +lazr.restfulclient (0.9.3-1) unstable; urgency=low + + * Initial Debian release (Closes: #551275). + * Package taken from Ubuntu, major changes introduced are: + - Switch to debhelper 7. + - Switch to python-support. + - Binary package renamed to python-lazr.uri to match module name. + + -- Luca Falavigna Mon, 19 Oct 2009 14:44:34 +0200 + +lazr.restfulclient (0.9.3-0ubuntu3) karmic; urgency=low + + * The package name is now python-zope.interface, thank Eric Appleman. + (LP: #424751) + + -- James Westby Mon, 07 Sep 2009 10:51:19 +0100 + +lazr.restfulclient (0.9.3-0ubuntu2) karmic; urgency=low + + * Add python-pkg-resources to Depends, thanks Martin Pitt. + + -- James Westby Thu, 27 Aug 2009 11:54:36 +0100 + +lazr.restfulclient (0.9.3-0ubuntu1) karmic; urgency=low + + * Initial release. + * Comment out setup_requires in setup.py so that setuptools doesn't try and + download things at build time. + * Comment out dependencies in setup.py that are just needed for running the + tests. It sucks, but there are about 10 new packages needed just to allow + the test suite to run. + + -- James Westby Fri, 10 Jul 2009 16:43:44 +0100 --- lazr.restfulclient-0.9.3.orig/debian/control +++ lazr.restfulclient-0.9.3/debian/control @@ -0,0 +1,21 @@ +Source: lazr.restfulclient +Section: python +Priority: optional +Maintainer: Debian Python Modules Team +Uploaders: Luca Falavigna , James Westby +Build-Depends: debhelper (>= 7), python (>= 2.4), python-support, python-setuptools, quilt (>= 0.46-7) +Standards-Version: 3.8.3 +Homepage: https://launchpad.net/lazr.restfulclient +Vcs-Svn: svn://svn.debian.org/python-modules/packages/lazr.restfulclient/trunk/ +Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/lazr.restfulclient/trunk/ +XS-Python-Version: >= 2.4 + +Package: python-lazr.restfulclient +Architecture: all +Depends: ${python:Depends}, ${misc:Depends}, python-zope.interface | python-zopeinterface, python-wadllib (>= 1.1.4), python-pkg-resources, python-simplejson | python2.6, python-httplib2 +Conflicts: python-lazr-restfulclient (<< 0.9.9-1) +Replaces: python-lazr-restfulclient (<< 0.9.9-1) +Description: client for lazr.restful-based web services + A programmable client library that takes advantage of the commonalities + among lazr.rest web services to provide added functionality on top + of wadllib. --- lazr.restfulclient-0.9.3.orig/debian/patches/no_deps.patch +++ lazr.restfulclient-0.9.3/debian/patches/no_deps.patch @@ -0,0 +1,15 @@ +Description: Do not look for build-time dependencies +Origin: Debian +Forwarded: not-needed + +Index: lazr.restfulclient-0.9.3/setup.py +=================================================================== +--- lazr.restfulclient-0.9.3.orig/setup.py 2009-10-19 13:46:09.362251080 +0200 ++++ lazr.restfulclient-0.9.3/setup.py 2009-10-19 13:48:13.154279100 +0200 +@@ -74,6 +74,5 @@ + docs=['Sphinx', + 'z3c.recipe.sphinxdoc'] + ), +- setup_requires=['eggtestinfo', 'setuptools_bzr'], + test_suite='lazr.restfulclient.tests', + ) --- lazr.restfulclient-0.9.3.orig/debian/patches/series +++ lazr.restfulclient-0.9.3/debian/patches/series @@ -0,0 +1 @@ +no_deps.patch