[Python-modules-commits] r20790 - in packages/routes/trunk/debian (6 files)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Wed Mar 14 22:08:50 UTC 2012
Date: Wednesday, March 14, 2012 @ 22:08:47
Author: piotr
Revision: 20790
* New upstream release
* Switch from dh_pysupport to dh_python2
* Add build-arch and build-indep targets to debian/rules
* debhelper's compatibility bumped to 7
* debian/copyright updated
* Source format changed to 3.0 (quilt)
* Standards-Version bumped to 3.9.3 (no changes needed)
Modified:
packages/routes/trunk/debian/changelog
packages/routes/trunk/debian/compat
packages/routes/trunk/debian/control
packages/routes/trunk/debian/copyright
packages/routes/trunk/debian/rules
packages/routes/trunk/debian/source/format
Modified: packages/routes/trunk/debian/changelog
===================================================================
--- packages/routes/trunk/debian/changelog 2012-03-14 22:01:35 UTC (rev 20789)
+++ packages/routes/trunk/debian/changelog 2012-03-14 22:08:47 UTC (rev 20790)
@@ -1,3 +1,15 @@
+routes (1.13-1) UNRELEASED; urgency=low
+
+ * New upstream release
+ * Switch from dh_pysupport to dh_python2
+ * Add build-arch and build-indep targets to debian/rules
+ * debhelper's compatibility bumped to 7
+ * debian/copyright updated
+ * Source format changed to 3.0 (quilt)
+ * Standards-Version bumped to 3.9.3 (no changes needed)
+
+ -- Piotr Ożarowski <piotr at debian.org> Wed, 14 Mar 2012 21:32:21 +0100
+
routes (1.12.3-1) unstable; urgency=low
* New upstream release
Modified: packages/routes/trunk/debian/compat
===================================================================
--- packages/routes/trunk/debian/compat 2012-03-14 22:01:35 UTC (rev 20789)
+++ packages/routes/trunk/debian/compat 2012-03-14 22:08:47 UTC (rev 20790)
@@ -1 +1 @@
-5
+7
Modified: packages/routes/trunk/debian/control
===================================================================
--- packages/routes/trunk/debian/control 2012-03-14 22:01:35 UTC (rev 20789)
+++ packages/routes/trunk/debian/control 2012-03-14 22:08:47 UTC (rev 20790)
@@ -7,16 +7,14 @@
Build-Depends-Indep: python (>= 2.3.5-7), python-all, python-support (>= 0.6.4), python-setuptools (>= 0.6b3)
Standards-Version: 3.8.4
Homepage: http://routes.groovie.org/
-XS-Python-Version: all
Vcs-Svn: svn://svn.debian.org/python-modules/packages/routes/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/routes/trunk/
Package: python-routes
Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
+Depends: ${python:Depends}, ${sphinxdoc:Depends}, ${misc:Depends}
Recommends: python-webob
Suggests: python-paste
-XB-Python-Version: ${python:Versions}
Description: Routing Recognition and Generation Tools
Routes is a Python re-implementation of the Rails routes system for mapping
URLs to Controllers/Actions and generating URLs. Routes makes it easy to
Modified: packages/routes/trunk/debian/copyright
===================================================================
--- packages/routes/trunk/debian/copyright 2012-03-14 22:01:35 UTC (rev 20789)
+++ packages/routes/trunk/debian/copyright 2012-03-14 22:08:47 UTC (rev 20790)
@@ -3,14 +3,34 @@
It was downloaded from http://www.python.org/pypi/Routes/
-Copyright Holder: Ben Bangert <ben at groovie.org>
+Copyright (c) 2005-2012 Ben Bangert <ben at groovie.org>
-License: BSD
+All rights reserved.
-Copyright (c) 2005-2008 Ben Bangert <ben at groovie.org>
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+3. The name of the author or contributors may not be used to endorse or
+ promote products derived from this software without specific prior
+ written permission.
-On Debian systems, the complete text of the BSD License
-can be found in `/usr/share/common-licenses/BSD'
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
-The Debian packaging is © 2006-2009, Piotr Ożarowski <piotr at debian.org>
-and is licensed under the BSD.
+
+The Debian packaging is © 2006-2012, Piotr Ożarowski <piotr at debian.org>
+and is licensed under the BSD as well.
Modified: packages/routes/trunk/debian/rules
===================================================================
--- packages/routes/trunk/debian/rules 2012-03-14 22:01:35 UTC (rev 20789)
+++ packages/routes/trunk/debian/rules 2012-03-14 22:08:47 UTC (rev 20790)
@@ -2,9 +2,6 @@
#export DH_VERBOSE=1
-DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog \
- | sed -rne 's,^Version: ([^-]+).*,\1,p')
-
PYVERS=$(shell pyversions -vr)
clean:
@@ -15,7 +12,9 @@
find . -name "\._*" -delete
dh_clean
-build:
+build: build-indep
+build-arch:
+build-indep:
install: $(PYVERS:%=install-python%)
install-python%:
@@ -26,9 +25,9 @@
binary-indep: build install
dh_testdir -i
dh_testroot -i
- dh_installchangelogs -i CHANGELOG
+ dh_installchangelogs -i
dh_installdocs -i
- dh_pysupport -i
+ dh_python2 -i
dh_compress -i -X.py
dh_fixperms -i
dh_installdeb -i
@@ -40,4 +39,4 @@
binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install
Modified: packages/routes/trunk/debian/source/format
===================================================================
--- packages/routes/trunk/debian/source/format 2012-03-14 22:01:35 UTC (rev 20789)
+++ packages/routes/trunk/debian/source/format 2012-03-14 22:08:47 UTC (rev 20790)
@@ -1 +1 @@
-1.0
+3.0 (quilt)
More information about the Python-modules-commits
mailing list