Codebase list python-flask-sockets / f9a6cfa
Python3 conversion and housekeeping Sascha Steinbiss 4 years ago
4 changed file(s) with 22 addition(s) and 12 deletion(s). Raw diff Collapse all Expand all
0 python-flask-sockets (0.2.1-3) unstable; urgency=medium
1
2 * Convert to Python3.
3 * Bump Standards-Version.
4 * Use debhelper 12.
5 * Add Python autopkgtest.
6
7 -- Sascha Steinbiss <satta@debian.org> Sat, 07 Sep 2019 17:37:17 +0200
8
09 python-flask-sockets (0.2.1-2) unstable; urgency=medium
110
211 * Update VCS-Git-* to Salsa URLs.
11 Section: python
22 Priority: optional
33 Maintainer: Sascha Steinbiss <satta@debian.org>
4 Build-Depends: debhelper (>= 11~),
4 Build-Depends: debhelper (>= 12),
55 dh-python,
6 python-all,
7 python-setuptools,
8 python-flask,
9 python-gevent,
10 python-gevent-websocket
11 Standards-Version: 4.2.1
6 python3-all,
7 python3-setuptools,
8 python3-flask,
9 python3-gevent,
10 python3-gevent-websocket
11 Standards-Version: 4.4.0
12 Testsuite: autopkgtest-pkg-python
1213 Vcs-Git: https://salsa.debian.org/debian/python-flask-sockets.git
1314 Vcs-Browser: https://salsa.debian.org/debian/python-flask-sockets
1415 Homepage: https://github.com/kennethreitz/flask-sockets
1516
16 Package: python-flask-sockets
17 Package: python3-flask-sockets
1718 Architecture: all
18 Depends: ${python:Depends},
19 Depends: ${python3:Depends},
1920 ${misc:Depends}
2021 Description: elegant WebSockets for your Flask apps
2122 This package provides Flask-Sockets, a websocket library to be used with Flask.
00 #!/usr/bin/make -f
11
2 buildvers := $(shell pyversions -sv)
2 buildvers := $(shell py3versions -sv)
33
44 export PYBUILD_NAME = Flask-Sockets
55
66 %:
7 dh $@ --with python2 --buildsystem=pybuild
7 dh $@ --with python3 --buildsystem=pybuild