[Python-modules-commits] r6974 - in packages/webtest/trunk (8 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Tue Nov 25 23:01:51 UTC 2008


    Date: Tuesday, November 25, 2008 @ 23:01:49
  Author: piotr
Revision: 6974

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/webtest/trunk/debian/
  packages/webtest/trunk/debian/changelog
  packages/webtest/trunk/debian/compat
  packages/webtest/trunk/debian/control
  packages/webtest/trunk/debian/copyright
  packages/webtest/trunk/debian/dirs
  packages/webtest/trunk/debian/rules
  packages/webtest/trunk/debian/watch


Property changes on: packages/webtest/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/webtest/trunk/debian/changelog
===================================================================
--- packages/webtest/trunk/debian/changelog	                        (rev 0)
+++ packages/webtest/trunk/debian/changelog	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1,5 @@
+webtest (1.1-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #)
+
+ -- Piotr Ożarowski <piotr at debian.org>  Tue, 25 Nov 2008 21:37:36 +0100

Added: packages/webtest/trunk/debian/compat
===================================================================
--- packages/webtest/trunk/debian/compat	                        (rev 0)
+++ packages/webtest/trunk/debian/compat	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1 @@
+5

Added: packages/webtest/trunk/debian/control
===================================================================
--- packages/webtest/trunk/debian/control	                        (rev 0)
+++ packages/webtest/trunk/debian/control	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1,26 @@
+Source: webtest
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Piotr Ożarowski <piotr at debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: python (>= 2.3.3), python-all, python-support (>= 0.6.4),
+ python-setuptools (>= 0.6b3-1~), python-webob, python-sphinx
+Standards-Version: 3.8.0
+XS-Python-Version: >=2.4
+Homepage: http://pypi.python.org/pypi/WebTsst
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/webtest/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/webtest/trunk/
+
+Package: python-webtest
+Architecture: all
+Depends: ${python:Depends}, python-webob,
+ python-paste (>= 1.7.1), python-pastedeploy, python-pastescript
+Recommends: python-simplejson, python-beautifulsoup, python-lxml,
+ python (>= 2.5) | python-elementtree
+Description: wraps any WSGI application and makes it easy to test
+ WebTest helps you test your WSGI-based web applications. This can be any
+ application that has a WSGI (Web Server Gateway Interface) interface,
+ including an application written in a framework that supports WSGI (which
+ includes most actively developed Python web frameworks – almost anything
+ that even nominally supports WSGI should be testable).

Added: packages/webtest/trunk/debian/copyright
===================================================================
--- packages/webtest/trunk/debian/copyright	                        (rev 0)
+++ packages/webtest/trunk/debian/copyright	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1,33 @@
+This package was debianized by Piotr Ożarowski <piotr at debian.org> on
+Tue, 25 Nov 2008 21:37:36 +0100.
+
+It was downloaded from http://pypi.python.org/pypi/WebTest
+
+Copyright Holder: Ian Bicking <ianb at colorstudy.com>
+
+License: MIT License
+
+ Copyright (c) 2007 Ian Bicking and Contributors
+
+ 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, Piotr Ożarowski <piotr at debian.org> and
+is licensed under the same licence as WebTest.

Added: packages/webtest/trunk/debian/dirs
===================================================================
--- packages/webtest/trunk/debian/dirs	                        (rev 0)
+++ packages/webtest/trunk/debian/dirs	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1,2 @@
+/usr/share/doc/python-webtest/docs
+/usr/share/lintian/overrides

Added: packages/webtest/trunk/debian/rules
===================================================================
--- packages/webtest/trunk/debian/rules	                        (rev 0)
+++ packages/webtest/trunk/debian/rules	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1,55 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog | sed -rne 's,^Version: ([^-]+).*,\1,p')
+PYVERS=$(shell pyversions -vr)
+PKGDIR=$(CURDIR)/debian/python-webtest
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -rf dist build
+	find . -name *\.py[co] -exec rm {} \;
+	dh_clean build-docs* $(PYVERS:%=install-python%)
+
+build: build-docs
+
+build-docs:
+	dh_testdir
+	dh_installdirs
+	mkdir docs/_static # Sphinx needs it
+	PYTHONPATH=. sphinx-build -N -q -E -b html docs/ $(PKGDIR)/usr/share/doc/python-webtest/docs/
+	rm -rf $(PKGDIR)/usr/share/doc/python-webtest/docs/.doctrees
+	dh_link /usr/share/javascript/jquery/jquery.js \
+		/usr/share/doc/python-webtest/docs/_static/jquery.js
+	touch $@
+
+install: $(PYVERS:%=install-python%)
+install-python%:
+	python$* setup.py install \
+		--single-version-externally-managed \
+		--root $(CURDIR)/debian/python-webtest
+	touch $@
+
+binary-indep: build install
+	dh_testdir -i
+	dh_testroot -i
+	dh_installchangelogs -i
+	dh_installdocs -i
+	dh_pysupport -i
+	# it's not an extra license file
+	echo "python-webtest: extra-license-file usr/share/doc/python-webtest/docs/_sources/license.txt" \
+		>> $(PKGDIR)/usr/share/lintian/overrides/python-webtest
+	dh_compress -i -X.py -X.js
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i -- -Z bzip2
+
+binary-arch:
+
+binary: binary-indep binary-arch
+
+.PHONY: build clean binary-indep binary-arch binary install build


Property changes on: packages/webtest/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/webtest/trunk/debian/watch
===================================================================
--- packages/webtest/trunk/debian/watch	                        (rev 0)
+++ packages/webtest/trunk/debian/watch	2008-11-25 23:01:49 UTC (rev 6974)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/W/WebTest/WebTest-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list