[Python-modules-commits] r16019 - in packages/python-jsonrpc2/trunk/debian (4 files)

takaki at users.alioth.debian.org takaki at users.alioth.debian.org
Mon Mar 7 06:42:12 UTC 2011


    Date: Monday, March 7, 2011 @ 06:42:10
  Author: takaki
Revision: 16019

Add debian/clean
Remove debian/paches/debian-changes-0.2.3-1

Added:
  packages/python-jsonrpc2/trunk/debian/clean
Modified:
  packages/python-jsonrpc2/trunk/debian/changelog
Deleted:
  packages/python-jsonrpc2/trunk/debian/patches/debian-changes-0.2.3-1
  packages/python-jsonrpc2/trunk/debian/patches/series

Modified: packages/python-jsonrpc2/trunk/debian/changelog
===================================================================
--- packages/python-jsonrpc2/trunk/debian/changelog	2011-03-07 06:26:10 UTC (rev 16018)
+++ packages/python-jsonrpc2/trunk/debian/changelog	2011-03-07 06:42:10 UTC (rev 16019)
@@ -2,10 +2,10 @@
 
   * NOT RELEASED YET
   * debian/control:
-    - Add python-neso to Build-Depends. 
+    - Add python-neso to Build-Depends. (Closes: #614542)
     - Change Maintainer to DPMT. 
 
- -- TANIGUCHI Takaki <takaki at debian.org>  Mon, 07 Mar 2011 15:21:40 +0900
+ -- TANIGUCHI Takaki <takaki at debian.org>  Mon, 07 Mar 2011 15:27:39 +0900
 
 python-jsonrpc2 (0.2.3-1) unstable; urgency=low
 

Added: packages/python-jsonrpc2/trunk/debian/clean
===================================================================
--- packages/python-jsonrpc2/trunk/debian/clean	                        (rev 0)
+++ packages/python-jsonrpc2/trunk/debian/clean	2011-03-07 06:42:10 UTC (rev 16019)
@@ -0,0 +1 @@
+src/jsonrpc2.egg-info/PKG-INFO

Deleted: packages/python-jsonrpc2/trunk/debian/patches/debian-changes-0.2.3-1
===================================================================
--- packages/python-jsonrpc2/trunk/debian/patches/debian-changes-0.2.3-1	2011-03-07 06:26:10 UTC (rev 16018)
+++ packages/python-jsonrpc2/trunk/debian/patches/debian-changes-0.2.3-1	2011-03-07 06:42:10 UTC (rev 16019)
@@ -1,267 +0,0 @@
-Description: Upstream changes introduced in version 0.2.3-1
- This patch has been created by dpkg-source during the package build.
- Here's the last changelog entry, hopefully it gives details on why
- those changes were made:
- .
- python-jsonrpc2 (0.2.3-1) unstable; urgency=low
- .
-   * Initial release (Closes: #603531)
- .
- The person named in the Author field signed this changelog entry.
-Author: TANIGUCHI Takaki <takaki at debian.org>
-Bug-Debian: http://bugs.debian.org/603531
-
----
-The information above should follow the Patch Tagging Guidelines, please
-checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
-are templates for supplementary fields that you might want to add:
-
-Origin: <vendor|upstream|other>, <url of original patch>
-Bug: <url in upstream bugtracker>
-Bug-Debian: http://bugs.debian.org/<bugnumber>
-Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
-Forwarded: <no|not-needed|url proving that it has been forwarded>
-Reviewed-By: <name and email of someone who approved the patch>
-Last-Update: <YYYY-MM-DD>
-
---- python-jsonrpc2-0.2.3.orig/src/jsonrpc2.egg-info/PKG-INFO
-+++ python-jsonrpc2-0.2.3/src/jsonrpc2.egg-info/PKG-INFO
-@@ -14,41 +14,41 @@ Description: jsonrpc2 is WSGI Framework
-         
-         ::
-         
--        >>> import simplejson as json
--        >>> from jsonrpc2 import JsonRpcApplication
-+         >>> import simplejson as json
-+         >>> from jsonrpc2 import JsonRpcApplication
-         
-         sample procedure::
-         
--        >>> def greeting(name="world"):
--        ...     return "Hello, %s!" % name
-+         >>> def greeting(name="world"):
-+         ...     return "Hello, %s!" % name
-         
-         create rpc application::
-         
--        >>> app = JsonRpcApplication(rpcs=dict(greeting=greeting))
-+         >>> app = JsonRpcApplication(rpcs=dict(greeting=greeting))
-         
-         set up for test::
-         
--        >>> from webtest import TestApp
--        >>> testapp = TestApp(app)
-+         >>> from webtest import TestApp
-+         >>> testapp = TestApp(app)
-         
-         call procedure::
-         
--        >>> call_values = {'jsonrpc':'2.0', 'method':'greeting', 'id':'greeting'}
--        >>> res = testapp.post('/', params=json.dumps(call_values), content_type="application/json")
-+         >>> call_values = {'jsonrpc':'2.0', 'method':'greeting', 'id':'greeting'}
-+         >>> res = testapp.post('/', params=json.dumps(call_values), content_type="application/json")
-         
-         got results::
-         
--        >>> res.json
--        {'jsonrpc': '2.0', 'id': 'greeting', 'result': 'Hello, world!'}
-+         >>> res.json
-+         {'jsonrpc': '2.0', 'id': 'greeting', 'result': 'Hello, world!'}
-         
-         
-         lazy loading::
-         
--        >>> app.rpc.methods['sample.add'] = 'tests.sample:add'
--        >>> call_values = {'jsonrpc':'2.0', 'method':'sample.add', 'id':'sample.add', 'params':[1, 2]}
--        >>> res = testapp.post('/', params=json.dumps(call_values), content_type="application/json")
--        >>> res.json
--        {'jsonrpc': '2.0', 'id': 'sample.add', 'result': 3}
-+         >>> app.rpc.methods['sample.add'] = 'tests.sample:add'
-+         >>> call_values = {'jsonrpc':'2.0', 'method':'sample.add', 'id':'sample.add', 'params':[1, 2]}
-+         >>> res = testapp.post('/', params=json.dumps(call_values), content_type="application/json")
-+         >>> res.json
-+         {'jsonrpc': '2.0', 'id': 'sample.add', 'result': 3}
-         
-         
-         JSON-RPC2 Example
-@@ -56,108 +56,108 @@ Description: jsonrpc2 is WSGI Framework
-         
-         use raw rpc processor::
-         
--        >>> from jsonrpc2 import JsonRpc
--        >>> rpc = JsonRpc()
-+         >>> from jsonrpc2 import JsonRpc
-+         >>> rpc = JsonRpc()
-         
-         sample procedures::
-         
--        >>> def subtract(minuend, subtrahend):
--        ...     return minuend - subtrahend
--        >>> def update(*args):
--        ...     pass
--        >>> def foobar():
--        ...     pass
-+         >>> def subtract(minuend, subtrahend):
-+         ...     return minuend - subtrahend
-+         >>> def update(*args):
-+         ...     pass
-+         >>> def foobar():
-+         ...     pass
-         
-         register procedures with dict interface::
-         
--        >>> rpc['subtract'] = subtract
--        >>> rpc['update'] = update
--        >>> rpc['foobar'] = foobar
-+         >>> rpc['subtract'] = subtract
-+         >>> rpc['update'] = update
-+         >>> rpc['foobar'] = foobar
-         
-         Procedure Call with positional parameters::
-         
--        >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": [42, 23], "id": 1})
--        {'jsonrpc': '2.0', 'id': 1, 'result': 19}
-+         >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": [42, 23], "id": 1})
-+         {'jsonrpc': '2.0', 'id': 1, 'result': 19}
-         
--        >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": [23, 42], "id": 2})
--        {'jsonrpc': '2.0', 'id': 2, 'result': -19}
-+         >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": [23, 42], "id": 2})
-+         {'jsonrpc': '2.0', 'id': 2, 'result': -19}
-         
-         Procedure Call with named parameters::
-         
--        >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": {"subtrahend": 23, "minuend": 42}, "id": 3})
--        {'jsonrpc': '2.0', 'id': 3, 'result': 19}
-+         >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": {"subtrahend": 23, "minuend": 42}, "id": 3})
-+         {'jsonrpc': '2.0', 'id': 3, 'result': 19}
-         
--        >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": {"minuend": 42, "subtrahend": 23}, "id": 4})
--        {'jsonrpc': '2.0', 'id': 4, 'result': 19}
-+         >>> rpc({"jsonrpc": "2.0", "method": "subtract", "params": {"minuend": 42, "subtrahend": 23}, "id": 4})
-+         {'jsonrpc': '2.0', 'id': 4, 'result': 19}
-         
-         Notification::
-         
--        >>> rpc({"jsonrpc": "2.0", "method": "update", "params": [1,2,3,4,5]})
--        >>> rpc({"jsonrpc": "2.0", "method": "foobar"})
-+         >>> rpc({"jsonrpc": "2.0", "method": "update", "params": [1,2,3,4,5]})
-+         >>> rpc({"jsonrpc": "2.0", "method": "foobar"})
-         
-         Procedure Call of non-existent procedure::
--        >>> del rpc['foobar']
--        >>> rpc({"jsonrpc": "2.0", "method": "foobar", "id": "1"})
--        {'jsonrpc': '2.0', 'id': '1', 'error': {'message': 'Method Not Found', 'code': -32601}}
-+         >>> del rpc['foobar']
-+         >>> rpc({"jsonrpc": "2.0", "method": "foobar", "id": "1"})
-+         {'jsonrpc': '2.0', 'id': '1', 'error': {'message': 'Method Not Found', 'code': -32601}}
-         
-         Procedure Call with invalid JSON-RPC::
-         
--        >>> rpc([1,2,3])
--        {'jsonrpc': '2.0', 'id': None, 'error': {'message': 'Invalid Request', 'code': -32600}}
-+         >>> rpc([1,2,3])
-+         {'jsonrpc': '2.0', 'id': None, 'error': {'message': 'Invalid Request', 'code': -32600}}
-         
--        >>> rpc({"jsonrpc": "2.0", "method": 1, "params": "bar"})
--        {'jsonrpc': '2.0', 'id': None, 'error': {'message': 'Invalid Request', 'code': -32600}}
-+         >>> rpc({"jsonrpc": "2.0", "method": 1, "params": "bar"})
-+         {'jsonrpc': '2.0', 'id': None, 'error': {'message': 'Invalid Request', 'code': -32600}}
-         
-         
-         Batched Call::
-         
--        >>> rpc['sum'] = lambda *args: reduce(lambda a, b: a + b, args)
--        >>> def get_data():
--        ...     return ["hello", 5]
--        >>> rpc['get_data'] = get_data
--        >>> result = rpc ([ {"jsonrpc": "2.0", "method": "sum", "params": [1,2,4], "id": "1"},
--        ...      {"jsonrpc": "2.0", "method": "notify_hello", "params": [7]},
--        ...      {"jsonrpc": "2.0", "method": "subtract", "params": [42,23], "id": "2"},
--        ...      {"foo": "boo"},
--        ...      {"jsonrpc": "2.0", "method": "foo.get", "params": {"name": "myself"}, "id": "5"},
--        ...      {"jsonrpc": "2.0", "method": "get_data", "id": "9"} ])
--        >>> from pprint import pprint
--        >>> pprint(result)
--        [{'id': '1', 'jsonrpc': '2.0', 'result': 7},
--        {'error': {'code': -32601, 'message': 'Method Not Found'},
--        'id': None,
--        'jsonrpc': '2.0'},
--        {'id': '2', 'jsonrpc': '2.0', 'result': 19},
--        {'error': {'code': -32600, 'message': 'Invalid Request'},
--        'id': None,
--        'jsonrpc': '2.0'},
--        {'error': {'code': -32601, 'message': 'Method Not Found'},
--        'id': '5',
--        'jsonrpc': '2.0'},
--        {'id': '9', 'jsonrpc': '2.0', 'result': ['hello', 5]}]
-+         >>> rpc['sum'] = lambda *args: reduce(lambda a, b: a + b, args)
-+         >>> def get_data():
-+         ...     return ["hello", 5]
-+         >>> rpc['get_data'] = get_data
-+         >>> result = rpc ([ {"jsonrpc": "2.0", "method": "sum", "params": [1,2,4], "id": "1"},
-+         ...      {"jsonrpc": "2.0", "method": "notify_hello", "params": [7]},
-+         ...      {"jsonrpc": "2.0", "method": "subtract", "params": [42,23], "id": "2"},
-+         ...      {"foo": "boo"},
-+         ...      {"jsonrpc": "2.0", "method": "foo.get", "params": {"name": "myself"}, "id": "5"},
-+         ...      {"jsonrpc": "2.0", "method": "get_data", "id": "9"} ])
-+         >>> from pprint import pprint
-+         >>> pprint(result)
-+         [{'id': '1', 'jsonrpc': '2.0', 'result': 7},
-+          {'error': {'code': -32601, 'message': 'Method Not Found'},
-+           'id': None,
-+           'jsonrpc': '2.0'},
-+          {'id': '2', 'jsonrpc': '2.0', 'result': 19},
-+          {'error': {'code': -32600, 'message': 'Invalid Request'},
-+           'id': None,
-+           'jsonrpc': '2.0'},
-+          {'error': {'code': -32601, 'message': 'Method Not Found'},
-+           'id': '5',
-+           'jsonrpc': '2.0'},
-+          {'id': '9', 'jsonrpc': '2.0', 'result': ['hello', 5]}]
-         
-         
-         
--        0.2
--        -----------------------------------------------
--        
--        - remove dependency to WebOb
--        - split procedure call class from web application class
--        
--        0.2.1
--        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--        
--        - lazy loading from method name.
--        
--        0.2.2
--        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--        
--        - add dict interface.
--        
--        0.2.3
--        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--        
--        - fix: read body with CONTENT_LENGTH.
-+        0.2
-+        -----------------------------------------------
-+        
-+        - remove dependency to WebOb
-+        - split procedure call class from web application class
-+        
-+        0.2.1
-+        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-+        
-+        - lazy loading from method name.
-+        
-+        0.2.2
-+        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-+        
-+        - add dict interface.
-+        
-+        0.2.3
-+        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-+        
-+        - fix: read body with CONTENT_LENGTH.
-         
- Keywords: wsgi request web http json rpc
- Platform: UNKNOWN

Deleted: packages/python-jsonrpc2/trunk/debian/patches/series
===================================================================
--- packages/python-jsonrpc2/trunk/debian/patches/series	2011-03-07 06:26:10 UTC (rev 16018)
+++ packages/python-jsonrpc2/trunk/debian/patches/series	2011-03-07 06:42:10 UTC (rev 16019)
@@ -1 +0,0 @@
-debian-changes-0.2.3-1




More information about the Python-modules-commits mailing list