[Python-modules-commits] r441 - in /packages/routes/trunk: debian/ debian/changelog debian/compat debian/control debian/copyright debian/docs debian/examples debian/postinst debian/prerm debian/rules ez_setup/__init__.py

pox-guest at users.alioth.debian.org pox-guest at users.alioth.debian.org
Fri May 5 22:22:31 UTC 2006


Author: pox-guest
Date: Fri May  5 22:22:31 2006
New Revision: 441

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=441
Log:
Load newtrunk into packages/routes/trunk.

Added:
    packages/routes/trunk/debian/
    packages/routes/trunk/debian/changelog
    packages/routes/trunk/debian/compat
    packages/routes/trunk/debian/control
    packages/routes/trunk/debian/copyright
    packages/routes/trunk/debian/docs
    packages/routes/trunk/debian/examples
    packages/routes/trunk/debian/postinst
    packages/routes/trunk/debian/prerm
    packages/routes/trunk/debian/rules   (with props)
Modified:
    packages/routes/trunk/ez_setup/__init__.py   (contents, props changed)

Added: packages/routes/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/changelog?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/changelog (added)
+++ packages/routes/trunk/debian/changelog Fri May  5 22:22:31 2006
@@ -1,0 +1,6 @@
+routes (1.3.2-1) UNRELEASED; urgency=low
+
+  * Initial release.
+
+ -- Piotr Ozarowski <ozarow at gmail.com>  Fri,  5 May 2006 23:43:00 +0200
+

Added: packages/routes/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/compat?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/compat (added)
+++ packages/routes/trunk/debian/compat Fri May  5 22:22:31 2006
@@ -1,0 +1,1 @@
+5

Added: packages/routes/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/control?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/control (added)
+++ packages/routes/trunk/debian/control Fri May  5 22:22:31 2006
@@ -1,0 +1,16 @@
+Source: routes
+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.2
+
+Package: python-routes
+Architecture: all
+Depends: python (>= 2.3), python-support (>= 0.2.2)
+Description: Routing Recognition and Generation Tools
+ A Routing package for Python that matches URL's to dicts and vice versa
+ .
+  Homepage: http://routes.groovie.org/

Added: packages/routes/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/copyright?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/copyright (added)
+++ packages/routes/trunk/debian/copyright Fri May  5 22:22:31 2006
@@ -1,0 +1,19 @@
+This package was debianized by Piotr Ozarowski <ozarow at gmail.com> on
+Thu,  5 May 2006 23:30:00 +0200.
+
+It was downloaded from http://www.python.org/pypi/Routes/
+
+Copyright Holder: Ben Bangert <ben at groovie.org>
+
+License: BSD
+
+Copyright (c) 2005 Ben Bangert <ben at groovie.org>
+
+On Debian systems, the complete text of the BSD License
+can be found in `/usr/share/common-licenses/BSD'
+
+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/routes/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/docs?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/docs (added)
+++ packages/routes/trunk/debian/docs Fri May  5 22:22:31 2006
@@ -1,0 +1,1 @@
+docs/

Added: packages/routes/trunk/debian/examples
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/examples?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/examples (added)
+++ packages/routes/trunk/debian/examples Fri May  5 22:22:31 2006
@@ -1,0 +1,2 @@
+tests/test_functional/
+tests/test_units/

Added: packages/routes/trunk/debian/postinst
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/postinst?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/postinst (added)
+++ packages/routes/trunk/debian/postinst Fri May  5 22:22:31 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/routes
+fi

Added: packages/routes/trunk/debian/prerm
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/prerm?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/prerm (added)
+++ packages/routes/trunk/debian/prerm Fri May  5 22:22:31 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/routes
+fi

Added: packages/routes/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/debian/rules?rev=441&op=file
==============================================================================
--- packages/routes/trunk/debian/rules (added)
+++ packages/routes/trunk/debian/rules Fri May  5 22:22:31 2006
@@ -1,0 +1,13 @@
+#!/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/routes
+DEB_COMPRESS_EXCLUDE := .py
+
+#install/python-routes::
+#	dh_install debian/.version /usr/share/python-support/routes/

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

Modified: packages/routes/trunk/ez_setup/__init__.py
URL: http://svn.debian.org/wsvn/python-modules/packages/routes/trunk/ez_setup/__init__.py?rev=441&op=diff
==============================================================================
--- packages/routes/trunk/ez_setup/__init__.py (original)
+++ packages/routes/trunk/ez_setup/__init__.py Fri May  5 22:22:31 2006
@@ -14,7 +14,7 @@
 This file can also be run as a script to install or upgrade setuptools.
 """
 import sys
-DEFAULT_VERSION = "0.6a11"
+DEFAULT_VERSION = "0.6a9"
 DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3]
 
 md5_data = {

Propchange: packages/routes/trunk/ez_setup/__init__.py
------------------------------------------------------------------------------
--- svn:executable (original)
+++ svn:executable Fri May  5 22:22:31 2006
@@ -1,0 +1,1 @@
+*




More information about the Python-modules-commits mailing list