[Python-modules-commits] r5065 - in packages/python-weberror/trunk (7 files)

haas at users.alioth.debian.org haas at users.alioth.debian.org
Sun Apr 20 14:16:13 UTC 2008


    Date: Sunday, April 20, 2008 @ 14:16:11
  Author: haas
Revision: 5065

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/python-weberror/trunk/debian/
  packages/python-weberror/trunk/debian/changelog
  packages/python-weberror/trunk/debian/compat
  packages/python-weberror/trunk/debian/control
  packages/python-weberror/trunk/debian/copyright
  packages/python-weberror/trunk/debian/rules
Modified:
  packages/python-weberror/trunk/WebError.egg-info/SOURCES.txt

Modified: packages/python-weberror/trunk/WebError.egg-info/SOURCES.txt
===================================================================
--- packages/python-weberror/trunk/WebError.egg-info/SOURCES.txt	2008-04-20 14:16:00 UTC (rev 5064)
+++ packages/python-weberror/trunk/WebError.egg-info/SOURCES.txt	2008-04-20 14:16:11 UTC (rev 5065)
@@ -4,6 +4,14 @@
 README
 setup.cfg
 setup.py
+WebError.egg-info/._PKG-INFO
+WebError.egg-info/._SOURCES.txt
+WebError.egg-info/._dependency_links.txt
+WebError.egg-info/._entry_points.txt
+WebError.egg-info/._not-zip-safe
+WebError.egg-info/._paster_plugins.txt
+WebError.egg-info/._requires.txt
+WebError.egg-info/._top_level.txt
 WebError.egg-info/PKG-INFO
 WebError.egg-info/SOURCES.txt
 WebError.egg-info/dependency_links.txt


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

Added: packages/python-weberror/trunk/debian/changelog
===================================================================
--- packages/python-weberror/trunk/debian/changelog	                        (rev 0)
+++ packages/python-weberror/trunk/debian/changelog	2008-04-20 14:16:11 UTC (rev 5065)
@@ -0,0 +1,6 @@
+python-weberror (0.8a-1) unstable; urgency=low
+
+  * Initial release (Closes: #476923)
+
+ -- Christoph Haas <haas at debian.org>  Sun, 20 Apr 2008 10:30:40 +0200
+

Added: packages/python-weberror/trunk/debian/compat
===================================================================
--- packages/python-weberror/trunk/debian/compat	                        (rev 0)
+++ packages/python-weberror/trunk/debian/compat	2008-04-20 14:16:11 UTC (rev 5065)
@@ -0,0 +1 @@
+5

Added: packages/python-weberror/trunk/debian/control
===================================================================
--- packages/python-weberror/trunk/debian/control	                        (rev 0)
+++ packages/python-weberror/trunk/debian/control	2008-04-20 14:16:11 UTC (rev 5065)
@@ -0,0 +1,17 @@
+Source: python-weberror
+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
+
+Package: python-weberror
+Architecture: all
+Depends: ${python:Depends}, python, python-webob, python-tempita
+Description: Python web error handling and exception catching module
+ This Python module provides error handling and exception catching
+ functinality for WSGI web applications. It is primarily used by Pylons
+ (python-pylons).
+

Added: packages/python-weberror/trunk/debian/copyright
===================================================================
--- packages/python-weberror/trunk/debian/copyright	                        (rev 0)
+++ packages/python-weberror/trunk/debian/copyright	2008-04-20 14:16:11 UTC (rev 5065)
@@ -0,0 +1,43 @@
+This package was debianized by Christoph Haas <haas at debian.org> on
+Sun, 20 Apr 2008 10:30:40 +0200.
+
+It was downloaded from http://pypi.python.org/pypi/WebError
+
+Upstream Authors: 
+
+    Ben Bangert <ben at groovie.org>
+    Ian Bicking <ianb at colorstudy.com>
+    Mark Ramm <mark.mchristensen at gmail.com>
+
+Copyright: 
+
+    Copyright © 2008 Ben Bangert
+    Copyright © 2008 Ian Bicking
+    Copyright © 2008 Mark Ramm
+
+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-weberror/trunk/debian/rules
===================================================================
--- packages/python-weberror/trunk/debian/rules	                        (rev 0)
+++ packages/python-weberror/trunk/debian/rules	2008-04-20 14:16:11 UTC (rev 5065)
@@ -0,0 +1,63 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+package=python-weberror
+
+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
+	find debian/$(package) -type f -perm 755 | xargs -r chmod 644
+	find debian/$(package) -name '._*' -type f | xargs -r rm
+	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-weberror/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *




More information about the Python-modules-commits mailing list