[Python-modules-commits] r33879 - in packages/django-jinja/trunk (9 files)
edward at users.alioth.debian.org
edward at users.alioth.debian.org
Wed Aug 19 18:09:14 UTC 2015
Date: Wednesday, August 19, 2015 @ 18:09:13
Author: edward
Revision: 33879
[svn-inject] Applying Debian modifications (1.4.1-1) to trunk
Added:
packages/django-jinja/trunk/debian/
packages/django-jinja/trunk/debian/changelog
packages/django-jinja/trunk/debian/compat
packages/django-jinja/trunk/debian/control
packages/django-jinja/trunk/debian/copyright
packages/django-jinja/trunk/debian/rules
packages/django-jinja/trunk/debian/source/
packages/django-jinja/trunk/debian/source/format
packages/django-jinja/trunk/debian/watch
Property changes on: packages/django-jinja/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/django-jinja/trunk/debian/changelog
===================================================================
--- packages/django-jinja/trunk/debian/changelog (rev 0)
+++ packages/django-jinja/trunk/debian/changelog 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1,5 @@
+django-jinja (1.4.1-1) UNRELEASED; urgency=low
+
+ * Initial release. (Closes: #783793)
+
+ -- Edward Betts <edward at 4angle.com> Wed, 19 Aug 2015 14:47:20 +0200
Added: packages/django-jinja/trunk/debian/compat
===================================================================
--- packages/django-jinja/trunk/debian/compat (rev 0)
+++ packages/django-jinja/trunk/debian/compat 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1 @@
+9
Added: packages/django-jinja/trunk/debian/control
===================================================================
--- packages/django-jinja/trunk/debian/control (rev 0)
+++ packages/django-jinja/trunk/debian/control 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1,53 @@
+Source: django-jinja
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Edward Betts <edward at 4angle.com>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ python-all (>= 2.6.6-3),
+ python-setuptools (>= 0.6b3),
+ python3-all,
+ python3-setuptools
+Standards-Version: 3.9.6
+Homepage: https://github.com/niwibe/django-jinja
+
+Package: python-django-jinja
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Jinja2 templating language integrated in Django.
+ Jinja2 provides certain advantages over the native system of Django, for
+ example, explicit calls to callable from templates, has better performance
+ and has a plugin system
+ .
+ Features:
+ .
+ * Auto-load templatetags compatible with Jinja2 on same way as Django.
+ * Django templates can coexist with Jinja2 templates without any problems.
+ It works as middleware, intercepts Jinja templates by file path pattern.
+ * Django template filters and tags can mostly be used in Jinja2 templates.
+ * I18n subsystem adapted for Jinja2 (makemessages now collects messages
+ from Jinja templates)
+ * Compatible with python2 and python3 using same codebase.
+ * jinja2 bytecode cache adapted for use django cache subsystem.
+
+Package: python3-django-jinja
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Jinja2 templating language integrated in Django.
+ Jinja2 provides certain advantages over the native system of Django, for
+ example, explicit calls to callable from templates, has better performance
+ and has a plugin system
+ .
+ Features:
+ .
+ * Auto-load templatetags compatible with Jinja2 on same way as Django.
+ * Django templates can coexist with Jinja2 templates without any problems.
+ It works as middleware, intercepts Jinja templates by file path pattern.
+ * Django template filters and tags can mostly be used in Jinja2 templates.
+ * I18n subsystem adapted for Jinja2 (makemessages now collects messages
+ from Jinja templates)
+ * Compatible with python2 and python3 using same codebase.
+ * jinja2 bytecode cache adapted for use django cache subsystem.
+ .
+ This package contains fuzzywuzzy for Python 3.
Added: packages/django-jinja/trunk/debian/copyright
===================================================================
--- packages/django-jinja/trunk/debian/copyright (rev 0)
+++ packages/django-jinja/trunk/debian/copyright 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1,36 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-jinja
+Upstream-Contact: Andrey Antukh <niwi at niwi.be>
+Source: https://github.com/niwibe/django-jinja
+
+Files: *
+Copyright: 2012-2013, Andrey Antukh <niwi at niwi.be>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015, Edward Betts
+License: BSD-3-clause
+
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ * Neither the name of the tastypie nor the
+ names of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL tastypie BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Added: packages/django-jinja/trunk/debian/rules
===================================================================
--- packages/django-jinja/trunk/debian/rules (rev 0)
+++ packages/django-jinja/trunk/debian/rules 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=django-jinja
+%:
+ dh $@ --with python2,python3 --buildsystem=pybuild
+
Property changes on: packages/django-jinja/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/django-jinja/trunk/debian/source/format
===================================================================
--- packages/django-jinja/trunk/debian/source/format (rev 0)
+++ packages/django-jinja/trunk/debian/source/format 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/django-jinja/trunk/debian/watch
===================================================================
--- packages/django-jinja/trunk/debian/watch (rev 0)
+++ packages/django-jinja/trunk/debian/watch 2015-08-19 18:09:13 UTC (rev 33879)
@@ -0,0 +1,4 @@
+# please also check http://pypi.debian.net/django-jinja/watch
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/django-jinja/django-jinja-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file
More information about the Python-modules-commits
mailing list