[Python-modules-commits] r3017 - in /packages/python-wsgiref: tags/ trunk/ trunk/debian/ trunk/debian/patches/

nslater-guest at users.alioth.debian.org nslater-guest at users.alioth.debian.org
Fri Aug 10 22:24:17 UTC 2007


Author: nslater-guest
Date: Fri Aug 10 22:24:17 2007
New Revision: 3017

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=3017
Log:
python-wsgiref: (0.1.2-1): Initial release.

Added:
    packages/python-wsgiref/tags/
    packages/python-wsgiref/trunk/
    packages/python-wsgiref/trunk/debian/
    packages/python-wsgiref/trunk/debian/changelog   (with props)
    packages/python-wsgiref/trunk/debian/compat   (with props)
    packages/python-wsgiref/trunk/debian/control   (with props)
    packages/python-wsgiref/trunk/debian/copyright
    packages/python-wsgiref/trunk/debian/docs
    packages/python-wsgiref/trunk/debian/patches/
    packages/python-wsgiref/trunk/debian/patches/remove-ez_setup.patch   (with props)
    packages/python-wsgiref/trunk/debian/pycompat
    packages/python-wsgiref/trunk/debian/pyversions
    packages/python-wsgiref/trunk/debian/rules   (with props)
    packages/python-wsgiref/trunk/debian/watch

Added: packages/python-wsgiref/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/changelog?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/changelog (added)
+++ packages/python-wsgiref/trunk/debian/changelog Fri Aug 10 22:24:17 2007
@@ -1,0 +1,5 @@
+python-wsgiref (0.1.2-1) unstable; urgency=low
+
+  * Initial release. Closes: #433384
+
+ -- Noah Slater <nslater at bytesexual.org>  Thu, 28 Jun 2007 09:13:23 +0100

Propchange: packages/python-wsgiref/trunk/debian/changelog
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: packages/python-wsgiref/trunk/debian/changelog
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: packages/python-wsgiref/trunk/debian/changelog
------------------------------------------------------------------------------
    svn:mime-type = text/x-changelog

Added: packages/python-wsgiref/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/compat?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/compat (added)
+++ packages/python-wsgiref/trunk/debian/compat Fri Aug 10 22:24:17 2007
@@ -1,0 +1,2 @@
+5
+5

Propchange: packages/python-wsgiref/trunk/debian/compat
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: packages/python-wsgiref/trunk/debian/compat
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: packages/python-wsgiref/trunk/debian/compat
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: packages/python-wsgiref/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/control?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/control (added)
+++ packages/python-wsgiref/trunk/debian/control Fri Aug 10 22:24:17 2007
@@ -1,0 +1,28 @@
+Source: python-wsgiref
+Section: python
+Priority: optional
+Maintainer: Noah Slater <nslater at bytesexual.org>
+Standards-Version: 3.7.2
+Build-Depends: cdbs (>= 0.4.42), debhelper (>= 5.0.37.2),  python-dev
+Build-Depends-Indep:python-setuptools (>= 0.6b3-1), python-support (>= 0.6.4)
+
+Package: python-wsgiref
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Priority: optional
+Description: a standalone release of the wsgiref library
+ This is a standalone release of the wsgiref library for Python 2.3 and 2.4.
+ .
+ The wsgiref library is to be included in the Python 2.5 standard library.
+ .
+ The Web Server Gateway Interface (WSGI) is a standard interface between web
+ server software and web applications written in Python. Having a standard
+ interface makes it easy to use an application that supports WSGI with a number
+ of different web servers.
+ .
+ wsgiref is a reference implementation of the WSGI specification that can be
+ used to add WSGI support to a web server or framework. It also contains some
+ useful utilities for writing applications or middleware that provide or
+ implement WSGI.
+ .
+  Homepage: http://cheeseshop.python.org/pypi/wsgiref

Propchange: packages/python-wsgiref/trunk/debian/control
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: packages/python-wsgiref/trunk/debian/control
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: packages/python-wsgiref/trunk/debian/control
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: packages/python-wsgiref/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/copyright?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/copyright (added)
+++ packages/python-wsgiref/trunk/debian/copyright Fri Aug 10 22:24:17 2007
@@ -1,0 +1,16 @@
+Upstream source from: <http://cheeseshop.python.org/pypi/wsgiref>
+
+Files: debian/*
+Copyright: Copyright (C) 2007 Noah Slater <nslater at bytesexual.org>
+License: other
+ Copying and distribution of this package, with or without modification, are
+ permitted in any medium without royalty provided the copyright notice and this
+ notice are preserved.
+
+Files: *
+Copyright: Copyright (C) 2007 Phillip J. Eby
+ Copyright (C) 2005 Ian Bicking
+ Copyright (C) 2001, 2002 Python Software Foundation
+License: PSF | ZPL
+ The PSF can be found at: <http://www.python.org/psf/license.html>
+ The ZPL can be found at: <http://www.zope.org/Resources/ZPL>

Added: packages/python-wsgiref/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/docs?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/docs (added)
+++ packages/python-wsgiref/trunk/debian/docs Fri Aug 10 22:24:17 2007
@@ -1,0 +1,1 @@
+README.txt

Added: packages/python-wsgiref/trunk/debian/patches/remove-ez_setup.patch
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/patches/remove-ez_setup.patch?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/patches/remove-ez_setup.patch (added)
+++ packages/python-wsgiref/trunk/debian/patches/remove-ez_setup.patch Fri Aug 10 22:24:17 2007
@@ -1,0 +1,13 @@
+diff -Nur python-wsgiref-0.1.2/setup.py python-wsgiref-0.1.2.new/setup.py
+--- python-wsgiref-0.1.2/setup.py	2006-06-11 23:48:10.000000000 +0100
++++ python-wsgiref-0.1.2.new/setup.py	2007-07-16 22:01:58.000000000 +0100
+@@ -2,9 +2,6 @@
+ 
+ """Distutils setup file"""
+ 
+-import ez_setup
+-ez_setup.use_setuptools()
+-
+ from setuptools import setup, find_packages
+ 
+ # Metadata

Propchange: packages/python-wsgiref/trunk/debian/patches/remove-ez_setup.patch
------------------------------------------------------------------------------
    svn:mime-type = text/x-patch

Added: packages/python-wsgiref/trunk/debian/pycompat
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/pycompat?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/pycompat (added)
+++ packages/python-wsgiref/trunk/debian/pycompat Fri Aug 10 22:24:17 2007
@@ -1,0 +1,1 @@
+2

Added: packages/python-wsgiref/trunk/debian/pyversions
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/pyversions?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/pyversions (added)
+++ packages/python-wsgiref/trunk/debian/pyversions Fri Aug 10 22:24:17 2007
@@ -1,0 +1,1 @@
+2.3-2.4

Added: packages/python-wsgiref/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/rules?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/rules (added)
+++ packages/python-wsgiref/trunk/debian/rules Fri Aug 10 22:24:17 2007
@@ -1,0 +1,20 @@
+#!/usr/bin/make -f
+
+# This file is part of the python-wsgiref package.
+
+# Copyright (C) 2007 Noah Slater <nslater at bytesexual.org>.
+
+# Copying and distribution of this file, with or without modification, are
+# permitted in any medium without royalty provided the copyright notice and this
+# notice are preserved.
+
+# Makefile used by dpkg-buildpackage to create a deb file.
+
+DEB_PYTHON_SYSTEM := pysupport
+
+include /usr/share/cdbs/1/rules/buildcore.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed

Propchange: packages/python-wsgiref/trunk/debian/rules
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: packages/python-wsgiref/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Propchange: packages/python-wsgiref/trunk/debian/rules
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: packages/python-wsgiref/trunk/debian/rules
------------------------------------------------------------------------------
    svn:mime-type = text/x-makefile

Added: packages/python-wsgiref/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/python-wsgiref/trunk/debian/watch?rev=3017&op=file
==============================================================================
--- packages/python-wsgiref/trunk/debian/watch (added)
+++ packages/python-wsgiref/trunk/debian/watch Fri Aug 10 22:24:17 2007
@@ -1,0 +1,3 @@
+version = 3
+
+http://pypi.python.org/packages/source/w/wsgiref/wsgiref-(.*)\.zip




More information about the Python-modules-commits mailing list