debian/0000755000000000000000000000000012211636641007170 5ustar debian/compat0000644000000000000000000000000212211636641010366 0ustar 9 debian/control0000644000000000000000000000335012211636641010574 0ustar Source: python-sockjs-tornado Section: python Priority: optional Maintainer: PKG OpenStack Uploaders: Julien Danjou , Thomas Goirand , Mehdi Abaakouk Build-Depends: debhelper (>= 9), openstack-pkg-tools, python-all (>= 2.6.6-3~), python-setuptools, python3-all, python3-setuptools Build-Depends-Indep: python-httplib2 Standards-Version: 3.9.4 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/python-sockjs-tornado.git Vcs-Git: git://anonscm.debian.org/openstack/python-sockjs-tornado.git Homepage: https://github.com/mrjoes/sockjs-tornado Package: python-sockjs-tornado Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python-tornado, ${misc:Depends}, ${python:Depends} Recommends: ${python:Recommends} Description: server side counterpart of SockJS-client browser library - Python 2.x SockJS-tornado is a Python server side counterpart of SockJS-client browser library running on top of Tornado framework. SockJS provides slightly different API than tornado.websocket. . This package provides the Python 2.x module. Package: python3-sockjs-tornado Architecture: all Pre-Depends: dpkg (>= 1.15.6~) Depends: python3-tornado, ${misc:Depends}, ${python3:Depends} Recommends: ${python3:Recommends} Description: server side counterpart of SockJS-client browser library - Python 3.x SockJS-tornado is a Python server side counterpart of SockJS-client browser library running on top of Tornado framework. SockJS provides slightly different API than tornado.websocket. . This package provides the Python 3.x module. debian/source/0000755000000000000000000000000012211636641010470 5ustar debian/source/format0000644000000000000000000000001412211636641011676 0ustar 3.0 (quilt) debian/gbp.conf0000644000000000000000000000024012211636641010603 0ustar [DEFAULT] upstream-branch = master debian-branch = debian/unstable upstream-tag = v%(version)s compression = xz [git-buildpackage] export-dir = ../build-area/ debian/watch0000644000000000000000000000012112211636641010213 0ustar version=3 https://github.com/mrjoes/sockjs-tornado/tags .*/v(\d[\d\.]+)\.tar\.gz debian/changelog0000644000000000000000000000024612211636641011044 0ustar python-sockjs-tornado (1.0.0-1) unstable; urgency=low * Initial release. (Closes: #721831). -- Thomas Goirand Sun, 01 Sep 2013 22:09:02 +0800 debian/copyright0000644000000000000000000000433312211636641011126 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: httpretty Source: git://github.com/mrjoes/sockjs-tornado.git Files: debian/* Copyright: (c) 2013, Thomas Goirand License: MIT Files: * Copyright: (c) 2011-2013, Serge S. Koval (c) 2011-2013, Marek Majkowski (c) 2011-2013, Andy Gayton (c) 2011-2013, Matthew E. Levine (c) 2011-2013, benoitc (c) 2011-2013, Alexey S. Kachayev (c) 2011-2013, Alexey Moskalenko (c) 2011-2013, Roman Haritonov (c) 2011-2013, Matt Dennebaum (c) 2011-2013, Mark Fairbairn (c) 2011-2013, Justin Rosenthal (c) 2011-2013, joes (c) 2011-2013, humka (c) 2011-2013, Fred Cheng (c) 2011-2013, David King License: MIT License: MIT 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. debian/rules0000755000000000000000000000113512211636641010250 0ustar #!/usr/bin/make -f PYTHONS:=$(shell pyversions -vr) PYTHON3S:=$(shell py3versions -vr) UPSTREAM_GIT = git://github.com/mrjoes/sockjs-tornado.git include /usr/share/openstack-pkg-tools/pkgos.make %: dh $@ --buildsystem=python_distutils --with python2,python3 override_dh_auto_install: set -e && for pyvers in $(PYTHONS); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python-sockjs-tornado; \ done set -e && for pyvers in $(PYTHON3S); do \ python$$pyvers setup.py install --install-layout=deb \ --root $(CURDIR)/debian/python3-sockjs-tornado; \ done