[Python-modules-commits] r9704 - in packages/mako/trunk/debian (5 files)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Mon Sep 7 21:57:56 UTC 2009
Date: Monday, September 7, 2009 @ 21:57:55
Author: piotr
Revision: 9704
* New upstream release
* debian/copyright file updated
* Switch to python-support
- debian/preinst file added (to remove python-central files)
* Standards-Version bumped to 3.8.0 (no changes needed)
Added:
packages/mako/trunk/debian/preinst
Modified:
packages/mako/trunk/debian/changelog
packages/mako/trunk/debian/control
packages/mako/trunk/debian/copyright
packages/mako/trunk/debian/rules
Modified: packages/mako/trunk/debian/changelog
===================================================================
--- packages/mako/trunk/debian/changelog 2009-09-07 20:50:30 UTC (rev 9703)
+++ packages/mako/trunk/debian/changelog 2009-09-07 21:57:55 UTC (rev 9704)
@@ -1,3 +1,13 @@
+mako (0.2.5-1) unstable; urgency=low
+
+ * New upstream release
+ * debian/copyright file updated
+ * Switch to python-support
+ - debian/preinst file added (to remove python-central files)
+ * Standards-Version bumped to 3.8.0 (no changes needed)
+
+ -- Piotr Ożarowski <piotr at debian.org> Mon, 07 Sep 2009 23:29:57 +0200
+
mako (0.2.4-2) unstable; urgency=low
* Set the minimum required Python version to 2.4 (closes: #515096)
Modified: packages/mako/trunk/debian/control
===================================================================
--- packages/mako/trunk/debian/control 2009-09-07 20:50:30 UTC (rev 9703)
+++ packages/mako/trunk/debian/control 2009-09-07 21:57:55 UTC (rev 9704)
@@ -4,8 +4,8 @@
Maintainer: Piotr Ożarowski <piotr at debian.org>
Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Build-Depends: debhelper (>= 5.0.38)
-Build-Depends-Indep: python (>= 2.3.5-11), python-all-dev, python-central (>= 0.6.1), python-setuptools (>= 0.6b3-1~)
-Standards-Version: 3.8.0
+Build-Depends-Indep: python (>= 2.3.5-11), python-all, python-support (>= 0.6.4), python-setuptools (>= 0.6b3-1~)
+Standards-Version: 3.8.3
Homepage: http://www.makotemplates.org/
XS-Python-Version: >= 2.4
Vcs-Svn: svn://svn.debian.org/python-modules/packages/mako/trunk
Modified: packages/mako/trunk/debian/copyright
===================================================================
--- packages/mako/trunk/debian/copyright 2009-09-07 20:50:30 UTC (rev 9703)
+++ packages/mako/trunk/debian/copyright 2009-09-07 21:57:55 UTC (rev 9704)
@@ -5,14 +5,14 @@
Upstream Author: Mike Bayer <mike at zzzcomputing.com>
-Copyright (C) 2006-2008 Michael Bayer <mike at zzzcomputing.com>
+Copyright (C) 2006-2009 Michael Bayer <mike at zzzcomputing.com>
Copyright:
This is the MIT license: http://www.opensource.org/licenses/mit-license.php
- Copyright (C) 2006, 2007, 2008 Michael Bayer and contributors. Mako is a trademark
- of Michael Bayer.
+ Copyright (C) 2006, 2007, 2008, 2009 Michael Bayer and contributors.
+ Mako is a trademark of Michael Bayer.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@@ -32,7 +32,23 @@
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+----------------------------------------------------------------
+lib/mako/_ast_util.py file:
+
+ :copyright: Copyright 2008 by Armin Ronacher.
+ :license: Python License.
+
+----------------------------------------------------------------
+
+lib/mako/filters.py file:
+
+ Copyright (C) 2006, 2007, 2008, 2009 Geoffrey T. Dairiki <dairiki at dairiki.org> and Michael Bayer <mike_mp at zzzcomputing.com>
+ This module is part of Mako and is released under
+ the MIT License: http://www.opensource.org/licenses/mit-license.php
+
+----------------------------------------------------------------
+
examples/bench/basic.py file:
basic.py - basic benchmarks adapted from Genshi
@@ -65,6 +81,7 @@
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 © 2007-2009, Piotr Ożarowski <piotr at debian.org> and
is licensed under the MIT License as well.
Added: packages/mako/trunk/debian/preinst
===================================================================
--- packages/mako/trunk/debian/preinst (rev 0)
+++ packages/mako/trunk/debian/preinst 2009-09-07 21:57:55 UTC (rev 9704)
@@ -0,0 +1,9 @@
+#!/bin/sh
+# TODO: remove this file after releasing Squeeze
+set -e
+if [ "$1" = upgrade ] && dpkg --compare-versions "$2" lt-nl 0.2.5-1~;
+then
+ pycentral pkgremove python-mako
+fi
+
+#DEBHELPER#
Modified: packages/mako/trunk/debian/rules
===================================================================
--- packages/mako/trunk/debian/rules 2009-09-07 20:50:30 UTC (rev 9703)
+++ packages/mako/trunk/debian/rules 2009-09-07 21:57:55 UTC (rev 9704)
@@ -33,7 +33,7 @@
dh_installexamples -i
dh_installman -i
rm -rf debian/python-mako/usr/share/doc/python-mako/doc/build
- dh_pycentral -i
+ dh_pysupport -i
dh_compress -i -X.py -Xmakotemplates.txt
dh_fixperms -i
dh_installdeb -i
More information about the Python-modules-commits
mailing list