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

Michael Fladischer fladi at moszumanska.debian.org
Tue Jan 12 09:20:34 UTC 2016


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

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

commit 080989916b29e94b5a71e05e773e13eb4ecf3e98
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Tue Jan 12 10:20:09 2016 +0100

    Initial release (Closes: #810734).
---
 debian/changelog                           |  5 ++++
 debian/clean                               |  3 ++
 debian/compat                              |  1 +
 debian/control                             | 47 ++++++++++++++++++++++++++++++
 debian/copyright                           | 34 +++++++++++++++++++++
 debian/python-django-websocket-redis.docs  |  1 +
 debian/python3-django-websocket-redis.docs |  1 +
 debian/rules                               |  9 ++++++
 debian/watch                               |  3 ++
 9 files changed, 104 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..8605862
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+django-websocket-redis (0.4.5-1) unstable; urgency=low
+
+  * Initial release (Closes: #810734).
+
+ -- Michael Fladischer <fladi at debian.org>  Tue, 12 Jan 2016 10:19:34 +0100
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..6bf2082
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,3 @@
+django_websocket_redis.egg-info/PKG-INFO
+django_websocket_redis.egg-info/SOURCES.txt
+
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..4041889
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,47 @@
+Source: django-websocket-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 (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/jrief/django-websocket-redis
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/django-websocket-redis.git
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/django-websocket-redis.git
+
+Package: python-django-websocket-redis
+Architecture: all
+Depends: python-django,
+         ${misc:Depends},
+         ${python:Depends}
+Suggests: uwsgi
+Description: Websockets for Django applications using Redis (Python2 version)
+ This module implements websockets on top of Django without requiring any
+ additional framework. For messaging it uses the Redis datastore. In a
+ production environment, it is intended to work under uWSGI and behind NGiNX or
+ Apache. In a development environment, it can be used with the Django built-in
+ webserver.
+ .
+ This package contains the Python 2 version of the library.
+
+Package: python3-django-websocket-redis
+Architecture: all
+Depends: python3-django,
+         ${misc:Depends},
+         ${python3:Depends}
+Suggests: uwsgi
+Description: Websockets for Django applications using Redis (Python3 version)
+ This module implements websockets on top of Django without requiring any
+ additional framework. For messaging it uses the Redis datastore. In a
+ production environment, it is intended to work under uWSGI and behind NGiNX or
+ Apache. In a development environment, it can be used with the Django built-in
+ webserver.
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4e01f76
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: django-websocket-redis
+Upstream-Contact: Jacob Rief <jacob.rief at gmail.com>
+Source: https://github.com/jrief/django-websocket-redis
+
+Files: *
+Copyright: 2013, Jacob Rief <jacob.rief at gmail.com>
+License: Expat
+
+Files: debian/*
+Copyright: 2016, Fladischer Michael <fladi at debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation
+ files (the "Software"), to deal in the Software without
+ restriction, including without limitation the rights to use,
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following
+ conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/python-django-websocket-redis.docs b/debian/python-django-websocket-redis.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python-django-websocket-redis.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/python3-django-websocket-redis.docs b/debian/python3-django-websocket-redis.docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/python3-django-websocket-redis.docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..baf56bb
--- /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=django-websocket-redis
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..642fde1
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/django-websocket-redis/django-websocket-redis-(.+)\.(?: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-websocket-redis.git



More information about the Python-modules-commits mailing list