[Python-modules-commits] r5060 - in packages/python-webob/trunk (6 files)

haas at users.alioth.debian.org haas at users.alioth.debian.org
Sun Apr 20 13:09:17 UTC 2008


    Date: Sunday, April 20, 2008 @ 13:09:16
  Author: haas
Revision: 5060

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/python-webob/trunk/debian/
  packages/python-webob/trunk/debian/changelog
  packages/python-webob/trunk/debian/compat
  packages/python-webob/trunk/debian/control
  packages/python-webob/trunk/debian/copyright
  packages/python-webob/trunk/debian/rules


Property changes on: packages/python-webob/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/python-webob/trunk/debian/changelog
===================================================================
--- packages/python-webob/trunk/debian/changelog	                        (rev 0)
+++ packages/python-webob/trunk/debian/changelog	2008-04-20 13:09:16 UTC (rev 5060)
@@ -0,0 +1,6 @@
+python-webob (0.9.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #476924)
+
+ -- Christoph Haas <haas at debian.org>  Sun, 20 Apr 2008 10:42:43 +0200
+

Added: packages/python-webob/trunk/debian/compat
===================================================================
--- packages/python-webob/trunk/debian/compat	                        (rev 0)
+++ packages/python-webob/trunk/debian/compat	2008-04-20 13:09:16 UTC (rev 5060)
@@ -0,0 +1 @@
+5

Added: packages/python-webob/trunk/debian/control
===================================================================
--- packages/python-webob/trunk/debian/control	                        (rev 0)
+++ packages/python-webob/trunk/debian/control	2008-04-20 13:09:16 UTC (rev 5060)
@@ -0,0 +1,19 @@
+Source: python-webob
+Section: python
+Priority: extra
+Maintainer: Christoph Haas <haas at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>,
+Build-Depends: debhelper (>= 5), python (>= 2.3.3), python-all-dev, python-support (>= 0.6.4), python-setuptools (>= 0.6b3)
+Standards-Version: 3.7.3
+XS-Python-Version: all
+Homepage: http://pythonpaste.org/webob/
+
+Package: python-webob
+Architecture: all
+Depends: ${python:Depends}, python
+Description: Python module providing WSGI request and response objects
+ WebOb provides wrappers around the WSGI request environment, and an object to
+ help create WSGI responses.
+ .
+ The objects map much of the specified behavior of HTTP, including header
+ parsing and accessors for other standard parts of the environment.

Added: packages/python-webob/trunk/debian/copyright
===================================================================
--- packages/python-webob/trunk/debian/copyright	                        (rev 0)
+++ packages/python-webob/trunk/debian/copyright	2008-04-20 13:09:16 UTC (rev 5060)
@@ -0,0 +1,39 @@
+This package was debianized by Christoph Haas <haas at debian.org> on
+Sun, 20 Apr 2008 10:42:43 +0200.
+
+It was downloaded from http://pythonpaste.org/webob/
+
+Upstream Author: 
+
+    Ian Bicking <ianb at colorstudy.com>
+
+Copyright: 
+
+    Copyright © 2008 Ian Bicking
+
+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.
+
+The Debian packaging is (C) 2008, Christoph Haas <haas at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: packages/python-webob/trunk/debian/rules
===================================================================
--- packages/python-webob/trunk/debian/rules	                        (rev 0)
+++ packages/python-webob/trunk/debian/rules	2008-04-20 13:09:16 UTC (rev 5060)
@@ -0,0 +1,61 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+package=python-webob
+
+unpatch:
+	dpatch deapply-all
+	rm -rf patch-stamp debian/patched
+
+clean: unpatch
+	rm -f build-*
+	dh_testdir
+	dh_testroot
+	rm -rf build
+	find . -name *\.py[co] -exec rm -f {} \;
+	dh_clean
+
+build: patch-stamp build-stamp
+
+patch-stamp:
+	dpatch apply-all
+	python setup.py clean
+	touch $@
+
+build-stamp:
+	dh_testdir
+	python setup.py build
+	touch $@
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	python setup.py install \
+		--no-compile \
+		--single-version-externally-managed \
+		--root $(CURDIR)/debian/$(package)
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installexamples
+	dh_strip
+	dh_compress -X.py
+	dh_fixperms
+	dh_pysupport
+	dh_installdeb
+	dh_shlibdeps
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
+


Property changes on: packages/python-webob/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Python-modules-commits mailing list