--- templayer-1.4.orig/debian/docs +++ templayer-1.4/debian/docs @@ -0,0 +1,2 @@ +build/tutorial.html +build/reference.html --- templayer-1.4.orig/debian/control +++ templayer-1.4/debian/control @@ -0,0 +1,28 @@ +Source: templayer +Section: python +Priority: optional +Maintainer: Debian Python Modules Team +Uploaders: Paul Wise , Ian Ward +Build-Depends: python-support (>= 0.3), debhelper (>= 5.0.37.2), cdbs (>= 0.4.42), python +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/templayer/trunk/ + +Package: python-templayer +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +Replaces: python2.1-templayer, python2.2-templayer, python2.3-templayer, python2.4-templayer +Conflicts: python2.1-templayer, python2.2-templayer, python2.3-templayer, python2.4-templayer +Provides: ${python:Provides} +Description: layered template library for Python + Templayer currently supports only HTML generation, but its simple design + is easily extended to support other file formats. + . + Templayer was created to offer an alternative to the more common ways + of generating dynamic HTML: embedding code within the HTML (PHP etc.), + or embedding HTML within code (traditional CGI). Neither of these + methods allow for a clean separation of the form, or layout, of a page + and the function of page generation. Instead of mixing HTML and Python, + two rich and extremely expressive languages, we can add a small amount + of syntax to each and keep the two separate and coherent. + . + Homepage: http://excess.org/templayer/ --- templayer-1.4.orig/debian/rules +++ templayer-1.4/debian/rules @@ -0,0 +1,22 @@ +#!/usr/bin/make -f + +DEB_PYTHON_SYSTEM = pysupport + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/python-distutils.mk + +build/python-templayer:: build-docs-test-stamp +build-docs-test-stamp: + python docgen_reference.py > build/reference.html + python docgen_tutorial.py -H > build/tutorial.html + mkdir examples + cp tmpl_tutorial.html examples + cd examples; python ../docgen_tutorial.py -s + rm examples/tmpl_tutorial.html + touch build-docs-test-stamp + +install/python-templayer:: + chmod a+x debian/python-templayer/usr/lib/python*/site-packages/templayer.py + +clean:: + rm -rf build examples build-docs-test-stamp --- templayer-1.4.orig/debian/watch +++ templayer-1.4/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://excess.org/templayer/templayer-(.*)\.tar\.gz debian svn-upgrade --- templayer-1.4.orig/debian/changelog +++ templayer-1.4/debian/changelog @@ -0,0 +1,34 @@ +templayer (1.4-2) unstable; urgency=low + + [ Piotr Ozarowski ] + * Added XS-Vcs-Svn field + + [ Ian Ward ] + * Fix Provides: line (Closes: #399941) + + [ Paul Wise ] + * Change my email address now that I'm a Debian Developer + + -- Paul Wise Tue, 15 May 2007 17:33:29 +1000 + +templayer (1.4-1) unstable; urgency=low + + * New upstream release + + -- Ian Ward Mon, 25 Sep 2006 16:58:14 +0000 + +templayer (1.3-1) unstable; urgency=low + + * New upstream release + - add new tutorial and reference documentation + - add examples generated by tutorial + - remove old example + + -- Ian Ward Wed, 30 Aug 2006 16:42:45 +0000 + +templayer (1.2-2-1) unstable; urgency=low + + * Initial release (Closes: #374440) + + -- Paul Wise Mon, 19 Jun 2006 18:41:58 +0800 + --- templayer-1.4.orig/debian/pyversions +++ templayer-1.4/debian/pyversions @@ -0,0 +1 @@ +2.1- --- templayer-1.4.orig/debian/compat +++ templayer-1.4/debian/compat @@ -0,0 +1 @@ +5 --- templayer-1.4.orig/debian/pycompat +++ templayer-1.4/debian/pycompat @@ -0,0 +1 @@ +2 --- templayer-1.4.orig/debian/copyright +++ templayer-1.4/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by Paul Wise on +Tue, 28 Mar 2006 18:07:55 +0800. + +It was downloaded from http://excess.org/templayer/ + +Upstream Author: + + Ian Ward + +Copyright: + + Copyright (C) 2003-2006 Ian Ward + +License: + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + +On Debian GNU/Linux systems, the complete text of the GNU Lesser General +Public License can be found in `/usr/share/common-licenses/LGPL'. + +The Debian packaging is placed in the public domain and +is written by Paul Wise --- templayer-1.4.orig/debian/examples +++ templayer-1.4/debian/examples @@ -0,0 +1 @@ +examples/*