[Python-modules-commits] r28541 - in packages/django-classy-tags/trunk (17 files)
fladi-guest at users.alioth.debian.org
fladi-guest at users.alioth.debian.org
Thu Apr 17 10:52:58 UTC 2014
Date: Thursday, April 17, 2014 @ 10:52:57
Author: fladi-guest
Revision: 28541
Move to DPMT (Closes: #676401).
Added:
packages/django-classy-tags/trunk/debian/
packages/django-classy-tags/trunk/debian/changelog
packages/django-classy-tags/trunk/debian/clean
packages/django-classy-tags/trunk/debian/compat
packages/django-classy-tags/trunk/debian/control
packages/django-classy-tags/trunk/debian/copyright
packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.doc-base
packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.docs
packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.lintian-overrides
packages/django-classy-tags/trunk/debian/python-django-classy-tags.docs
packages/django-classy-tags/trunk/debian/python-django-classy-tags.install
packages/django-classy-tags/trunk/debian/python-django-classy-tags.lintian-overrides
packages/django-classy-tags/trunk/debian/rules
packages/django-classy-tags/trunk/debian/source/
packages/django-classy-tags/trunk/debian/source/format
packages/django-classy-tags/trunk/debian/source/lintian-overrides
packages/django-classy-tags/trunk/debian/watch
Added: packages/django-classy-tags/trunk/debian/changelog
===================================================================
--- packages/django-classy-tags/trunk/debian/changelog (rev 0)
+++ packages/django-classy-tags/trunk/debian/changelog 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,32 @@
+django-classy-tags (0.5.1-1) UNRELEASED; urgency=medium
+
+ * New upstream release.
+ * Take over maintainership for DPMT and add myself as uploader, Thanks to
+ OndÅej Surý for his work on this package.
+ * Switch to dh_python2.
+ * Change VCS-* fields to reflect moving the repository to subversion.
+ * Remove debian/gbp.conf as DPMT uses subversion.
+ * Bump Standards-Version to 3.9.5.
+ * Bump debhelper version to 9.
+ * Bump minimum Python version to 2.6.
+ * Build documentation using sphinx and ship it in a spearate package.
+ * Add ${python:Depends} to python-django-classy-tags binary package
+ (Closes: #676401).
+ * Make Depends on python-django versioned with (> 1.5).
+ * Convert debian/copyright to copyright format 1.0.
+ * Add myself in debian/copyright.
+ * Run tests during build.
+ + Add python-django (>= 1.5) to Build-Depends.
+ * Clean up files in django_classy_tags.egg-info/ to allow two or more builds
+ in a row.
+ * Add debian/watch file.
+ * Add lintian override for missing PGP signature on upstream tarball.
+ * Add lintian overrides for missing upstream changelog.
+
+ -- Michael Fladischer <FladischerMichael at fladi.at> Thu, 17 Apr 2014 11:10:02 +0200
+
+django-classy-tags (0.3.4.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #660672)
+
+ -- OndÅej Surý <ondrej at debian.org> Mon, 20 Feb 2012 21:25:21 +0100
Added: packages/django-classy-tags/trunk/debian/clean
===================================================================
--- packages/django-classy-tags/trunk/debian/clean (rev 0)
+++ packages/django-classy-tags/trunk/debian/clean 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,7 @@
+django_classy_tags.egg-info/PKG-INFO
+django_classy_tags.egg-info/SOURCES.txt
+django_classy_tags.egg-info/dependency_links.txt
+django_classy_tags.egg-info/not-zip-safe
+django_classy_tags.egg-info/requires.txt
+django_classy_tags.egg-info/top_level.txt
+
Added: packages/django-classy-tags/trunk/debian/compat
===================================================================
--- packages/django-classy-tags/trunk/debian/compat (rev 0)
+++ packages/django-classy-tags/trunk/debian/compat 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1 @@
+9
Added: packages/django-classy-tags/trunk/debian/control
===================================================================
--- packages/django-classy-tags/trunk/debian/control (rev 0)
+++ packages/django-classy-tags/trunk/debian/control 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,60 @@
+Source: django-classy-tags
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <FladischerMichael at fladi.at>,
+ OndÅej Surý <ondrej at debian.org>
+Build-Depends: debhelper (>= 9),
+ python-all,
+ python-django (>= 1.5),
+ python-setuptools,
+ python-sphinx (>= 1.0.7+dfsg)
+Standards-Version: 3.9.5
+X-Python-Version: >= 2.6
+Homepage: https://github.com/ojii/django-classy-tags
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/django-classy-tags/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/django-classy-tags/trunk/
+
+Package: python-django-classy-tags
+Architecture: any
+Depends: python-django (>= 1.5),
+ ${misc:Depends},
+ ${python:Depends}
+Suggests: python-django-classy-tags-doc
+Description: Class based template tags for Django projects
+ django-classy-tags is an approach at making writing template tags in
+ Django easier, shorter and more fun by providing an extensible
+ argument parser which reduces most of the boiler plate code you
+ usually have to write when coding custom template tags.
+ .
+ django-classy-tags does no magic by design. Thus you will not get
+ automatic registering/loading of your tags like other solutions
+ provide. You will not get automatic argument guessing from function
+ signatures but rather you have to declare what arguments your tag
+ accepts. There is also no magic in your template tag class either,
+ itâs just a subclass of django.template.Node which invokes a parser
+ class to parse the arguments when itâs initialized and resolves those
+ arguments into keyword arguments in itâs render method and calls itâs
+ render_tag method with those keyword arguments.
+
+Package: python-django-classy-tags-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, ${sphinxdoc:Depends}
+Description: Class based template tags for Django projects (Documentation)
+ django-classy-tags is an approach at making writing template tags in
+ Django easier, shorter and more fun by providing an extensible
+ argument parser which reduces most of the boiler plate code you
+ usually have to write when coding custom template tags.
+ .
+ django-classy-tags does no magic by design. Thus you will not get
+ automatic registering/loading of your tags like other solutions
+ provide. You will not get automatic argument guessing from function
+ signatures but rather you have to declare what arguments your tag
+ accepts. There is also no magic in your template tag class either,
+ itâs just a subclass of django.template.Node which invokes a parser
+ class to parse the arguments when itâs initialized and resolves those
+ arguments into keyword arguments in itâs render method and calls itâs
+ render_tag method with those keyword arguments.
+ .
+ This package contains the documentation.
Added: packages/django-classy-tags/trunk/debian/copyright
===================================================================
--- packages/django-classy-tags/trunk/debian/copyright (rev 0)
+++ packages/django-classy-tags/trunk/debian/copyright 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-classy-tags
+Upstream-Contact: Jonas Obrist <ojiidotch at gmail.com>
+Source: https://github.com/ojii/django-classy-tags
+
+Files: *
+Copyright: 2010, Jonas Obrist <ojiidotch at gmail.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2012, OndÅej Surý <ondrej at debian.org>
+ 2014, Fladischer Michael <FladischerMichael at fladi.at>
+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 Jonas Obrist 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 JONAS OBRIST 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-classy-tags/trunk/debian/python-django-classy-tags-doc.doc-base
===================================================================
--- packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.doc-base (rev 0)
+++ packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.doc-base 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,8 @@
+Document: python-django-classy-tags-doc
+Title: Dango Classy Tags Documentation
+Author: Jonas Obrist <jonas.obrist at divio.ch>
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-django-classy-tags-doc/html/index.html
+Files: /usr/share/doc/python-django-classy-tags-doc/html/*.html
Added: packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.docs
===================================================================
--- packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.docs (rev 0)
+++ packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.docs 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1 @@
+docs/_build/html
Added: packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.lintian-overrides
===================================================================
--- packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.lintian-overrides (rev 0)
+++ packages/django-classy-tags/trunk/debian/python-django-classy-tags-doc.lintian-overrides 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,2 @@
+# Upstream does not provide a separate changelog.
+python-django-classy-tags-doc: no-upstream-changelog
Added: packages/django-classy-tags/trunk/debian/python-django-classy-tags.docs
===================================================================
--- packages/django-classy-tags/trunk/debian/python-django-classy-tags.docs (rev 0)
+++ packages/django-classy-tags/trunk/debian/python-django-classy-tags.docs 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1 @@
+README.rst
Added: packages/django-classy-tags/trunk/debian/python-django-classy-tags.install
===================================================================
--- packages/django-classy-tags/trunk/debian/python-django-classy-tags.install (rev 0)
+++ packages/django-classy-tags/trunk/debian/python-django-classy-tags.install 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1 @@
+usr/
Added: packages/django-classy-tags/trunk/debian/python-django-classy-tags.lintian-overrides
===================================================================
--- packages/django-classy-tags/trunk/debian/python-django-classy-tags.lintian-overrides (rev 0)
+++ packages/django-classy-tags/trunk/debian/python-django-classy-tags.lintian-overrides 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,2 @@
+# Upstream does not provide a separate changelog.
+python-django-classy-tags: no-upstream-changelog
Added: packages/django-classy-tags/trunk/debian/rules
===================================================================
--- packages/django-classy-tags/trunk/debian/rules (rev 0)
+++ packages/django-classy-tags/trunk/debian/rules 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+%:
+ dh $@ --with python2,sphinxdoc
+
+override_dh_auto_build:
+ PYTHONPATH=. sphinx-build -b html -d docs/_build/.doctrees -N docs docs/_build/html
+ dh_auto_build
+
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ set -e; \
+ for python in $(shell pyversions -r); do \
+ PYTHONPATH="." $$python runtests.py; \
+ done
+endif
+
+override_dh_clean:
+ rm -rf docs/_build
+ dh_clean
Property changes on: packages/django-classy-tags/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/django-classy-tags/trunk/debian/source/format
===================================================================
--- packages/django-classy-tags/trunk/debian/source/format (rev 0)
+++ packages/django-classy-tags/trunk/debian/source/format 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/django-classy-tags/trunk/debian/source/lintian-overrides
===================================================================
--- packages/django-classy-tags/trunk/debian/source/lintian-overrides (rev 0)
+++ packages/django-classy-tags/trunk/debian/source/lintian-overrides 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,2 @@
+# Upstream does not provide detached PGP signatures for their source tarballs.
+django-classy-tags source: debian-watch-may-check-gpg-signature
Added: packages/django-classy-tags/trunk/debian/watch
===================================================================
--- packages/django-classy-tags/trunk/debian/watch (rev 0)
+++ packages/django-classy-tags/trunk/debian/watch 2014-04-17 10:52:57 UTC (rev 28541)
@@ -0,0 +1,5 @@
+version=3
+opts=filenamemangle=s/.+\/([\d\.]+)\.tar\.gz/django-classy-tags-$1.tar.gz/ \
+https://github.com/ojii/django-classy-tags/releases \
+/ojii/django-classy-tags/archive/([\d\.]+)\.tar\.gz
+
More information about the Python-modules-commits
mailing list