[Python-modules-commits] r6024 - in packages/python-tempita/trunk (7 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Tue Jul 22 21:52:11 UTC 2008


    Date: Tuesday, July 22, 2008 @ 21:52:10
  Author: piotr
Revision: 6024

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/python-tempita/trunk/debian/
  packages/python-tempita/trunk/debian/changelog
  packages/python-tempita/trunk/debian/compat
  packages/python-tempita/trunk/debian/control
  packages/python-tempita/trunk/debian/copyright
  packages/python-tempita/trunk/debian/rules
  packages/python-tempita/trunk/debian/watch


Property changes on: packages/python-tempita/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/python-tempita/trunk/debian/changelog
===================================================================
--- packages/python-tempita/trunk/debian/changelog	                        (rev 0)
+++ packages/python-tempita/trunk/debian/changelog	2008-07-22 21:52:10 UTC (rev 6024)
@@ -0,0 +1,25 @@
+python-tempita (0.2-1) unstable; urgency=low
+
+  * New upstream release
+  * python, python-all-dev, python-support, and python-setuptools build
+    dependencies moved to Build-Depends-Indep
+  * Vcs-Svn and Vcs-Browser fields added in debian/control
+  * debian/watch file added
+  * Bump Standards-Version to 3.8.0 (no changes needed)
+  * Change Priority to optional
+  * Move team name to Maintainer field, add myself to Uploaders
+
+ -- Piotr Ożarowski <piotr at debian.org>  Tue, 22 Jul 2008 23:37:59 +0200
+
+python-tempita (0.1-2) unstable; urgency=low
+
+  * Removed unused remains of dpatch from debian/rules (Closes: #482204)
+
+ -- Christoph Haas <haas at debian.org>  Wed, 21 May 2008 20:15:04 +0200
+
+python-tempita (0.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #476831)
+
+ -- Christoph Haas <haas at debian.org>  Sat, 19 Apr 2008 14:47:06 +0200
+

Added: packages/python-tempita/trunk/debian/compat
===================================================================
--- packages/python-tempita/trunk/debian/compat	                        (rev 0)
+++ packages/python-tempita/trunk/debian/compat	2008-07-22 21:52:10 UTC (rev 6024)
@@ -0,0 +1 @@
+5

Added: packages/python-tempita/trunk/debian/control
===================================================================
--- packages/python-tempita/trunk/debian/control	                        (rev 0)
+++ packages/python-tempita/trunk/debian/control	2008-07-22 21:52:10 UTC (rev 6024)
@@ -0,0 +1,18 @@
+Source: python-tempita
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Christoph Haas <haas at debian.org>, Piotr Ożarowski <piotr at debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: python (>= 2.3.3), python-all-dev, python-support (>= 0.6.4), python-setuptools (>= 0.6b3-1~)
+Standards-Version: 3.8.0
+XS-Python-Version: all
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-tempita/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/python-tempita/trunk/?op=log
+
+Package: python-tempita
+Architecture: all
+Depends: ${python:Depends}, python
+Description: very small text templating language
+ Tempita is a small and simple Python text templating language mainly used
+ by Paster (python-pastescript) to roll out new projects.

Added: packages/python-tempita/trunk/debian/copyright
===================================================================
--- packages/python-tempita/trunk/debian/copyright	                        (rev 0)
+++ packages/python-tempita/trunk/debian/copyright	2008-07-22 21:52:10 UTC (rev 6024)
@@ -0,0 +1,39 @@
+This package was debianized by Christoph Haas <haas at debian.org> on
+Sat, 19 Apr 2008 14:47:06 +0200.
+
+It was downloaded from http://pypi.python.org/pypi/Tempita/
+
+Upstream Authors: 
+
+    Ian Bicking <ianb at colorstudy.com>
+
+Copyright: 
+
+    Copyright © 2008 Ian Bicking
+
+License (MIT):
+
+    Permission is hereby granted, free of charge, to any person
+    obtaining a copy of this software and associated documentation
+    files (the "Software"), to deal in the Software without
+    restriction, including without limitation the rights to use,
+    copy, modify, merge, publish, distribute, sublicense, and/or sell
+    copies of the Software, and to permit persons to whom the
+    Software is furnished to do so, subject to the following
+    conditions:
+
+    The above copyright notice and this permission notice shall be
+    included in all copies or substantial portions of the Software.
+
+    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+    OTHER DEALINGS IN THE SOFTWARE.
+
+The Debian packaging is (C) 2008, Christoph Haas <haas at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: packages/python-tempita/trunk/debian/rules
===================================================================
--- packages/python-tempita/trunk/debian/rules	                        (rev 0)
+++ packages/python-tempita/trunk/debian/rules	2008-07-22 21:52:10 UTC (rev 6024)
@@ -0,0 +1,45 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+package=python-tempita
+
+clean:
+	rm -f build-*
+	dh_testdir
+	dh_testroot
+	rm -rf build
+	find . -name *\.py[co] -exec rm -f {} \;
+	dh_clean
+
+build:
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+	python setup.py install \
+		--no-compile \
+		--single-version-externally-managed \
+		--root $(CURDIR)/debian/$(package)
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs
+	dh_installdocs
+	dh_installexamples
+	dh_compress -X.py
+	dh_fixperms
+	dh_pysupport
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary-arch:
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
+


Property changes on: packages/python-tempita/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/python-tempita/trunk/debian/watch
===================================================================
--- packages/python-tempita/trunk/debian/watch	                        (rev 0)
+++ packages/python-tempita/trunk/debian/watch	2008-07-22 21:52:10 UTC (rev 6024)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/T/Tempita/Tempita-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list