Accepting request 989588 from home:apersaud:branches:devel:languages:python

- specfile:
  * update copyright
- update to version 2.15.3:
  * Fix swapping handlers
  * Fix tests
  * Readable regexps in generated code
- changes from version 2.15.2:
  * Fix nested oneOf and anyOf
  * Fix if-else block in anyOf block
  * Fix uniqueItems including lists or dicts
  * Add option to pass custom formats in generated code
- changes from version 2.15.1:
  * Fix parsing date-time with +hhmm format
  * Fix generating code with custom regular expressions
- changes from version 2.15.0:
  * Fix additional property equal to empty object is the same as True
  * Fix const with "
  * Add const to error message
  * Add JsonSchemaValueException (replacement for JsonSchemaException)
    + JsonSchemaException is base exception
    + JsonSchemaDefinitionException no longer inherits from
      JsonSchemaValueException
  * New option `use_default` to have option turn off default feature
    (`True` by default to be compatible)
- changes from version 2.14.5:
  * Fix missing dependencies
  * Fix schema cache

OBS-URL: https://build.opensuse.org/request/show/989588
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fastjsonschema?expand=0&rev=1
This commit is contained in:
Matej Cepl 2022-07-16 16:29:45 +00:00 committed by Git OBS Bridge
commit 7e49b2ba6f
5 changed files with 128 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -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

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a572f0836962d844c1fc435e200b2e4f4677e4e6611a2e3bdd01ba697c275ec
size 18469

View File

@ -0,0 +1,40 @@
-------------------------------------------------------------------
Sat Jul 16 15:33:14 UTC 2022 - Arun Persaud <arun@gmx.de>
- specfile:
* update copyright
- update to version 2.15.3:
* Fix swapping handlers
* Fix tests
* Readable regexps in generated code
- changes from version 2.15.2:
* Fix nested oneOf and anyOf
* Fix if-else block in anyOf block
* Fix uniqueItems including lists or dicts
* Add option to pass custom formats in generated code
- changes from version 2.15.1:
* Fix parsing date-time with +hhmm format
* Fix generating code with custom regular expressions
- changes from version 2.15.0:
* Fix additional property equal to empty object is the same as True
* Fix const with "
* Add const to error message
* Add JsonSchemaValueException (replacement for JsonSchemaException)
+ JsonSchemaException is base exception
+ JsonSchemaDefinitionException no longer inherits from
JsonSchemaValueException
* New option `use_default` to have option turn off default feature
(`True` by default to be compatible)
- changes from version 2.14.5:
* Fix missing dependencies
* Fix schema cache
-------------------------------------------------------------------
Fri Jun 12 04:52:10 PM UTC 2020 - John Vandenberg <jayvdb@gmail.com>
- Initial spec for v2.14.4

View File

@ -0,0 +1,61 @@
#
# spec file for package python-fastjsonschema
#
# Copyright (c) 2022 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-fastjsonschema
Version: 2.15.3
Release: 0
License: BSD
oSummary: Fastest Python implementation of JSON schema
Url: https://github.com/seznam/python-fastjsonschema
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/f/fastjsonschema/fastjsonschema-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
Suggests: python-colorama
Suggests: python-jsonschema
Suggests: python-json-spec
Suggests: python-pylint
Suggests: python-pytest
Suggests: python-pytest-benchmark
Suggests: python-pytest-cache
Suggests: python-validictory
BuildArch: noarch
%python_subpackages
%description
Fastest Python implementation of JSON schema
%prep
%setup -q -n fastjsonschema-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog