[Python-modules-commits] r30207 - in packages/websocket-client/trunk/debian (3 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Wed Aug 20 22:09:15 UTC 2014


    Date: Wednesday, August 20, 2014 @ 22:09:14
  Author: barry
Revision: 30207

* Team upload.
* Add python3-websocket binary package. (Closes: #749943)
* d/control: wrap-and-sort

Modified:
  packages/websocket-client/trunk/debian/changelog
  packages/websocket-client/trunk/debian/control
  packages/websocket-client/trunk/debian/rules

Modified: packages/websocket-client/trunk/debian/changelog
===================================================================
--- packages/websocket-client/trunk/debian/changelog	2014-08-19 12:13:11 UTC (rev 30206)
+++ packages/websocket-client/trunk/debian/changelog	2014-08-20 22:09:14 UTC (rev 30207)
@@ -1,3 +1,11 @@
+websocket-client (0.16.0a-2) UNRELEASED; urgency=medium
+
+  * Team upload.
+  * Add python3-websocket binary package. (Closes: #749943)
+  * d/control: wrap-and-sort
+
+ -- Barry Warsaw <barry at debian.org>  Wed, 20 Aug 2014 17:45:17 -0400
+
 websocket-client (0.16.0a-1) unstable; urgency=medium
 
   * New upstream release

Modified: packages/websocket-client/trunk/debian/control
===================================================================
--- packages/websocket-client/trunk/debian/control	2014-08-19 12:13:11 UTC (rev 30206)
+++ packages/websocket-client/trunk/debian/control	2014-08-20 22:09:14 UTC (rev 30207)
@@ -3,22 +3,25 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Nicolas Dandrimont <olasd at debian.org>
-Build-Depends:
- debhelper (>= 9),
- dh-python,
- python-all (>= 2.6.6-3~),
- python-backports.ssl-match-hostname,
- python-setuptools,
- python-six
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-backports.ssl-match-hostname,
+               python-setuptools,
+               python-six,
+               python3-all,
+               python3-setuptools,
+               python3-six
 Standards-Version: 3.9.5
 X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.3
 Homepage: https://github.com/liris/websocket-client
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/websocket-client/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewsvn/python-modules/packages/websocket-client/trunk
 
 Package: python-websocket
 Architecture: all
-Depends: ${python:Depends}, ${misc:Depends}
+Depends: ${misc:Depends}, ${python:Depends}
 Description: WebSocket client library for Python
  websocket-client provides a low-level, synchronous API providing WebSocket
  client functionality to Python programs. It conforms to the WebSocket
@@ -26,3 +29,18 @@
  .
  WebSocket is a protocol providing full-duplex communication channels over
  TCP, mostly used in Web browsers.
+ .
+ This is the Python 2 version.
+
+Package: python3-websocket
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: WebSocket client library for Python
+ websocket-client provides a low-level, synchronous API providing WebSocket
+ client functionality to Python programs. It conforms to the WebSocket
+ specification as standardized by the IETF in RFC 6455.
+ .
+ WebSocket is a protocol providing full-duplex communication channels over
+ TCP, mostly used in Web browsers.
+ .
+ This is the Python 3 version.

Modified: packages/websocket-client/trunk/debian/rules
===================================================================
--- packages/websocket-client/trunk/debian/rules	2014-08-19 12:13:11 UTC (rev 30206)
+++ packages/websocket-client/trunk/debian/rules	2014-08-20 22:09:14 UTC (rev 30207)
@@ -1,9 +1,12 @@
 #!/usr/bin/make -f
 
+export PYBUILD_NAME=websocket
+
 %:
-	dh $@ --with python2 --buildsystem=pybuild
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
 override_dh_install:
 	mv $(CURDIR)/debian/python-websocket/usr/bin/wsdump.py $(CURDIR)/debian/python-websocket/usr/bin/wsdump
+	mv $(CURDIR)/debian/python3-websocket/usr/bin/wsdump.py $(CURDIR)/debian/python3-websocket/usr/bin/wsdump3
 	rm -r $(CURDIR)/debian/python-websocket/usr/lib/python*/dist-packages/tests
 	dh_install




More information about the Python-modules-commits mailing list