[Python-modules-commits] r29467 - in packages/python-jsonrpc2/trunk/debian (3 files)
takaki at users.alioth.debian.org
takaki at users.alioth.debian.org
Mon Jun 23 15:46:28 UTC 2014
Date: Monday, June 23, 2014 @ 15:46:27
Author: takaki
Revision: 29467
add python3 support
Modified:
packages/python-jsonrpc2/trunk/debian/changelog
packages/python-jsonrpc2/trunk/debian/control
packages/python-jsonrpc2/trunk/debian/rules
Modified: packages/python-jsonrpc2/trunk/debian/changelog
===================================================================
--- packages/python-jsonrpc2/trunk/debian/changelog 2014-06-23 15:13:38 UTC (rev 29466)
+++ packages/python-jsonrpc2/trunk/debian/changelog 2014-06-23 15:46:27 UTC (rev 29467)
@@ -1,6 +1,7 @@
python-jsonrpc2 (0.4.1-1) UNRELEASED; urgency=medium
* New upstream release
+ * Add Python 3 support.
-- TANIGUCHI Takaki <takaki at debian.org> Tue, 24 Jun 2014 00:13:19 +0900
Modified: packages/python-jsonrpc2/trunk/debian/control
===================================================================
--- packages/python-jsonrpc2/trunk/debian/control 2014-06-23 15:13:38 UTC (rev 29466)
+++ packages/python-jsonrpc2/trunk/debian/control 2014-06-23 15:46:27 UTC (rev 29467)
@@ -3,10 +3,20 @@
Priority: extra
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: TANIGUCHI Takaki <takaki at debian.org>
-Build-Depends: debhelper (>= 7.0.50~), python-setuptools,
+Build-Depends: debhelper (>= 7.0.50~),
python-all (>= 2.6.6-3),
python-nose,
-Standards-Version: 3.9.3
+ python-setuptools,
+ python-webtest,
+ python-pytest-cov,
+ python-webob,
+ python3-all (>= 2.6.6-3),
+ python3-nose,
+ python3-setuptools,
+ python3-webtest,
+ python3-pytest-cov,
+ python3-webob,
+Standards-Version: 3.9.5
Homepage: http://pypi.python.org/pypi/jsonrpc2
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-jsonrpc2/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/python-jsonrpc2/trunk/
@@ -16,6 +26,19 @@
Depends: ${python:Depends}, ${misc:Depends}
, python-pkg-resources
Provides: ${python:Provides}
-Description: Python WSGI Framework for JSON RPC 2.0
+Description: Python WSGI Framework for JSON RPC 2.0 (Python 2)
jsonrpc2 is WSGI Framework for JSON RPC 2.0. JSON RPC 2.0 Spec can be seen
on http://groups.google.com/group/json-rpc/web/json-rpc-2-0 .
+ .
+ This package is for Python 2.
+
+Package: python3-jsonrpc2
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+ , python3-pkg-resources
+Provides: ${python:Provides}
+Description: Python WSGI Framework for JSON RPC 2.0 (Python 3)
+ jsonrpc2 is WSGI Framework for JSON RPC 2.0. JSON RPC 2.0 Spec can be seen
+ on http://groups.google.com/group/json-rpc/web/json-rpc-2-0 .
+ .
+ This package is for Python 3.
Modified: packages/python-jsonrpc2/trunk/debian/rules
===================================================================
--- packages/python-jsonrpc2/trunk/debian/rules 2014-06-23 15:13:38 UTC (rev 29466)
+++ packages/python-jsonrpc2/trunk/debian/rules 2014-06-23 15:46:27 UTC (rev 29467)
@@ -1,4 +1,5 @@
#!/usr/bin/make -f
+export PYBUILD_NAME=jsonrpc
%:
- dh $@ --with python2
+ dh $@ --with python2,python3 --buildsystem=pybuild
More information about the Python-modules-commits
mailing list