[Python-modules-commits] r5545 - in packages/mako/trunk/debian (6 files)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Tue Jun 3 22:04:51 UTC 2008
Date: Tuesday, June 3, 2008 @ 22:04:50
Author: piotr
Revision: 5545
* New upstream release
* Add "~" to setuptools' required build version (to ease backports)
* Add manpage for new mako-render script
* s/hyperfast/fast in short description to avoid inflated adjectives
(closes: #466008)
* doc-base: section changed to Programming/Python
Added:
packages/mako/trunk/debian/mako-render.1
packages/mako/trunk/debian/manpages
Modified:
packages/mako/trunk/debian/changelog
packages/mako/trunk/debian/control
packages/mako/trunk/debian/doc-base
packages/mako/trunk/debian/rules
Modified: packages/mako/trunk/debian/changelog
===================================================================
--- packages/mako/trunk/debian/changelog 2008-06-03 09:47:55 UTC (rev 5544)
+++ packages/mako/trunk/debian/changelog 2008-06-03 22:04:50 UTC (rev 5545)
@@ -1,3 +1,14 @@
+mako (0.2.0-1) unstable; urgency=low
+
+ * New upstream release
+ * Add "~" to setuptools' required build version (to ease backports)
+ * Add manpage for new mako-render script
+ * s/hyperfast/fast in short description to avoid inflated adjectives
+ (closes: #466008)
+ * doc-base: section changed to Programming/Python
+
+ -- Piotr Ożarowski <piotr at debian.org> Tue, 03 Jun 2008 22:27:15 +0200
+
mako (0.1.10-1) unstable; urgency=low
* New upstream release
Modified: packages/mako/trunk/debian/control
===================================================================
--- packages/mako/trunk/debian/control 2008-06-03 09:47:55 UTC (rev 5544)
+++ packages/mako/trunk/debian/control 2008-06-03 22:04:50 UTC (rev 5545)
@@ -4,7 +4,7 @@
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.5.6), python-setuptools (>= 0.6b3-1)
+Build-Depends-Indep: python (>= 2.3.5-11), python-all-dev, python-central (>= 0.5.6), python-setuptools (>= 0.6b3-1~)
Standards-Version: 3.7.3
Homepage: http://www.makotemplates.org/
XS-Python-Version: all
@@ -17,7 +17,7 @@
Recommends: python-beaker (>= 0.7.1)
Enhances: python-pylons, python-turbogears, python-pygments
XB-Python-Version: ${python:Versions}
-Description: hyperfast and lightweight templating for the Python platform
+Description: fast and lightweight templating for the Python platform
Mako is a template library written in Python. It provides a familiar, non-XML
syntax which compiles into Python modules for maximum performance. Mako's
syntax and API borrows from the best ideas of many others, including Django
Modified: packages/mako/trunk/debian/doc-base
===================================================================
--- packages/mako/trunk/debian/doc-base 2008-06-03 09:47:55 UTC (rev 5544)
+++ packages/mako/trunk/debian/doc-base 2008-06-03 22:04:50 UTC (rev 5545)
@@ -9,7 +9,7 @@
the familiar ideas of componentized layout and inheritance to produce one of
the most straightforward and flexible models available, while also maintaining
close ties to Python calling and scoping semantics.
-Section: Apps/Programming
+Section: Programming/Python
Format: HTML
Index: /usr/share/doc/python-mako/doc/index.html
Added: packages/mako/trunk/debian/mako-render.1
===================================================================
--- packages/mako/trunk/debian/mako-render.1 (rev 0)
+++ packages/mako/trunk/debian/mako-render.1 2008-06-03 22:04:50 UTC (rev 5545)
@@ -0,0 +1,30 @@
+.TH MAKO\-RENDER 1 "june 3, 2008"
+.SH NAME
+mako\-render \- renders Mako templates
+.SH SYNOPSIS
+.B mako\-render
+.RI [FILE]
+.br
+.SH DESCRIPTION
+This manual page documents briefly the
+.B mako\-render
+command.
+.PP
+\fBmako\-render\fP is a standalone utility that can render Mako templates.
+Mako is a fast Python-powered template engine.
+.BR
+If FILE is a single "-", standard input will be used as a template source.
+.SH OPTIONS
+These programs follow the usual GNU command line syntax, with long
+options starting with two dashes (`-').
+A summary of options is included below.
+.TP
+.B \-h, \-\-help
+Show summary of options.
+.BR
+.SH AUTHOR
+mako\-render script was written by Miki Tebeka <miki.tebeka at gmail.com>,
+Mako was written by Mike Bayer <mike at zzzcomputing.com>.
+.PP
+This manual page was written by Piotr Ożarowski <piotr at debian.org>,
+for the Debian project (but may be used by others).
Added: packages/mako/trunk/debian/manpages
===================================================================
--- packages/mako/trunk/debian/manpages (rev 0)
+++ packages/mako/trunk/debian/manpages 2008-06-03 22:04:50 UTC (rev 5545)
@@ -0,0 +1 @@
+debian/mako-render.1
Modified: packages/mako/trunk/debian/rules
===================================================================
--- packages/mako/trunk/debian/rules 2008-06-03 09:47:55 UTC (rev 5544)
+++ packages/mako/trunk/debian/rules 2008-06-03 22:04:50 UTC (rev 5545)
@@ -25,6 +25,8 @@
# share Egg dir
mv debian/python-mako/usr/lib/python$*/site-packages/Mako-${DEB_UPSTREAM_VERSION}-py$*.egg-info \
debian/python-mako/usr/lib/python$*/site-packages/Mako-${DEB_UPSTREAM_VERSION}.egg-info
+ # use default Python version in shebang
+ sed -i -e '1s,usr/bin/.*,usr/bin/python,' $(CURDIR)/debian/python-mako/usr/bin/mako-render
binary-indep: build install
dh_testdir -i
@@ -32,6 +34,7 @@
dh_installchangelogs -i CHANGES
dh_installdocs -i
dh_installexamples -i
+ dh_installman -i
rm -rf debian/python-mako/usr/share/doc/python-mako/doc/build
dh_pycentral -i
dh_compress -i -X.py -Xmakotemplates.txt
More information about the Python-modules-commits
mailing list