[Python-modules-commits] [python-django-extra-views] 05/05: Initial release (Closes: #856518).

Michael Fladischer fladi at moszumanska.debian.org
Wed Mar 1 22:04:14 UTC 2017


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

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

commit b83e132d8b24ff0057e2f67c3ad5ac3cb26f0dec
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Wed Mar 1 23:03:39 2017 +0100

    Initial release (Closes: #856518).
---
 debian/changelog                              |   5 ++
 debian/clean                                  |   5 ++
 debian/compat                                 |   1 +
 debian/control                                | 105 ++++++++++++++++++++++++++
 debian/copyright                              |  31 ++++++++
 debian/python-django-extra-views-doc.doc-base |   8 ++
 debian/python-django-extra-views-doc.docs     |   1 +
 debian/python-django-extra-views.docs         |   1 +
 debian/python3-django-extra-views.docs        |   1 +
 debian/rules                                  |  20 +++++
 debian/watch                                  |   4 +
 11 files changed, 182 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2e2e450
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-django-extra-views (0.8.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #856518).
+
+ -- Michael Fladischer <fladi at debian.org>  Wed, 01 Mar 2017 15:37:25 +0100
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..16e6b77
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,5 @@
+django_extra_views.egg-info/PKG-INFO
+django_extra_views.egg-info/SOURCES.txt
+django_extra_views.egg-info/dependency_links.txt
+django_extra_views.egg-info/requires.txt
+django_extra_views.egg-info/top_level.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..c27e085
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,105 @@
+Source: python-django-extra-views
+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-django-nose,
+               python-setuptools,
+               python-six,
+               python3-all,
+               python3-django,
+               python3-django-nose,
+               python3-setuptools,
+               python3-six,
+               python3-sphinx
+Standards-Version: 3.9.8
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/AndrewIngram/django-extra-views/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-django-extra-views.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-django-extra-views.git
+
+
+Package: python-django-extra-views
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Suggests: python-django-extra-views-doc (= ${binary:Version})
+Description: Complementary class-based generic views for Django (Python2 version)
+ Django Extra Views provides a number of additional class-based generic views to
+ complement those provide by Django itself.
+ .
+ Features:
+  * FormSet and ModelFormSet views - The formset equivalents of FormView and
+    ModelFormView.
+  * InlineFormSetView - Lets you edit formsets related to a model (uses
+    inlineformset_factory).
+  * CreateWithInlinesView and UpdateWithInlinesView - Lets you edit a model and
+    its relations.
+  * GenericInlineFormSetView, the equivalent of InlineFormSetView but for
+    GenericForeignKeys.
+  * Support for generic inlines in CreateWithInlinesView and
+    UpdateWithInlinesView.
+  * Support for naming each inline or formset with NamedFormsetsMixin.
+  * SortableListMixin - Generic mixin for sorting functionality in your views.
+  * SearchableListMixin - Generic mixin for search functionality in your views.
+ .
+ This package contains the Python 2 version of the library.
+
+
+Package: python3-django-extra-views
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Suggests: python-django-extra-views-doc (= ${binary:Version})
+Description: Complementary class-based generic views for Django (Python3 version)
+ Django Extra Views provides a number of additional class-based generic views to
+ complement those provide by Django itself.
+ .
+ Features:
+  * FormSet and ModelFormSet views - The formset equivalents of FormView and
+    ModelFormView.
+  * InlineFormSetView - Lets you edit formsets related to a model (uses
+    inlineformset_factory).
+  * CreateWithInlinesView and UpdateWithInlinesView - Lets you edit a model and
+    its relations.
+  * GenericInlineFormSetView, the equivalent of InlineFormSetView but for
+    GenericForeignKeys.
+  * Support for generic inlines in CreateWithInlinesView and
+    UpdateWithInlinesView.
+  * Support for naming each inline or formset with NamedFormsetsMixin.
+  * SortableListMixin - Generic mixin for sorting functionality in your views.
+  * SearchableListMixin - Generic mixin for search functionality in your views.
+ .
+ This package contains the Python 3 version of the library.
+
+
+Package: python-django-extra-views-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends},
+         ${sphinxdoc:Depends}
+Description: Complementary class-based generic views for Django (Documentation)
+ Django Extra Views provides a number of additional class-based generic views to
+ complement those provide by Django itself.
+ .
+ Features:
+  * FormSet and ModelFormSet views - The formset equivalents of FormView and
+    ModelFormView.
+  * InlineFormSetView - Lets you edit formsets related to a model (uses
+    inlineformset_factory).
+  * CreateWithInlinesView and UpdateWithInlinesView - Lets you edit a model and
+    its relations.
+  * GenericInlineFormSetView, the equivalent of InlineFormSetView but for
+    GenericForeignKeys.
+  * Support for generic inlines in CreateWithInlinesView and
+    UpdateWithInlinesView.
+  * Support for naming each inline or formset with NamedFormsetsMixin.
+  * SortableListMixin - Generic mixin for sorting functionality in your views.
+  * SearchableListMixin - Generic mixin for search functionality in your views.
+ .
+ This package contains the documentation.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f8ac07f
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-django-extra-views
+Upstream-Contact: Andrew Ingram <andy at andrewingram.net>
+Source: https://github.com/AndrewIngram/django-extra-views/
+
+Files: *
+Copyright: 2012, Andrew Ingram <andy at andrewingram.net>
+License: Expat
+
+Files: debian/*
+Copyright: 2017, Michael Fladischer <fladi at debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
diff --git a/debian/python-django-extra-views-doc.doc-base b/debian/python-django-extra-views-doc.doc-base
new file mode 100644
index 0000000..cbdf0f9
--- /dev/null
+++ b/debian/python-django-extra-views-doc.doc-base
@@ -0,0 +1,8 @@
+Document: python-django-extra-views-doc
+Title: django-extra-views Documentation
+Author: Andrew Ingram <andy at andrewingram.net>
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-django-extra-views-doc/html/index.html
+Files: /usr/share/doc/python-django-extra-views-doc/html/*.html
diff --git a/debian/python-django-extra-views-doc.docs b/debian/python-django-extra-views-doc.docs
new file mode 100644
index 0000000..2981a3c
--- /dev/null
+++ b/debian/python-django-extra-views-doc.docs
@@ -0,0 +1 @@
+docs/.build/html
diff --git a/debian/python-django-extra-views.docs b/debian/python-django-extra-views.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-extra-views.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-extra-views.docs b/debian/python3-django-extra-views.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-extra-views.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6cac419
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,20 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-extra-views
+
+%:
+	dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
+
+override_dh_auto_build:
+	dh_auto_build
+	PYTHONPATH=. sphinx-build -b html -d docs/.build/.doctrees -N docs docs/.build/html
+
+override_dh_auto_test:
+	dh_auto_test -- --system=custom --test-args="{interpreter} runtests.py"
+
+override_dh_clean:
+	rm -rf docs/.build
+	dh_clean
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..a4c823d
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/([\d\.]+.*)$/python-django-extra-views-$1/ \
+https://github.com/AndrewIngram/django-extra-views/releases \
+/AndrewIngram/django-extra-views/archive/([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list