[Python-modules-commits] [django-downloadview] 02/02: Initial release (Closes: #797909).

Michael Fladischer fladi at moszumanska.debian.org
Thu Sep 3 15:52:51 UTC 2015


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

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

commit 60fa50d346e6218cd47983c16e155923becce508
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Thu Sep 3 17:25:16 2015 +0200

    Initial release (Closes: #797909).
---
 debian/changelog                        |  5 +++
 debian/compat                           |  1 +
 debian/control                          | 57 +++++++++++++++++++++++++++++++++
 debian/copyright                        | 38 ++++++++++++++++++++++
 debian/python-django-downloadview.docs  |  1 +
 debian/python3-django-downloadview.docs |  1 +
 debian/rules                            | 10 ++++++
 debian/source/format                    |  1 +
 debian/watch                            |  3 ++
 9 files changed, 117 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..c83820d
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-downloadview (1.8-1) unstable; urgency=low
+
+  * Initial release (Closes: #797909).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 28 Apr 2015 17:35:01 +0200
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..cdfc40c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,57 @@
+Source: django-downloadview
+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-mock,
+               python-nose,
+               python-setuptools,
+               python3-all,
+               python3-django,
+               python3-mock,
+               python3-nose,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/benoitbryon/django-downloadview
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-downloadview.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/django-downloadview.git
+
+Package: python-django-downloadview
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: efficient static file serving with Django
+ django-downloadview makes it easy to serve files with Django:
+ .
+  * manage files with Django (permissions, filters, generation, ...);
+  * files are stored somewhere or generated somehow (local filesystem,
+    remote storage, memory...);
+  * django-downloadview helps to stream the files with very little
+    code;
+  * django-downloadview helps to improve performances with reverse
+    proxies, via mechanisms such as Nginx’s X-Accel or Apache’s
+    X-Sendfile.
+
+Package: python3-django-downloadview
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: efficient static file serving with Django (Python3 version)
+ django-downloadview makes it easy to serve files with Django:
+ .
+  * manage files with Django (permissions, filters, generation, ...);
+  * files are stored somewhere or generated somehow (local filesystem,
+    remote storage, memory...);
+  * django-downloadview helps to stream the files with very little
+    code;
+  * django-downloadview helps to improve performances with reverse
+    proxies, via mechanisms such as Nginx’s X-Accel or Apache’s
+    X-Sendfile.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0ba7b24
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-downloadview
+Upstream-Contact: Benoît Bryon <benoit at marmelune.net>
+Source: https://github.com/fladi/django-downloadview
+
+Files: *
+Copyright: 2012-2014, Benoît Bryon <benoit at marmelune.net>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015, Fladischer Michael <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 of django-downloadview 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 HOLDER 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-downloadview.docs b/debian/python-django-downloadview.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-downloadview.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-downloadview.docs b/debian/python3-django-downloadview.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-downloadview.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e6ae04d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,10 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=django-downloadview
+export PYBUILD_DISABLE=test
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..2e66586
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/django-downloadview/django-downloadview-(.+)\.(?: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/django-downloadview.git



More information about the Python-modules-commits mailing list