[Python-modules-commits] r1215 - in /packages/jinja/trunk/debian: ./ changelog compat control copyright docs rules watch

pox-guest at users.alioth.debian.org pox-guest at users.alioth.debian.org
Sat Jul 29 16:44:21 UTC 2006


Author: pox-guest
Date: Sat Jul 29 16:44:21 2006
New Revision: 1215

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1215
Log:
Load newtrunk into packages/jinja/trunk.

Added:
    packages/jinja/trunk/debian/
    packages/jinja/trunk/debian/changelog
    packages/jinja/trunk/debian/compat
    packages/jinja/trunk/debian/control
    packages/jinja/trunk/debian/copyright
    packages/jinja/trunk/debian/docs
    packages/jinja/trunk/debian/rules   (with props)
    packages/jinja/trunk/debian/watch

Added: packages/jinja/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/changelog?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/changelog (added)
+++ packages/jinja/trunk/debian/changelog Sat Jul 29 16:44:21 2006
@@ -1,0 +1,6 @@
+jinja (0.8-1) unstable; urgency=low
+
+  * Initial release (closes: #380366)
+
+ -- Piotr Ozarowski <ozarow at gmail.com>  Sat, 29 Jul 2006 16:57:56 +0200
+

Added: packages/jinja/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/compat?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/compat (added)
+++ packages/jinja/trunk/debian/compat Sat Jul 29 16:44:21 2006
@@ -1,0 +1,1 @@
+5

Added: packages/jinja/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/control?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/control (added)
+++ packages/jinja/trunk/debian/control Sat Jul 29 16:44:21 2006
@@ -1,0 +1,25 @@
+Source: jinja
+Section: python
+Priority: optional
+Maintainer: Piotr Ozarowski <ozarow at gmail.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5.0.37.2)
+Build-Depends-Indep: python (>= 2.3.5-11), python-all-dev, python-central (>= 0.5), python-setuptools (>= 0.6b3-1)
+Standards-Version: 3.7.2
+XS-Python-Version: all
+
+Package: python-jinja
+Architecture: all
+Depends: ${python:Depends}
+Recommends: python-textile (>=2.0.10-3.1), python-markdown (>=1.4-2), python-xml (>= 0.8.4-5), python-setuptools (>= 0.6b3-1)
+XB-Python-Version: ${python:Versions}
+Description: simple pythonic template language
+ Jinja is a text-based template language similar to Cheetah and Smarty.
+ The syntax and parts of the code where taken from the django template.
+ .
+ Like the django template, Jinja tries to simplify templating but provide a
+ powerful syntax. The idea is to remove all application logic from the
+ template. Sounds limited but you should have a look at the example below to
+ see the power behind the system.
+ .
+  Homepage: http://wsgiarea.pocoo.org/jinja/

Added: packages/jinja/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/copyright?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/copyright (added)
+++ packages/jinja/trunk/debian/copyright Sat Jul 29 16:44:21 2006
@@ -1,0 +1,19 @@
+This package was debianized by Piotr Ozarowski <ozarow at gmail.com> on
+Thu, 29 Jul 2006 16:57:00 +0200.
+
+It was downloaded from http://wsgiarea.pocoo.org/jinja/dist/
+
+Copyright Holder: Armin Ronacher <armin.ronacher at active-4.com>
+
+License: BSD
+
+Copyright (c) 2005 Armin Ronacher
+
+On Debian systems, the complete text of the BSD License
+can be found in `/usr/share/common-licenses/BSD'
+
+The Debian packaging is (C) 2006, Piotr Ozarowski <ozarow at gmail.com> and
+is licensed under the GPL.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in `/usr/share/common-licenses/GPL'.

Added: packages/jinja/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/docs?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/docs (added)
+++ packages/jinja/trunk/debian/docs Sat Jul 29 16:44:21 2006
@@ -1,0 +1,1 @@
+docs/build

Added: packages/jinja/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/rules?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/rules (added)
+++ packages/jinja/trunk/debian/rules Sat Jul 29 16:44:21 2006
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+DEB_UPSTREAM_VERSION=$(shell dpkg-parsechangelog \
+	| grep ^Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
+
+PYVERS=$(shell pyversions -vr debian/control)
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-*
+	rm -rf dist build
+	find . -name *\.py[co] -exec rm {} \;
+	dh_clean
+
+build: build-stamp
+build-stamp: $(PYVERS:%=build-python%)
+	touch $@
+build-python%:
+	python$* setup.py build
+	touch $@
+install: build $(PYVERS:%=install-python%)
+install-python%:
+	python$* setup.py install \
+		--single-version-externally-managed \
+		--root $(CURDIR)/debian/python-jinja
+	# share Egg dir
+	mv debian/python-jinja/usr/lib/python$*/site-packages/Jinja-${DEB_UPSTREAM_VERSION}-py$*.egg-info \
+	   debian/python-jinja/usr/lib/python$*/site-packages/Jinja-${DEB_UPSTREAM_VERSION}.egg-info
+
+binary-indep: build install
+	dh_testdir -i
+	dh_testroot -i
+	dh_installchangelogs -i
+	dh_installdocs -i
+	mv debian/python-jinja/usr/share/doc/python-jinja/build \
+	   debian/python-jinja/usr/share/doc/python-jinja/docs
+	dh_installexamples  -i
+	dh_pycentral -i
+	dh_python -i
+	dh_strip -i
+	dh_compress -i -X.py
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_shlibdeps -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+binary-arch:
+
+binary: binary-indep binary-arch
+
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: packages/jinja/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: packages/jinja/trunk/debian/watch
URL: http://svn.debian.org/wsvn/python-modules/packages/jinja/trunk/debian/watch?rev=1215&op=file
==============================================================================
--- packages/jinja/trunk/debian/watch (added)
+++ packages/jinja/trunk/debian/watch Sat Jul 29 16:44:21 2006
@@ -1,0 +1,2 @@
+version=3
+http://wsgiarea.pocoo.org/jinja/dist/Jinja-(.+).tar.gz




More information about the Python-modules-commits mailing list