17
0

Accepting request 707276 from home:jengelh:branches:devel:languages:python

- Trim encyclopedic JSON report from description.

OBS-URL: https://build.opensuse.org/request/show/707276
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-cjson?expand=0&rev=3
This commit is contained in:
Tomáš Chvátal
2019-06-03 19:19:48 +00:00
committed by Git OBS Bridge
parent 27c015c62f
commit dfe81d15a5
2 changed files with 13 additions and 12 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Jun 3 17:56:51 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim encyclopedic JSON report from description.
-------------------------------------------------------------------
Sat May 11 02:13:29 UTC 2019 - John Vandenberg <jayvdb@gmail.com>

View File

@@ -12,38 +12,34 @@
# 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/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-python-cjson
Version: 1.2.1
Release: 0
Summary: C-accelerated JSON encoder/decoder for Python
License: LGPL-2.0-or-later
Summary: Fast JSON encoder/decoder for Python
Url: https://github.com/AGProjects/python-cjson
Group: Development/Languages/Python
Url: https://github.com/AGProjects/python-cjson
Source: https://files.pythonhosted.org/packages/source/p/python-cjson/python-cjson-%{version}.tar.gz
# https://github.com/AGProjects/python-cjson/issues/6
Patch0: py3.patch
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
%python_subpackages
%description
Fast JSON encoder/decoder for Python.
JSON stands for JavaScript Object Notation and is a text based lightweight data
exchange format which is easy for humans to read/write and for machines to
parse/generate. JSON is completely language independent and has multiple
implementations in most of the programming languages, making it ideal for data
exchange and storage.
JSON (JavaScript Object Notation) is a text-based data exchange
format.
The module is written in C and it is up to 250 times faster when compared to
the other python JSON implementations which are written directly in python.
the other Python JSON implementations which are written directly in Python.
This speed gain varies with the complexity of the data and the operation and is
the the range of 10-200 times for encoding operations and in the range of
100-250 times for decoding operations.