[Python-modules-commits] r30445 - in packages/django-sekizai/trunk/debian (3 files)
fladi-guest at users.alioth.debian.org
fladi-guest at users.alioth.debian.org
Mon Sep 1 08:57:28 UTC 2014
Date: Monday, September 1, 2014 @ 08:56:20
Author: fladi-guest
Revision: 30445
Add Python3 support.
Added:
packages/django-sekizai/trunk/debian/python3-django-sekizai.lintian-overrides
Modified:
packages/django-sekizai/trunk/debian/control
packages/django-sekizai/trunk/debian/rules
Modified: packages/django-sekizai/trunk/debian/control
===================================================================
--- packages/django-sekizai/trunk/debian/control 2014-09-01 08:50:30 UTC (rev 30444)
+++ packages/django-sekizai/trunk/debian/control 2014-09-01 08:56:20 UTC (rev 30445)
@@ -10,9 +10,14 @@
python-django (>= 1.5),
python-django-classy-tags,
python-setuptools,
- python-sphinx (>= 1.0.7+dfsg)
+ python-sphinx (>= 1.0.7+dfsg),
+ python3-all,
+ python3-django (>= 1.5),
+ python3-django-classy-tags,
+ python3-setuptools
Standards-Version: 3.9.5
X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.0
Homepage: http://django-sekizai.readthedocs.org/
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-sekizai/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-sekizai/trunk/
@@ -34,6 +39,25 @@
just like you should. Also sekizai will ignore any duplicate content in
a single block.
+Package: python3-django-sekizai
+Architecture: all
+Depends: python3-django,
+ python3-django-classy-tags,
+ ${misc:Depends},
+ ${python3:Depends}
+Suggests: python-django-sekizai-doc
+Description: template blocks for Django projects (Python3 version)
+ Sekizai means âblocksâ in Japanese, and thatâs what this app provides.
+ A fresh look at blocks. With django-sekizai you can define placeholders
+ where your blocks get rendered and at different places in your templates
+ append to those blocks. This is especially useful for css and javascript.
+ Your subtemplates can now define css and javscript files to be included,
+ and the css will be nicely put at the top and the javascript to the bottom,
+ just like you should. Also sekizai will ignore any duplicate content in
+ a single block.
+ .
+ This package contains the Python 3 version of the library.
+
Package: python-django-sekizai-doc
Section: doc
Architecture: all
Added: packages/django-sekizai/trunk/debian/python3-django-sekizai.lintian-overrides
===================================================================
--- packages/django-sekizai/trunk/debian/python3-django-sekizai.lintian-overrides (rev 0)
+++ packages/django-sekizai/trunk/debian/python3-django-sekizai.lintian-overrides 2014-09-01 08:56:20 UTC (rev 30445)
@@ -0,0 +1,2 @@
+# Upstream does not provide a separate changelog.
+python3-django-sekizai: no-upstream-changelog
Modified: packages/django-sekizai/trunk/debian/rules
===================================================================
--- packages/django-sekizai/trunk/debian/rules 2014-09-01 08:50:30 UTC (rev 30444)
+++ packages/django-sekizai/trunk/debian/rules 2014-09-01 08:56:20 UTC (rev 30445)
@@ -6,7 +6,7 @@
export PYBUILD_NAME=django-sekizai
%:
- dh $@ --with python2,sphinxdoc --buildsystem=pybuild
+ dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_build:
dh_auto_build
@@ -15,7 +15,7 @@
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
set -e; \
- for python in $(shell pyversions -r); do \
+ for python in $(shell pyversions -r) $(shell py3versions -r); do \
PYTHONPATH="." $$python runtests.py; \
done
endif
More information about the Python-modules-commits
mailing list