[Python-modules-commits] [python-asgiref] 03/03: Initial release (Closes: #868665).
Michael Fladischer
fladi at moszumanska.debian.org
Mon Jul 17 12:40:01 UTC 2017
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository python-asgiref.
commit 88b3e86f21a7fdcb90aca6b0ef7a2aa0ee9c1302
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date: Mon Jul 17 14:37:17 2017 +0200
Initial release (Closes: #868665).
---
debian/changelog | 5 +++++
debian/clean | 6 ++++++
debian/compat | 1 +
debian/control | 29 +++++++++++++++++++++++++++++
debian/copyright | 38 ++++++++++++++++++++++++++++++++++++++
debian/python3-asgiref.docs | 1 +
debian/rules | 9 +++++++++
debian/watch | 4 ++++
8 files changed, 93 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..4bacef5
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-asgiref (1.1.2-1) unstable; urgency=low
+
+ * Initial release (Closes: #868665).
+
+ -- Michael Fladischer <fladi at debian.org> Mon, 17 Jul 2017 12:49:07 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..cfd9780
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,6 @@
+asgiref.egg-info/PKG-INFO
+asgiref.egg-info/SOURCES.txt
+asgiref.egg-info/dependency_links.txt
+asgiref.egg-info/not-zip-safe
+asgiref.egg-info/requires.txt
+asgiref.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..967a7aa
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: python-asgiref
+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-setuptools,
+ python3-six
+Standards-Version: 4.0.0
+X-Python3-Version: >= 3.4
+Homepage: https://github.com/django/asgiref/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-asgiref.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-asgiref.git
+
+Package: python3-asgiref
+Architecture: all
+Depends: ${misc:Depends},
+ ${python3:Depends}
+Description: ASGI in-memory channel layer (Python3 version)
+ Contains various reference ASGI (Asynchronous Server Gateway Interface)
+ implementations, including:
+ .
+ * A base channel layer, asgiref.base_layer
+ * An in-memory channel layer, asgiref.inmemory
+ * WSGI-to-ASGI and ASGI-to-WSGI adapters, in asgiref.wsgi
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..59a741e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,38 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-asgiref
+Upstream-Contact: Django Software Foundation <foundation at djangoproject.com>
+Source: https://github.com/django/asgiref/
+
+Files: *
+Copyright: 2015, 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-asgiref.docs b/debian/python3-asgiref.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-asgiref.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e4d16a5
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+export PYBUILD_NAME=asgiref
+
+%:
+ dh $@ --with python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..b53aee6
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=filenamemangle=s/.*\/([\d\.]+.*)$/python-asgiref-$1/ \
+https://github.com/django/asgiref/releases \
+/django/asgiref/archive/([\d\.]+)\.tar\.gz
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-asgiref.git
More information about the Python-modules-commits
mailing list