[Python-modules-commits] [python-asgi-redis] 02/02: Initial release (Closes: #882254).

Michael Fladischer fladi at moszumanska.debian.org
Fri Nov 24 08:47:09 UTC 2017


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

fladi pushed a commit to branch debian/master
in repository python-asgi-redis.

commit 597cf5fe1915d3de22110ad91c81e0fc08732f79
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Fri Nov 24 09:44:16 2017 +0100

    Initial release (Closes: #882254).
---
 debian/changelog               |  5 +++++
 debian/clean                   |  6 ++++++
 debian/compat                  |  1 +
 debian/control                 | 41 +++++++++++++++++++++++++++++++++++++++++
 debian/copyright               | 38 ++++++++++++++++++++++++++++++++++++++
 debian/py3dist-overrides       |  2 ++
 debian/python3-asgi-redis.docs |  1 +
 debian/rules                   | 10 ++++++++++
 debian/source/format           |  1 +
 debian/watch                   |  4 ++++
 10 files changed, 109 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..88018ba
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-asgi-redis (1.4.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #882254).
+
+ -- Michael Fladischer <fladi at debian.org>  Mon, 20 Nov 2017 19:11:01 +0100
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..212a2e9
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,6 @@
+asgi_redis.egg-info/PKG-INFO
+asgi_redis.egg-info/SOURCES.txt
+asgi_redis.egg-info/dependency_links.txt
+asgi_redis.egg-info/not-zip-safe
+asgi_redis.egg-info/requires.txt
+asgi_redis.egg-info/top_level.txt
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2565eb4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,41 @@
+Source: python-asgi-redis
+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 (>= 10),
+ dh-python,
+ python3-all,
+ python3-asgiref,
+ python3-msgpack,
+ python3-redis,
+ python3-setuptools,
+ python3-six,
+Standards-Version: 4.1.1
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/django/asgi_redis/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-asgi-redis.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-asgi-redis.git
+Testsuite: autopkgtest-pkg-python
+
+Package: python3-asgi-redis
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+Description: Redis-py backend for ASGI, with built-in sharding (Python3 version)
+ An ASGI channel layer that uses Redis as its backing store, and supports both a
+ single-server and sharded configurations, as well as group support.
+ .
+ A "local and remote" mode is also supported, where the Redis channel layer
+ works in conjunction with a machine-local channel layer (asgi_ipc) in order to
+ route all normal channels over the local layer, while routing all single-reader
+ and process-specific channels over the Redis layer.
+ .
+ "Sentinel" mode is also supported, where the Redis channel layer will connect
+ to a redis sentinel cluster to find the present Redis master before writing or
+ reading data.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..26cb7be
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-asgi-redis
+Upstream-Contact: Django Software Foundation <foundation at djangoproject.com>
+Source: https://github.com/django/asgi_redis/
+
+Files: *
+Copyright: 2016, Django Software Foundation <foundation at djangoproject.com>
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2017, 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:
+ .
+     1. Redistributions of source code must retain the above copyright notice,
+        this list of conditions and the following disclaimer.
+ .
+     2. 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.
+ .
+     3. Neither the name of Django 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/py3dist-overrides b/debian/py3dist-overrides
new file mode 100644
index 0000000..274b6cc
--- /dev/null
+++ b/debian/py3dist-overrides
@@ -0,0 +1,2 @@
+asgiref_ python3-asgiref
+redis_ python3-redis
diff --git a/debian/python3-asgi-redis.docs b/debian/python3-asgi-redis.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-asgi-redis.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d78755f
--- /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=asgi-redis
+export PYBUILD_DISABLE=test  # Requires redis instance
+
+%:
+	dh $@ --with 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..ec9e4ff
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/([\d\.]+.*)$/python-asgi-redis-$1/ \
+https://github.com/django/asgi_redis/releases \
+/django/asgi_redis/archive/([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list