From f3ca66a3e9b7dc16453b9637348e52aee609dfed756ad3c576da3cbaaa0a5e1f Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 24 Oct 2024 19:08:27 +0000 Subject: [PATCH] - update to 2024.10.1: * Declare support for Python 3.13 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsonschema-specifications?expand=0&rev=20 --- .gitattributes | 23 ++++++++ .gitignore | 1 + jsonschema_specifications-2023.12.1.tar.gz | 3 + jsonschema_specifications-2024.10.1.tar.gz | 3 + python-jsonschema-specifications.changes | 69 ++++++++++++++++++++++ python-jsonschema-specifications.spec | 62 +++++++++++++++++++ 6 files changed, 161 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 jsonschema_specifications-2023.12.1.tar.gz create mode 100644 jsonschema_specifications-2024.10.1.tar.gz create mode 100644 python-jsonschema-specifications.changes create mode 100644 python-jsonschema-specifications.spec 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/jsonschema_specifications-2023.12.1.tar.gz b/jsonschema_specifications-2023.12.1.tar.gz new file mode 100644 index 0000000..85a8486 --- /dev/null +++ b/jsonschema_specifications-2023.12.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc +size 13983 diff --git a/jsonschema_specifications-2024.10.1.tar.gz b/jsonschema_specifications-2024.10.1.tar.gz new file mode 100644 index 0000000..f225014 --- /dev/null +++ b/jsonschema_specifications-2024.10.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272 +size 15561 diff --git a/python-jsonschema-specifications.changes b/python-jsonschema-specifications.changes new file mode 100644 index 0000000..2efa030 --- /dev/null +++ b/python-jsonschema-specifications.changes @@ -0,0 +1,69 @@ +------------------------------------------------------------------- +Thu Oct 24 19:08:15 UTC 2024 - Dirk Müller + +- update to 2024.10.1: + * Declare support for Python 3.13 + +------------------------------------------------------------------- +Wed Dec 27 10:54:04 UTC 2023 - Dirk Müller + +- update to 2023.12.1: + * Ignore dotfiles when collectimg schemas + +------------------------------------------------------------------- +Thu Nov 30 17:47:18 UTC 2023 - Johannes Kastl + +- update to 2023.11.2: + no changelog, only diff available at + https://github.com/python-jsonschema/jsonschema-specifications/compare/v2023.11.1...v2023.11.2 + +------------------------------------------------------------------- +Fri Nov 17 06:10:13 UTC 2023 - Johannes Kastl + +- update to 2023.11.1: + no changelog, only diff available at + https://github.com/python-jsonschema/jsonschema-specifications/compare/v2023.07.1...v2023.11.1 + +------------------------------------------------------------------- +Tue Jul 18 18:58:19 UTC 2023 - Johannes Kastl + +- update to 2023.7.1: + no changelog, only diff available at + https://github.com/python-jsonschema/jsonschema-specifications/compare/v2023.06.1...v2023.07.1 + +------------------------------------------------------------------- +Mon Jun 26 05:02:12 UTC 2023 - Johannes Kastl + +- update to 2023.6.1: + full diff available at + https://github.com/python-jsonschema/jsonschema-specifications/ + compare/v2023.05.2...v2023.06.1 + * bump doc requirements + * Enable PYTHONWARNDEFAULTENCODING to catch an encoding + mistake. + +------------------------------------------------------------------- +Wed May 31 05:25:47 UTC 2023 - Johannes Kastl + +- update to 2023.5.2: + full changelog available at + https://github.com/python-jsonschema/jsonschema-specifications/ + compare/v2023.05.1...v2023.05.2 + +------------------------------------------------------------------- +Wed May 17 14:13:12 UTC 2023 - Johannes Kastl + +- update to 2023.05.1: + full changelog available at + https://github.com/python-jsonschema/jsonschema-specifications/ + compare/v2023.03.6...v2023.05.1 + +------------------------------------------------------------------- +Fri May 5 11:05:10 UTC 2023 - Johannes Kastl + +- add sle15_python_module_pythons + +------------------------------------------------------------------- +Fri Mar 24 12:41:22 UTC 2023 - Johannes Kastl + +- new package python-jsonschema-specifications diff --git a/python-jsonschema-specifications.spec b/python-jsonschema-specifications.spec new file mode 100644 index 0000000..6ca2a23 --- /dev/null +++ b/python-jsonschema-specifications.spec @@ -0,0 +1,62 @@ +# +# spec file for package python-jsonschema-specifications +# +# Copyright (c) 2024 SUSE LLC +# +# 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 https://bugs.opensuse.org/ +# + + +%{?sle15_python_module_pythons} +Name: python-jsonschema-specifications +Version: 2024.10.1 +Release: 0 +Summary: The JSON Schema meta-schemas and vocabularies, exposed as a Registry +License: MIT +URL: https://github.com/python-jsonschema/jsonschema-specifications +Source: https://files.pythonhosted.org/packages/source/j/jsonschema-specifications/jsonschema_specifications-%{version}.tar.gz#/jsonschema_specifications-%{version}.tar.gz +BuildRequires: %{python_module hatch_vcs} +BuildRequires: %{python_module hatchling} +BuildRequires: %{python_module pip} +BuildRequires: %{python_module setuptools} +BuildRequires: python-rpm-macros +# SECTION test requirements +BuildRequires: %{python_module importlib_resources} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module referencing >= 0.31.0} +# /SECTION +BuildRequires: fdupes +Requires: python-referencing >= 0.31.0 +BuildArch: noarch +%python_subpackages + +%description +The JSON Schema meta-schemas and vocabularies, exposed as a Registry + +%prep +%setup -q -n jsonschema_specifications-%{version} + +%build +%pyproject_wheel + +%install +%pyproject_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%pytest + +%files %{python_files} +%{python_sitelib}/jsonschema_specifications +%{python_sitelib}/jsonschema_specifications-%{version}.dist-info/ + +%changelog