[Python-modules-commits] r34202 - in packages/aioxmlrpc/trunk (9 files)
piotr at users.alioth.debian.org
piotr at users.alioth.debian.org
Tue Sep 8 18:43:39 UTC 2015
Date: Tuesday, September 8, 2015 @ 18:43:38
Author: piotr
Revision: 34202
[svn-inject] Applying Debian modifications (0.1-1) to trunk
Added:
packages/aioxmlrpc/trunk/debian/
packages/aioxmlrpc/trunk/debian/changelog
packages/aioxmlrpc/trunk/debian/compat
packages/aioxmlrpc/trunk/debian/control
packages/aioxmlrpc/trunk/debian/copyright
packages/aioxmlrpc/trunk/debian/rules
packages/aioxmlrpc/trunk/debian/source/
packages/aioxmlrpc/trunk/debian/source/format
packages/aioxmlrpc/trunk/debian/watch
Property changes on: packages/aioxmlrpc/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/aioxmlrpc/trunk/debian/changelog
===================================================================
--- packages/aioxmlrpc/trunk/debian/changelog (rev 0)
+++ packages/aioxmlrpc/trunk/debian/changelog 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1,5 @@
+aioxmlrpc (0.1-1) unstable; urgency=low
+
+ * Initial release (closes: #798351)
+
+ -- Piotr Ożarowski <piotr at debian.org> Tue, 08 Sep 2015 20:39:13 +0200
Added: packages/aioxmlrpc/trunk/debian/compat
===================================================================
--- packages/aioxmlrpc/trunk/debian/compat (rev 0)
+++ packages/aioxmlrpc/trunk/debian/compat 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1 @@
+9
Added: packages/aioxmlrpc/trunk/debian/control
===================================================================
--- packages/aioxmlrpc/trunk/debian/control (rev 0)
+++ packages/aioxmlrpc/trunk/debian/control 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1,42 @@
+Source: aioxmlrpc
+Section: python
+Priority: optional
+Maintainer: Piotr Ożarowski <piotr at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), dh-python,
+ python3-all,
+ python3-setuptools,
+ python3-aiohttp
+Standards-Version: 3.9.6
+Homepage: https://github.com/mardiros/aioxmlrpc
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/aioxmlrpc/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/aioxmlrpc/trunk/
+X-Python3-Version: >= 3.3
+
+Package: python3-aioxmlrpc
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}, python3-aiohttp
+Description: XML-RPC for asyncio
+ Asyncio version of the standard lib xmlrpc.
+ .
+ Currently only aioxmlrpc.client, which works like xmlrpc.client but
+ with coroutine is implemented.
+ .
+ aioxmlrpc is based on aiohttp for the transport, and just patch
+ the necessary from the Python standard library to get it working.
+ .
+ Example of usage:
+ .
+ import asyncio
+ from aioxmlrpc.client import ServerProxy
+ .
+ @asyncio.coroutine
+ def print_gandi_api_version():
+ api = ServerProxy('https://rpc.gandi.net/xmlrpc/')
+ result = yield from api.version.info()
+ print(result)
+ .
+ if __name__ == '__main__':
+ loop = asyncio.get_event_loop()
+ loop.run_until_complete(print_gandi_api_version())
+ loop.stop()
Added: packages/aioxmlrpc/trunk/debian/copyright
===================================================================
--- packages/aioxmlrpc/trunk/debian/copyright (rev 0)
+++ packages/aioxmlrpc/trunk/debian/copyright 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: aioxmlrpc
+Upstream-Contact: Guillaume Gauvrit <guillaume at gauvr.it>
+Source: https://github.com/mardiros/aioxmlrpc
+
+Files: *
+Copyright: 2014, Guillaume Gauvrit and Contibutors
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2015 © Piotr Ożarowski <piotr at debian.org>
+License: BSD-3-clause
+
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ * Neither the name of the <organization> nor the
+ names of its contributors may be used to endorse or promote products
+ derived from this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Added: packages/aioxmlrpc/trunk/debian/rules
===================================================================
--- packages/aioxmlrpc/trunk/debian/rules (rev 0)
+++ packages/aioxmlrpc/trunk/debian/rules 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1,8 @@
+#! /usr/bin/make -f
+
+export PYBUILD_NAME=aioxmlrpc
+%:
+ dh $@ --with python3 --buildsystem=pybuild
+
+override_dh_installchangelogs:
+ dh_installchangelogs CHANGES.rst
Property changes on: packages/aioxmlrpc/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/aioxmlrpc/trunk/debian/source/format
===================================================================
--- packages/aioxmlrpc/trunk/debian/source/format (rev 0)
+++ packages/aioxmlrpc/trunk/debian/source/format 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/aioxmlrpc/trunk/debian/watch
===================================================================
--- packages/aioxmlrpc/trunk/debian/watch (rev 0)
+++ packages/aioxmlrpc/trunk/debian/watch 2015-09-08 18:43:38 UTC (rev 34202)
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/aioxmlrpc/aioxmlrpc-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
More information about the Python-modules-commits
mailing list