--- wsgi-intercept-0.4.orig/debian/rules +++ wsgi-intercept-0.4/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh --with python2 $@ --- wsgi-intercept-0.4.orig/debian/changelog +++ wsgi-intercept-0.4/debian/changelog @@ -0,0 +1,14 @@ +wsgi-intercept (0.4-0ubuntu2) oneiric; urgency=low + + * Build for all supported python versions (LP: #765148) + * Switch from CDBS to dh_python2. + * Remove build directory from the diff. + * debian/copyright: add a section for included copy of webunit. + + -- Gediminas Paulauskas Mon, 18 Apr 2011 23:27:28 +0300 + +wsgi-intercept (0.4-0ubuntu1) lucid; urgency=low + + * Initial release. + + -- Anthony Lenton Mon, 18 Jan 2010 10:21:09 -0300 --- wsgi-intercept-0.4.orig/debian/copyright +++ wsgi-intercept-0.4/debian/copyright @@ -0,0 +1,40 @@ +Format-Specification: http://dep.debian.net/deps/dep5/ +Upstream-Name: wsgi-intercept +Upstream-Contact: Titus Brown, Kumar McMillan +Source: http://code.google.com/p/wsgi-intercept/ + +Files: * +Copyright: (C) 2007 Titus Brown, Kumar McMillan +License: MIT + +Files: wsgi_intercept/webunit_intercept/* +Comment: + A copy of webunit 1.3.8 . + webunit needed to be patched to support different scheme handlers. + The only file that was changed was webunittest.py. +Copyright: (C) 2003 Richard Jones (http://mechanicalcat.net/richard) +Copyright: (C) 2001 Bizar Software Pty Ltd (http://www.bizarsoftware.com.au/) +Copyright: (C) 2002 ekit.com Inc (http://www.ekit-inc.com/) +License: MIT + +License: MIT + 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. --- wsgi-intercept-0.4.orig/debian/compat +++ wsgi-intercept-0.4/debian/compat @@ -0,0 +1 @@ +6 --- wsgi-intercept-0.4.orig/debian/control +++ wsgi-intercept-0.4/debian/control @@ -0,0 +1,22 @@ +Source: wsgi-intercept +Section: python +Priority: extra +Build-Depends: debhelper (>= 7), python-all (>= 2.6.6-3), python-setuptools +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Anthony Lenton +Standards-Version: 3.9.1 +X-Python-Version: >= 2.4 + +Package: python-wsgi-intercept +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Provides: ${python:Provides} +Breaks: ${python:Breaks} +Description: installs a WSGI application in place of a real URI for testing + Testing a WSGI application normally involves starting a server at a + local host and port, then pointing your test code to that address. + Instead, this library lets you intercept calls to any specific + host/port combination and redirect them into a WSGI application + importable by your test program. + Thus, you can avoid spawning multiple processes or threads to test + your Web app.