Hello community,
here is the log from the commit of package python-python-cjson for
openSUSE:Factory checked in at 2019-06-19 21:02:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-python-cjson (Old)
and /work/SRC/openSUSE:Factory/.python-python-cjson.new.4811 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-python-cjson"
Wed Jun 19 21:02:57 2019 rev:2 rq:707300 version:1.2.1
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-python-cjson/python-python-cjson.changes
2019-05-16 22:07:14.846437788 +0200
+++
/work/SRC/openSUSE:Factory/.python-python-cjson.new.4811/python-python-cjson.changes
2019-06-19 21:03:07.938226926 +0200
@@ -1,0 +2,5 @@
+Mon Jun 3 17:56:51 UTC 2019 - Jan Engelhardt <[email protected]>
+
+- Trim encyclopedic JSON report from description.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-python-cjson.spec ++++++
--- /var/tmp/diff_new_pack.zuLPyj/_old 2019-06-19 21:03:08.526227436 +0200
+++ /var/tmp/diff_new_pack.zuLPyj/_new 2019-06-19 21:03:08.530227440 +0200
@@ -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.