[Python-modules-commits] [django-redis] 03/03: Initial release. (Closes: #810733)

Scott Kitterman kitterman at moszumanska.debian.org
Fri Nov 11 13:59:34 UTC 2016


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

kitterman pushed a commit to branch master
in repository django-redis.

commit 0a3d353b97132c47a83f23f12e9922240f716b6a
Author: Scott Kitterman <scott at kitterman.com>
Date:   Fri Nov 11 08:58:40 2016 -0500

    Initial release. (Closes: #810733)
---
 debian/.git-dpm                  |  3 +++
 debian/changelog                 |  5 ++++
 debian/compat                    |  1 +
 debian/control                   | 54 ++++++++++++++++++++++++++++++++++++++++
 debian/copyright                 | 40 +++++++++++++++++++++++++++++
 debian/gbp.conf                  |  2 ++
 debian/python-django-redis.docs  |  1 +
 debian/python3-django-redis.docs |  1 +
 debian/rules                     |  9 +++++++
 debian/watch                     |  2 ++
 10 files changed, 118 insertions(+)

diff --git a/debian/.git-dpm b/debian/.git-dpm
index 6aefa3a..d6fc5b8 100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@ -6,3 +6,6 @@ c18286d12552276fc0cdbaffeedff7f466c932f7
 django-redis_4.6.0.orig.tar.gz
 80da4f6ae6cd465cde698f36e76a1740b6c18e33
 53442
+debianTag="debian/%e%v"
+patchedTag="patched/%e%v"
+upstreamTag="upstream/%e%u"
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6d6efbc
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-redis (4.6.0-1) unstable; urgency=medium
+
+  * Initial release. (Closes: #810733)
+
+ -- Scott Kitterman <scott at kitterman.com>  Fri, 11 Nov 2016 08:09:48 -0500
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..7441efd
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,54 @@
+Source: django-redis
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Scott Kitterman <scott at kitterman.com>, Michael Fladischer <fladi at debian.org>
+Build-Depends:
+ debhelper (>= 9~),
+ dh-python,
+ python-all,
+ python-setuptools,
+ python3-all,
+ python3-setuptools,
+Standards-Version: 3.9.8
+Homepage: https://github.com/niwinz/django-redis
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/django-redis.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-redis.git
+
+Package: python-django-redis
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Redis cache backend for Django (Python 2)
+ django-redis is a full featured Redis cache/session backend for Django. It
+ provides several features to fully utilize Redis:
+  * Pluggable clients.
+  * Pluggable parsers.
+  * Pluggable serializers.
+  * Master-Slave support in the default client.
+  * Supports infinite timeouts.
+  * Facilities for raw access to Redis client/connection pool.
+  * Highly configurable (can emulate memcached exception behavior, for example).
+  * Unix sockets supported by default.
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-django-redis
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Redis cache backend for Django (Python 3)
+ django-redis is a full featured Redis cache/session backend for Django. It
+ provides several features to fully utilize Redis:
+  * Pluggable clients.
+  * Pluggable parsers.
+  * Pluggable serializers.
+  * Master-Slave support in the default client.
+  * Supports infinite timeouts.
+  * Facilities for raw access to Redis client/connection pool.
+  * Highly configurable (can emulate memcached exception behavior, for example).
+  * Unix sockets supported by default.
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..3928807
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,40 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Django Redis
+Upstream-Contact: Andrey Antukh
+Source: https://pypi.python.org/pypi/django-redis
+
+Files: *
+Copyright: Copyright (c) 2011-2016 Andrey Antukh <niwi at niwi.nz>
+           Copyright (c) 2011 Sean Bleier
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2016 Scott Kitterman <scott at kitterman.com>
+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 author nor the names of other
+      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/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..cec628c
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+pristine-tar = True
diff --git a/debian/python-django-redis.docs b/debian/python-django-redis.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python-django-redis.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/python3-django-redis.docs b/debian/python3-django-redis.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-django-redis.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e5d127a
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=django-redis
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	# Tests needs django configured, let's not for now.
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..153d8d9
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.debian.net/django-redis/django-redis-([0-9][0-9\.\-]*).tar.gz

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



More information about the Python-modules-commits mailing list