[Python-modules-commits] [python-django-navtag] 03/03: Initial release (Closes: #830512).

Michael Fladischer fladi at moszumanska.debian.org
Sat Jul 9 13:54:05 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository python-django-navtag.

commit 932f1453fa6f906f83ec19f5c122aba3be799c46
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Sat Jul 9 15:47:00 2016 +0200

    Initial release (Closes: #830512).
---
 debian/changelog                  |   5 +++++
 debian/clean                      |   1 +
 debian/compat                     |   1 +
 debian/control                    |  43 ++++++++++++++++++++++++++++++++++++++
 debian/copyright                  |  36 +++++++++++++++++++++++++++++++
 debian/python-django-navtag.docs  |   1 +
 debian/python3-django-navtag.docs |   1 +
 debian/rules                      |  14 +++++++++++++
 debian/source/include-binaries    |   1 +
 debian/upstream-signing-key.pgp   | Bin 0 -> 3022 bytes
 debian/watch                      |   3 +++
 11 files changed, 106 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f7e0058
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-django-navtag (2.1.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #830512).
+
+ -- Michael Fladischer <fladi at debian.org>  Fri, 08 Jul 2016 20:50:06 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..241d551
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1 @@
+django_navtag.egg-info/SOURCES.txt
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b0afe87
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,43 @@
+Source: python-django-navtag
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-django,
+               python-setuptools,
+               python3-all,
+               python3-django,
+               python3-setuptools
+Standards-Version: 3.9.8
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
+Homepage: http://github.com/SmileyChris/django-navtag
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-django-navtag.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-django-navtag.git
+
+Package: python-django-navtag
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: Django template tag to handle navigation (Python2 version)
+ A simple Django template tag to handle navigation item selection. It works
+ through template inheritance and allows one to define hierarchical navigation
+ menu structures in the presentation layer. It differentiates itself from other
+ solutions by sole reliance on templates.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-django-navtag
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: Django template tag to handle navigation (Python3 version)
+ A simple Django template tag to handle navigation item selection. It works
+ through template inheritance and allows one to define hierarchical navigation
+ menu structures in the presentation layer. It differentiates itself from other
+ solutions by sole reliance on templates.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..5cc9c9c
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-django-navtag
+Upstream-Contact: Chris Beaven <smileychris at gmail.com>
+Source: http://github.com/SmileyChris/django-navtag
+
+Files: *
+Copyright: 2013, Chris Beaven <smileychris at gmail.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2016, Michael Fladischer <fladi at debian.org>
+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 easy-thumbnails 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 THE COPYRIGHT OWNER OR CONTRIBUTORS 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.
diff --git a/debian/python-django-navtag.docs b/debian/python-django-navtag.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-navtag.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-navtag.docs b/debian/python3-django-navtag.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-navtag.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e25d59a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-navtag
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	PYTHONPATH=. \
+	DJANGO_SETTINGS_MODULE=django_navtag.test_settings \
+	dh_auto_test -- --system=custom --test-args="{interpreter} /usr/bin/django-admin test django_navtag.tests"
diff --git a/debian/source/include-binaries b/debian/source/include-binaries
new file mode 100644
index 0000000..95a390b
--- /dev/null
+++ b/debian/source/include-binaries
@@ -0,0 +1 @@
+debian/upstream-signing-key.pgp
diff --git a/debian/upstream-signing-key.pgp b/debian/upstream-signing-key.pgp
new file mode 100644
index 0000000..8df0fd5
Binary files /dev/null and b/debian/upstream-signing-key.pgp differ
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..72a461f
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/,pgpsigurlmangle=s/$/.asc/ \
+https://pypi.debian.net/django-navtag/django-navtag-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-navtag.git



More information about the Python-modules-commits mailing list