[Python-modules-commits] [python-asgi-ipc] 07/13: Initial release (Closes: #881991).

Michael Fladischer fladi at moszumanska.debian.org
Fri Nov 17 12:24:56 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-ipc.

commit 8e9e64750169d4b2031b9ed0a9d625e700ec97b2
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Fri Nov 17 13:08:49 2017 +0100

    Initial release (Closes: #881991).
---
 debian/changelog             |  5 +++++
 debian/clean                 |  6 ++++++
 debian/compat                |  1 +
 debian/control               | 33 +++++++++++++++++++++++++++++++++
 debian/copyright             | 38 ++++++++++++++++++++++++++++++++++++++
 debian/python3-asgi-ipc.docs |  1 +
 debian/rules                 | 10 ++++++++++
 debian/watch                 |  4 ++++
 8 files changed, 98 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..cb1c3d0
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-asgi-ipc (1.4.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #881991).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 18 Jul 2017 09:41:31 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..2b2e673
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,6 @@
+asgi_ipc.egg-info/PKG-INFO
+asgi_ipc.egg-info/SOURCES.txt
+asgi_ipc.egg-info/dependency_links.txt
+asgi_ipc.egg-info/not-zip-safe
+asgi_ipc.egg-info/requires.txt
+asgi_ipc.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..c6f7246
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,33 @@
+Source: python-asgi-ipc
+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-posix-ipc,
+               python3-setuptools,
+               python3-six
+Standards-Version: 4.0.0
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/django/asgi_ipc/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-asgi-ipc.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-asgi-ipc.git
+
+Package: python3-asgi-ipc
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: ASGI channel layer that uses POSIX shared memory IPC (Python3 version)
+ An ASGI (Asynchronous Server Gateway Interface) channel layer that uses POSIX
+ shared memory IPC as its backing store (only works between processes on the
+ same machine).
+ .
+ You'll need to instantiate the channel layer with a path prefix to create IPC
+ objects underneath; any channel layers with the same prefix will talk to each
+ other as long as they're on the same machine.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..cf48b86
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-asgi-ipc
+Upstream-Contact: Django Software Foundation <foundation at djangoproject.com>
+Source: https://github.com/django/asgi_ipc/
+
+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/python3-asgi-ipc.docs b/debian/python3-asgi-ipc.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-asgi-ipc.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..cf56890
--- /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-ipc
+export PYTHONPATH=$(CURDIR)
+
+%:
+	dh $@ --with python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..1e6f9ab
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/([\d\.]+.*)$/python-asgi-ipc-$1/ \
+https://github.com/django/asgi_ipc/releases \
+/django/asgi_ipc/archive/([\d\.]+)\.tar\.gz

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



More information about the Python-modules-commits mailing list