--- templayer-1.5.1.orig/debian/.git-dpm +++ templayer-1.5.1/debian/.git-dpm @@ -0,0 +1,11 @@ +# see git-dpm(1) from git-dpm package +1f0b85940bca6fa0a9308b4b5b50f7f80c8659ab +1f0b85940bca6fa0a9308b4b5b50f7f80c8659ab +1f0b85940bca6fa0a9308b4b5b50f7f80c8659ab +1f0b85940bca6fa0a9308b4b5b50f7f80c8659ab +templayer_1.5.1.orig.tar.gz +ffdf9df4b9fb61da388bf9f1762ddeeb4f370952 +35788 +debianTag="debian/%e%v" +patchedTag="patched/%e%v" +upstreamTag="upstream/%e%u" --- templayer-1.5.1.orig/debian/changelog +++ templayer-1.5.1/debian/changelog @@ -0,0 +1,70 @@ +templayer (1.5.1-3) unstable; urgency=medium + + [Ondřej Nový] + * Fixed VCS URL (https) + + [ Andrey Rahmatullin ] + * Fix FTBFS (Closes: #830350) + + -- Andrey Rahmatullin Sat, 19 Nov 2016 21:31:48 +0500 + +templayer (1.5.1-2) unstable; urgency=medium + + [ Jakub Wilk ] + * Use canonical URIs for Vcs-* fields. + * Drop obsolete Conflicts/Replaces with python2.X-templayer. + + [ Andrey Rahmatullin ] + * Port from python-support to dh-python (Closes: #786102) + * Drop unused debian/{pycompat,pyversions} + + -- Debian Python Modules Team Mon, 24 Aug 2015 19:16:38 +0500 + +templayer (1.5.1-1) unstable; urgency=low + + [ Ian Ward ] + * New upstream release + + [ Piotr Ożarowski ] + * Vcs-Browser and Homepage fields added + * XS-Vcs-Svn field renamed to Vcs-Svn + + [ Paul Wise ] + * Remove myself from uploaders + + -- Ian Ward Sat, 14 Mar 2009 00:13:23 +0000 + +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.5.1.orig/debian/compat +++ templayer-1.5.1/debian/compat @@ -0,0 +1 @@ +5 --- templayer-1.5.1.orig/debian/control +++ templayer-1.5.1/debian/control @@ -0,0 +1,26 @@ +Source: templayer +Section: python +Priority: optional +Maintainer: Debian Python Modules Team +Uploaders: Ian Ward +Build-Depends: dh-python, debhelper (>= 5.0.37.2), cdbs (>= 0.4.42), python +Standards-Version: 3.8.1 +Homepage: http://excess.org/templayer/ +Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/templayer.git +Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/templayer.git + +Package: python-templayer +Architecture: all +Depends: ${python:Depends}, ${misc:Depends} +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. --- templayer-1.5.1.orig/debian/copyright +++ templayer-1.5.1/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.5.1.orig/debian/docs +++ templayer-1.5.1/debian/docs @@ -0,0 +1,2 @@ +build/tutorial.html +build/reference.html --- templayer-1.5.1.orig/debian/examples +++ templayer-1.5.1/debian/examples @@ -0,0 +1 @@ +examples/* --- templayer-1.5.1.orig/debian/rules +++ templayer-1.5.1/debian/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f + +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*/dist-packages/templayer.py + +clean:: + rm -rf build examples build-docs-test-stamp --- templayer-1.5.1.orig/debian/source/format +++ templayer-1.5.1/debian/source/format @@ -0,0 +1 @@ +1.0 --- templayer-1.5.1.orig/debian/watch +++ templayer-1.5.1/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://excess.org/templayer/templayer-(.*)\.tar\.gz debian svn-upgrade