[Python-modules-commits] r9740 - in packages/jinja2/trunk/debian (5 files)

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Sun Sep 13 18:03:15 UTC 2009


    Date: Sunday, September 13, 2009 @ 18:02:57
  Author: piotr
Revision: 9740

* New upstream release (Closes: #536227)
* No longer needed patches:
  - changes_for_sphinx_0.6.patch
  - dont_install_docs_via_setup_py.patch
* pass --with-speedups to setup.py (building extension is now disabled by
  default in upstream code)
* debian/copyright file updated
* Standards-version bumped to 3.8.3 (no other changes needed)

Modified:
  packages/jinja2/trunk/debian/changelog
  packages/jinja2/trunk/debian/control
  packages/jinja2/trunk/debian/copyright
  packages/jinja2/trunk/debian/rules
Deleted:
  packages/jinja2/trunk/debian/patches/

Modified: packages/jinja2/trunk/debian/changelog
===================================================================
--- packages/jinja2/trunk/debian/changelog	2009-09-11 22:32:45 UTC (rev 9739)
+++ packages/jinja2/trunk/debian/changelog	2009-09-13 18:02:57 UTC (rev 9740)
@@ -1,9 +1,20 @@
-jinja2 (2.1.1-4) UNRELEASED; urgency=low
+jinja2 (2.2-1) unstable; urgency=low
 
+  [ Jakub Wilk ]
   * Build depend on Sphinx >= 0.6 (due to changes_for_sphinx_0.6 patch)
 
- -- Jakub Wilk <ubanus at users.sf.net>  Thu, 09 Jul 2009 13:01:02 +0200
+  [ Piotr Ożarowski ]
+  * New upstream release (Closes: #536227)
+  * No longer needed patches:
+    - changes_for_sphinx_0.6.patch
+    - dont_install_docs_via_setup_py.patch
+  * pass --with-speedups to setup.py (building extension is now disabled by
+    default in upstream code)
+  * debian/copyright file updated
+  * Standards-version bumped to 3.8.3 (no other changes needed)
 
+ -- Piotr Ożarowski <piotr at debian.org>  Sun, 13 Sep 2009 16:44:18 +0200
+
 jinja2 (2.1.1-3) unstable; urgency=low
 
   * Documentation builds fine with new Sphinx now, thanks to

Modified: packages/jinja2/trunk/debian/control
===================================================================
--- packages/jinja2/trunk/debian/control	2009-09-11 22:32:45 UTC (rev 9739)
+++ packages/jinja2/trunk/debian/control	2009-09-13 18:02:57 UTC (rev 9740)
@@ -3,10 +3,10 @@
 Priority: optional
 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), quilt (>= 0.40), python-support (>= 0.6.4),
+Build-Depends: debhelper (>= 5), python-support (>= 0.6.4),
  python-setuptools (>= 0.6b3-1~), python-all-dev (>= 2.3.5-11), python-all-dbg
 Build-Depends-Indep: python-sphinx (>= 0.6), python-pygments
-Standards-Version: 3.8.2
+Standards-Version: 3.8.3
 Homepage: http://jinja.pocoo.org/2/
 XS-Python-Version: >= 2.4
 Vcs-Svn: svn://svn.debian.org/python-modules/packages/jinja2/trunk

Modified: packages/jinja2/trunk/debian/copyright
===================================================================
--- packages/jinja2/trunk/debian/copyright	2009-09-11 22:32:45 UTC (rev 9739)
+++ packages/jinja2/trunk/debian/copyright	2009-09-13 18:02:57 UTC (rev 9740)
@@ -3,10 +3,9 @@
 
 It was downloaded from http://pypi.python.org/pypi/Jinja2
 
-Copyright Holder: Armin Ronacher <armin.ronacher at active-4.com>
+Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details.
 
-Copyright (c) 2006-2008 by the respective authors (see AUTHORS file).
-All rights reserved.
+Some rights reserved.
 
 License:
 

Modified: packages/jinja2/trunk/debian/rules
===================================================================
--- packages/jinja2/trunk/debian/rules	2009-09-11 22:32:45 UTC (rev 9739)
+++ packages/jinja2/trunk/debian/rules	2009-09-13 18:02:57 UTC (rev 9740)
@@ -2,12 +2,10 @@
 
 #export DH_VERBOSE=1
 
-include /usr/share/quilt/quilt.make
-
 PYVERS=$(shell pyversions -vr)
 PKGDIR=$(CURDIR)/debian/python-jinja2
 
-clean: unpatch
+clean:
 	dh_testdir
 	dh_testroot
 	rm -rf dist build Jinja2.egg-info
@@ -19,17 +17,17 @@
 		$(PYVERS:%=install-python%) $(PYVERS:%=build-python%) \
 		$(PYVERS:%=install-debug-python%) $(PYVERS:%=build-debug-python%)
 
-build: patch build-stamp
+build: build-stamp
 
 build-stamp: $(PYVERS:%=build-python%) $(PYVERS:%=build-debug-python%)
 	touch $@
 
-build-python%: patch
-	python$* setup.py build
+build-python%:
+	python$* setup.py --with-speedups build
 	touch $@
 
-build-debug-python%: patch
-	python$*-dbg setup.py build
+build-debug-python%:
+	python$*-dbg setup.py --with-speedups build
 	touch $@
 
 build-docs:
@@ -41,12 +39,12 @@
 	touch $@
 
 install-python%: build
-	python$* setup.py install \
+	python$* setup.py --with-speedups install \
 		--skip-build --single-version-externally-managed --root $(PKGDIR)
 	touch $@
 
 install-debug-python%: build
-	python$*-dbg setup.py install \
+	python$*-dbg setup.py --with-speedups install \
 		--skip-build --single-version-externally-managed --root $(PKGDIR)-dbg/
 	find $(PKGDIR)-dbg/usr/ ! -type d ! -name '*_d\.so' -delete
 	find $(PKGDIR)-dbg/usr/ -depth -empty -delete




More information about the Python-modules-commits mailing list