commit d7fadaffbbec0d86bad0957f5dc804f2e476b7151f6a533a7c960cb4af127e2e Author: Todd R Date: Wed May 16 17:36:46 2018 +0000 Accepting request 609881 from devel:languages:python:misc JSON-RPC transport implementation OBS-URL: https://build.opensuse.org/request/show/609881 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-json-rpc?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..64b8765 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2013-2017 Kirill Pavlov + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/json-rpc-1.11.0.tar.gz b/json-rpc-1.11.0.tar.gz new file mode 100644 index 0000000..323926f --- /dev/null +++ b/json-rpc-1.11.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5e53f80699e97754bfd8a29c86138aa144c4e6663fe80c0be5270fc6f177166 +size 29442 diff --git a/python-json-rpc.changes b/python-json-rpc.changes new file mode 100644 index 0000000..1210ef8 --- /dev/null +++ b/python-json-rpc.changes @@ -0,0 +1,18 @@ +------------------------------------------------------------------- +Wed May 16 15:56:38 UTC 2018 - toddrme2178@gmail.com + +- Update to version 1.11.0 + * custom exception functionality + * Add handle_request to manager to handle correct request. + * Add django backend. + * ADD: support for types in methods + * Remove redundant json parsing + * Add request instance to a reponse object + * Fix Flask integration +- Implement single-spec version + +------------------------------------------------------------------- +Thu Jun 4 00:00:00 UTC 2009 - cfarrell1980@gmail.com + +- Initial import + diff --git a/python-json-rpc.spec b/python-json-rpc.spec new file mode 100644 index 0000000..adc8cad --- /dev/null +++ b/python-json-rpc.spec @@ -0,0 +1,67 @@ +# +# spec file for package python-json-rpc +# +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-json-rpc +Version: 1.11.0 +Release: 0 +License: MIT +Summary: JSON-RPC transport implementation +Url: https://github.com/pavlov99/json-rpc +Group: Development/Languages/Python +Source: https://files.pythonhosted.org/packages/source/j/json-rpc/json-rpc-%{version}.tar.gz +Source10: https://raw.githubusercontent.com/pavlov99/json-rpc/%{version}/LICENSE.txt +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +# SECTION test requirements +BuildRequires: %{python_module mock} +BuildRequires: %{python_module nose} +# /SECTION +BuildArch: noarch + +%python_subpackages + +%description +JSON-RPC 2.0 and JSON-RPC 1.0 transport specification implementation. + +This implementation does not have any transport functionality +realization, only protocol. Any client or server implementation is +easy based on current code, but requires transport libraries, such as +requests, gevent or zmq. + +%prep +%setup -q -n json-rpc-%{version} +cp %{SOURCE10} . + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%python_exec setup.py test + +%files %{python_files} +%doc README.rst +%license LICENSE.txt +%{python_sitelib}/* + +%changelog