[Python-modules-commits] r398 - in /packages/paste/trunk: debian/
debian/changelog debian/compat
debian/control debian/copyright debian/postinst debian/prerm debian/rules
paste/debug/doctest_webapp.py paste/util/scgiserver.py
pox-guest at users.alioth.debian.org
pox-guest at users.alioth.debian.org
Thu May 4 15:56:23 UTC 2006
Author: pox-guest
Date: Thu May 4 15:56:23 2006
New Revision: 398
URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=398
Log:
Load newtrunk into packages/paste/trunk.
Added:
packages/paste/trunk/debian/
packages/paste/trunk/debian/changelog
packages/paste/trunk/debian/compat
packages/paste/trunk/debian/control
packages/paste/trunk/debian/copyright
packages/paste/trunk/debian/postinst
packages/paste/trunk/debian/prerm
packages/paste/trunk/debian/rules (with props)
Modified:
packages/paste/trunk/paste/debug/doctest_webapp.py (contents, props changed)
packages/paste/trunk/paste/util/scgiserver.py
Added: packages/paste/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/changelog?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/changelog (added)
+++ packages/paste/trunk/debian/changelog Thu May 4 15:56:23 2006
@@ -1,0 +1,6 @@
+paste (0.9-1) unstable; urgency=low
+
+ * Initial release (closes: #366033)
+
+ -- Piotr Ozarowski <ozarow at gmail.com> Thu, 4 May 2006 01:14:26 +0200
+
Added: packages/paste/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/compat?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/compat (added)
+++ packages/paste/trunk/debian/compat Thu May 4 15:56:23 2006
@@ -1,0 +1,1 @@
+5
Added: packages/paste/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/control?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/control (added)
+++ packages/paste/trunk/debian/control Thu May 4 15:56:23 2006
@@ -1,0 +1,17 @@
+Source: paste
+Section: python
+Priority: optional
+Maintainer: Piotr Ozarowski <ozarow at gmail.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>=5), cdbs (>=0.4.39)
+Build-Depends-Indep: python-dev, python-setuptools (>= 0.6a9-1)
+Standards-Version: 3.7.0
+
+Package: python-paste
+Architecture: all
+Depends: python (>= 2.3), python-support (>= 0.2.2)
+Description: Tools for using a Web Server Gateway Interface stack
+ Python Paste brings consistency to Python web development and web application
+ installation, providing tools for both developers and system administrators.
+ .
+ Homepage: http://pythonpaste.org
Added: packages/paste/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/copyright?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/copyright (added)
+++ packages/paste/trunk/debian/copyright Thu May 4 15:56:23 2006
@@ -1,0 +1,34 @@
+This package was debianized by Piotr Ozarowski <ozarow at gmail.com> on
+Thu, 4 May 2006 01:14:26 +0200.
+
+It was downloaded from http://cheeseshop.python.org/pypi/Paste
+
+Copyright Holder: Ian Bicking <ianb at colorstudy.com>
+
+License: MIT License
+
+ Copyright (c) 2006 Ian Bicking <ianb at colorstudy.com>
+
+ 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) 2006, Piotr Ozarowski <ozarow at gmail.com> and
+is licensed under the GPL.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in `/usr/share/common-licenses/GPL'.
Added: packages/paste/trunk/debian/postinst
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/postinst?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/postinst (added)
+++ packages/paste/trunk/debian/postinst Thu May 4 15:56:23 2006
@@ -1,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = "configure" ] && which update-python-modules >/dev/null 2>&1; then
+ update-python-modules -i /usr/share/python-support/paste
+fi
Added: packages/paste/trunk/debian/prerm
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/prerm?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/prerm (added)
+++ packages/paste/trunk/debian/prerm Thu May 4 15:56:23 2006
@@ -1,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if which update-python-modules >/dev/null 2>&1; then
+ update-python-modules -c -i /usr/share/python-support/paste
+fi
Added: packages/paste/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/debian/rules?rev=398&op=file
==============================================================================
--- packages/paste/trunk/debian/rules (added)
+++ packages/paste/trunk/debian/rules Thu May 4 15:56:23 2006
@@ -1,0 +1,9 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+# python-distutils before debhelper to avoid it calling dh_python by itself
+include /usr/share/cdbs/1/class/python-distutils.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+
+DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed
+DEB_PYTHON_INSTALL_ARGS_ALL += --install-lib usr/share/python-support/paste
Propchange: packages/paste/trunk/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Modified: packages/paste/trunk/paste/debug/doctest_webapp.py
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/paste/debug/doctest_webapp.py?rev=398&op=diff
==============================================================================
--- packages/paste/trunk/paste/debug/doctest_webapp.py (original)
+++ packages/paste/trunk/paste/debug/doctest_webapp.py Thu May 4 15:56:23 2006
@@ -1,4 +1,3 @@
-#!/usr/bin/env python2.4
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
Propchange: packages/paste/trunk/paste/debug/doctest_webapp.py
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Thu May 4 15:56:23 2006
@@ -1,0 +1,1 @@
+*
Modified: packages/paste/trunk/paste/util/scgiserver.py
URL: http://svn.debian.org/wsvn/python-modules/packages/paste/trunk/paste/util/scgiserver.py?rev=398&op=diff
==============================================================================
--- packages/paste/trunk/paste/util/scgiserver.py (original)
+++ packages/paste/trunk/paste/util/scgiserver.py Thu May 4 15:56:23 2006
@@ -1,4 +1,3 @@
-#! /usr/bin/env python
"""
SCGI-->WSGI application proxy, "SWAP".
More information about the Python-modules-commits
mailing list