Compare commits
No commits in common. "c10" and "c8" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
jsonschema-4.19.1.tar.gz
|
SOURCES/jsonschema-2.6.0.tar.gz
|
||||||
|
|||||||
1
.python-jsonschema.metadata
Normal file
1
.python-jsonschema.metadata
Normal file
@ -0,0 +1 @@
|
|||||||
|
97e49df4601f7066d9954c0ec4d8d697887b32f0 SOURCES/jsonschema-2.6.0.tar.gz
|
||||||
@ -1,61 +0,0 @@
|
|||||||
From cbe20c5d50c40167a0736e4175330b6ba11ca9cd Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Ond=C5=99ej=20Budai?= <ondrej@budai.cz>
|
|
||||||
Date: Wed, 26 Jun 2024 15:46:22 +0200
|
|
||||||
Subject: [PATCH] Remove hatch-vcs and hatch-fancy-pypi-readme deps
|
|
||||||
|
|
||||||
These apparently have no effect on the built RPM (I checked manually),
|
|
||||||
so let's drop them from pyproject.toml, so we can remove them from RHEL.
|
|
||||||
---
|
|
||||||
pyproject.toml | 29 +----------------------------
|
|
||||||
1 file changed, 1 insertion(+), 28 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/pyproject.toml b/pyproject.toml
|
|
||||||
index 26d299a..a2bda8c 100644
|
|
||||||
--- a/pyproject.toml
|
|
||||||
+++ b/pyproject.toml
|
|
||||||
@@ -1,10 +1,7 @@
|
|
||||||
[build-system]
|
|
||||||
-requires = ["hatchling", "hatch-vcs", "hatch-fancy-pypi-readme"]
|
|
||||||
+requires = ["hatchling"]
|
|
||||||
build-backend = "hatchling.build"
|
|
||||||
|
|
||||||
-[tool.hatch.version]
|
|
||||||
-source = "vcs"
|
|
||||||
-
|
|
||||||
[project]
|
|
||||||
name = "jsonschema"
|
|
||||||
description = "An implementation of JSON Schema validation for Python"
|
|
||||||
@@ -77,30 +74,6 @@ Tidelift = "https://tidelift.com/subscription/pkg/pypi-jsonschema?utm_source=pyp
|
|
||||||
Changelog = "https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst"
|
|
||||||
Source = "https://github.com/python-jsonschema/jsonschema"
|
|
||||||
|
|
||||||
-[tool.hatch.metadata.hooks.fancy-pypi-readme]
|
|
||||||
-content-type = "text/x-rst"
|
|
||||||
-
|
|
||||||
-[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
|
|
||||||
-path = "README.rst"
|
|
||||||
-end-before = ".. start cut from PyPI"
|
|
||||||
-
|
|
||||||
-[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
|
|
||||||
-path = "README.rst"
|
|
||||||
-start-after = ".. end cut from PyPI\n\n\n"
|
|
||||||
-
|
|
||||||
-[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
|
|
||||||
-text = """
|
|
||||||
-
|
|
||||||
-
|
|
||||||
-Release Information
|
|
||||||
--------------------
|
|
||||||
-
|
|
||||||
-"""
|
|
||||||
-
|
|
||||||
-[[tool.hatch.metadata.hooks.fancy-pypi-readme.fragments]]
|
|
||||||
-path = "CHANGELOG.rst"
|
|
||||||
-pattern = "(^v.+?)\nv"
|
|
||||||
-
|
|
||||||
[tool.coverage.html]
|
|
||||||
show_contexts = true
|
|
||||||
skip_covered = false
|
|
||||||
--
|
|
||||||
2.45.2
|
|
||||||
|
|
||||||
58
SOURCES/avoid-unpackaged-for-jsonschema-2.6.0.patch
Normal file
58
SOURCES/avoid-unpackaged-for-jsonschema-2.6.0.patch
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
diff -ru jsonschema-2.6.0.orig/jsonschema/compat.py jsonschema-2.6.0/jsonschema/compat.py
|
||||||
|
--- jsonschema-2.6.0.orig/jsonschema/compat.py 2015-11-30 13:58:04.000000000 +0100
|
||||||
|
+++ jsonschema-2.6.0/jsonschema/compat.py 2017-07-21 12:57:25.768508757 +0200
|
||||||
|
@@ -8,6 +8,7 @@
|
||||||
|
from collections.abc import MutableMapping, Sequence # noqa
|
||||||
|
|
||||||
|
PY3 = sys.version_info[0] >= 3
|
||||||
|
+PY27 = sys.version_info[:2] == (2, 7)
|
||||||
|
|
||||||
|
if PY3:
|
||||||
|
zip = zip
|
||||||
|
@@ -32,8 +33,10 @@
|
||||||
|
int_types = int, long
|
||||||
|
iteritems = operator.methodcaller("iteritems")
|
||||||
|
|
||||||
|
- from functools32 import lru_cache
|
||||||
|
-
|
||||||
|
+ if PY27:
|
||||||
|
+ from repoze.lru import lru_cache
|
||||||
|
+ else:
|
||||||
|
+ from functools32 import lru_cache
|
||||||
|
|
||||||
|
# On python < 3.3 fragments are not handled properly with unknown schemes
|
||||||
|
def urlsplit(url):
|
||||||
|
diff -ru jsonschema-2.6.0.orig/setup.py jsonschema-2.6.0/setup.py
|
||||||
|
--- jsonschema-2.6.0.orig/setup.py 2016-08-28 04:29:36.000000000 +0200
|
||||||
|
+++ jsonschema-2.6.0/setup.py 2017-07-21 13:28:06.503903938 +0200
|
||||||
|
@@ -1,6 +1,7 @@
|
||||||
|
import os
|
||||||
|
|
||||||
|
from setuptools import setup
|
||||||
|
+from jsonschema import _version
|
||||||
|
|
||||||
|
|
||||||
|
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as readme:
|
||||||
|
@@ -22,14 +23,14 @@
|
||||||
|
|
||||||
|
extras_require = {
|
||||||
|
"format" : ["rfc3987", "strict-rfc3339", "webcolors"],
|
||||||
|
- ":python_version=='2.7'": ["functools32"],
|
||||||
|
+ ":python_version=='2.7'": ["repoze.lru"],
|
||||||
|
}
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="jsonschema",
|
||||||
|
+ version=_version.__version__,
|
||||||
|
packages=["jsonschema", "jsonschema.tests"],
|
||||||
|
package_data={"jsonschema": ["schemas/*.json"]},
|
||||||
|
- setup_requires=["vcversioner>=2.16.0.0"],
|
||||||
|
extras_require=extras_require,
|
||||||
|
author="Julian Berman",
|
||||||
|
author_email="Julian@GrayVines.com",
|
||||||
|
@@ -39,5 +40,4 @@
|
||||||
|
long_description=long_description,
|
||||||
|
url="http://github.com/Julian/jsonschema",
|
||||||
|
entry_points={"console_scripts": ["jsonschema = jsonschema.cli:main"]},
|
||||||
|
- vcversioner={"version_module_paths" : ["jsonschema/_version.py"]},
|
||||||
|
)
|
||||||
12
SOURCES/test-sys-executable.patch
Normal file
12
SOURCES/test-sys-executable.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
diff -U3 -r jsonschema-2.6.0-orig/jsonschema/tests/test_jsonschema_test_suite.py jsonschema-2.6.0/jsonschema/tests/test_jsonschema_test_suite.py
|
||||||
|
--- jsonschema-2.6.0-orig/jsonschema/tests/test_jsonschema_test_suite.py 2016-11-27 16:49:17.000000000 +0100
|
||||||
|
+++ jsonschema-2.6.0/jsonschema/tests/test_jsonschema_test_suite.py 2018-05-30 15:29:44.840669853 +0200
|
||||||
|
@@ -47,7 +47,7 @@
|
||||||
|
JSONSCHEMA_SUITE = os.path.join(SUITE, "bin", "jsonschema_suite")
|
||||||
|
|
||||||
|
remotes_stdout = subprocess.Popen(
|
||||||
|
- ["python", JSONSCHEMA_SUITE, "remotes"], stdout=subprocess.PIPE,
|
||||||
|
+ [sys.executable, JSONSCHEMA_SUITE, "remotes"], stdout=subprocess.PIPE,
|
||||||
|
).stdout
|
||||||
|
|
||||||
|
with closing(remotes_stdout):
|
||||||
138
SPECS/python-jsonschema.spec
Normal file
138
SPECS/python-jsonschema.spec
Normal file
@ -0,0 +1,138 @@
|
|||||||
|
# Created by pyp2rpm-0.4.2
|
||||||
|
%global pypi_name jsonschema
|
||||||
|
|
||||||
|
Name: python-%{pypi_name}
|
||||||
|
Version: 2.6.0
|
||||||
|
Release: 4%{?dist}
|
||||||
|
Summary: An implementation of JSON Schema validation for Python
|
||||||
|
|
||||||
|
License: MIT
|
||||||
|
URL: http://pypi.python.org/pypi/jsonschema
|
||||||
|
Source0: https://files.pythonhosted.org/packages/source/j/jsonschema/%{pypi_name}-%{version}.tar.gz
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
BuildRequires: python%{python3_pkgversion}-devel
|
||||||
|
BuildRequires: python%{python3_pkgversion}-nose
|
||||||
|
BuildRequires: python%{python3_pkgversion}-mock
|
||||||
|
|
||||||
|
# avoid functools32, vcversioner
|
||||||
|
Patch0: avoid-unpackaged-for-jsonschema-2.6.0.patch
|
||||||
|
|
||||||
|
Patch1: test-sys-executable.patch
|
||||||
|
|
||||||
|
%description
|
||||||
|
jsonschema is JSON Schema validator currently based on
|
||||||
|
http://tools.ietf.org/html/draft-zyp-json-schema-03
|
||||||
|
|
||||||
|
%package -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
Summary: An implementation of JSON Schema validation for Python %{python3_version}
|
||||||
|
%{?python_provide:%python_provide python%{python3_pkgversion}-%{pypi_name}}
|
||||||
|
|
||||||
|
%description -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
jsonschema is JSON Schema validator currently based on
|
||||||
|
http://tools.ietf.org/html/draft-zyp-json-schema-03
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n %{pypi_name}-%{version}
|
||||||
|
%patch0 -p1
|
||||||
|
%patch1 -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
%py3_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%py3_install
|
||||||
|
mv %{buildroot}%{_bindir}/jsonschema %{buildroot}%{_bindir}/jsonschema-3
|
||||||
|
|
||||||
|
%check
|
||||||
|
%{__python3} -m nose -v
|
||||||
|
|
||||||
|
%files -n python%{python3_pkgversion}-%{pypi_name}
|
||||||
|
%license COPYING
|
||||||
|
%doc README.rst
|
||||||
|
%{_bindir}/jsonschema-3
|
||||||
|
%{python3_sitelib}/%{pypi_name}/
|
||||||
|
%{python3_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Wed May 30 2018 Petr Viktorin <pviktori@redhat.com> - 2.6.0-4
|
||||||
|
- Drop the Python2 subpackage
|
||||||
|
https://bugzilla.redhat.com/show_bug.cgi?id=1584189
|
||||||
|
- Use sys.executable rather than unversioned "python" in tests
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2017 Jan Beran <jberan@redhat.com> 2.6.0-1
|
||||||
|
- Update to 2.6.0
|
||||||
|
- Fix of missing Python 3 version executables
|
||||||
|
|
||||||
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Dec 14 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.5.1-4
|
||||||
|
- Rebuild for Python 3.6
|
||||||
|
|
||||||
|
* Mon Nov 21 2016 Orion Poplawski <orion@cora.nwra.com> - 2.5.1-3
|
||||||
|
- Enable python3 builds for EPEL (bug #1395653)
|
||||||
|
- Ship python2-jsonschema
|
||||||
|
- Modernize spec
|
||||||
|
- Use %%license
|
||||||
|
|
||||||
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-2
|
||||||
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
||||||
|
|
||||||
|
* Fri Feb 26 2016 Lon Hohberger <lhh@redhat.com> 2.5.1-1
|
||||||
|
- Update to 2.5.1
|
||||||
|
|
||||||
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
|
||||||
|
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 2.4.0-3
|
||||||
|
- Rebuilt for Python3.5 rebuild
|
||||||
|
|
||||||
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Sep 06 2014 Alan Pevec <apevec@redhat.com> - 2.4.0-1
|
||||||
|
- Latest upstream
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 2.3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
||||||
|
|
||||||
|
* Mon Mar 10 2014 Pádraig Brady <pbrady@redhat.com> - 2.3.0-1
|
||||||
|
- Latest upstream
|
||||||
|
|
||||||
|
* Tue Feb 04 2014 Matthias Runge <mrunge@redhat.com> - 2.0.0-3
|
||||||
|
- fix %%{? issues in spec
|
||||||
|
|
||||||
|
* Thu Oct 17 2013 Thomas Spura <tomspur@fedoraproject.org> - 2.0.0-2
|
||||||
|
- add python3 subpackage (#1016207)
|
||||||
|
- add %%check
|
||||||
|
|
||||||
|
* Fri Aug 16 2013 Alan Pevec <apevec@redhat.com> 2.0.0-1
|
||||||
|
- Update to 2.0.0 release
|
||||||
|
|
||||||
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 13 2013 Pádraig Brady <P@draigBrady.com> - 1.3.0-1
|
||||||
|
- Update to 1.3.0 release
|
||||||
|
|
||||||
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed May 23 2012 Pádraig Brady <P@draigBrady.com> - 0.2-1
|
||||||
|
- Initial package.
|
||||||
@ -1,309 +0,0 @@
|
|||||||
%global pypi_name jsonschema
|
|
||||||
|
|
||||||
%global common_description %{expand:
|
|
||||||
jsonschema is an implementation of JSON Schema for Python (supporting
|
|
||||||
2.7+, including Python 3).
|
|
||||||
|
|
||||||
- Full support for Draft 7, Draft 6, Draft 4 and Draft 3
|
|
||||||
- Lazy validation that can iteratively report all validation errors.
|
|
||||||
- Small and extensible
|
|
||||||
- Programmatic querying of which properties or items failed validation.}
|
|
||||||
|
|
||||||
Name: python-%{pypi_name}
|
|
||||||
Summary: Implementation of JSON Schema validation for Python
|
|
||||||
Version: 4.19.1
|
|
||||||
Release: 7%{?dist}
|
|
||||||
License: MIT
|
|
||||||
URL: https://github.com/Julian/jsonschema
|
|
||||||
Source0: %{pypi_source}
|
|
||||||
Patch0: 0001-Remove-hatch-vcs-and-hatch-fancy-pypi-readme-deps.patch
|
|
||||||
|
|
||||||
BuildArch: noarch
|
|
||||||
BuildRequires: python3-devel
|
|
||||||
|
|
||||||
# test requirements
|
|
||||||
%if %{defined rhel}
|
|
||||||
%bcond_with tests
|
|
||||||
%else
|
|
||||||
%bcond_without tests
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{with tests}
|
|
||||||
# For “trial-3”
|
|
||||||
BuildRequires: python3dist(twisted)
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description %{common_description}
|
|
||||||
|
|
||||||
|
|
||||||
%package -n python3-%{pypi_name}
|
|
||||||
Summary: %{summary}
|
|
||||||
%description -n python3-%{pypi_name} %{common_description}
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -n %{pypi_name}-%{version} -p1
|
|
||||||
|
|
||||||
# Requires a checkout of the JSON-Schema-Test-Suite
|
|
||||||
# https://github.com/json-schema-org/JSON-Schema-Test-Suite
|
|
||||||
rm jsonschema/tests/test_jsonschema_test_suite.py
|
|
||||||
|
|
||||||
%generate_buildrequires
|
|
||||||
%pyproject_buildrequires -w
|
|
||||||
|
|
||||||
%build
|
|
||||||
%pyproject_wheel
|
|
||||||
|
|
||||||
%install
|
|
||||||
%pyproject_install
|
|
||||||
%pyproject_save_files %{pypi_name}
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with tests}
|
|
||||||
%check
|
|
||||||
PYTHONPATH=%{buildroot}%{python3_sitelib} trial-3 %{pypi_name}
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files -n python3-%{pypi_name} -f %{pyproject_files}
|
|
||||||
%license COPYING json/LICENSE
|
|
||||||
%doc README.rst
|
|
||||||
%{_bindir}/jsonschema
|
|
||||||
|
|
||||||
%changelog
|
|
||||||
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 4.19.1-7
|
|
||||||
- Bump release for October 2024 mass rebuild:
|
|
||||||
Resolves: RHEL-64018
|
|
||||||
|
|
||||||
* Thu Jun 27 2024 Ondřej Budai <obudai@redhat.com> - 4.19.1-6
|
|
||||||
- Remove meta-subpackages because they are not needed in RHEL
|
|
||||||
|
|
||||||
* Wed Jun 26 2024 Ondřej Budai <obudai@redhat.com> - 4.19.1-5
|
|
||||||
- Drop unneeded build dependencies
|
|
||||||
|
|
||||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 4.19.1-4
|
|
||||||
- Bump release for June 2024 mass rebuild
|
|
||||||
|
|
||||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 4.19.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Sep 20 2023 Joel Capitao <jcapitao@redhat.com> - 4.19.1-1
|
|
||||||
- Update to 4.19.1 release (#2239879)
|
|
||||||
|
|
||||||
* Mon Aug 07 2023 Joel Capitao <jcapitao@redhat.com> - 4.19.0-1
|
|
||||||
- Update to 4.19.0 release (#2139238)
|
|
||||||
|
|
||||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.17.3-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jun 29 2023 Python Maint <python-maint@redhat.com> - 4.17.3-4
|
|
||||||
- Rebuilt for Python 3.12
|
|
||||||
|
|
||||||
* Thu Jun 15 2023 Python Maint <python-maint@redhat.com> - 4.17.3-3
|
|
||||||
- Bootstrap for Python 3.12
|
|
||||||
|
|
||||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 4.17.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 19 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.17.3-1
|
|
||||||
- Update to 4.17.3 release
|
|
||||||
|
|
||||||
* Mon Nov 07 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.17.0-1
|
|
||||||
- Update to 4.17.0 release
|
|
||||||
|
|
||||||
* Wed Sep 21 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.16.0-1
|
|
||||||
- Update to 4.16.0 release
|
|
||||||
|
|
||||||
* Wed Aug 17 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.10.0-1
|
|
||||||
- Update to 4.10.0 release
|
|
||||||
|
|
||||||
* Mon Aug 01 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.9.0-1
|
|
||||||
- Update to 4.9.0 release
|
|
||||||
|
|
||||||
* Sun Jul 24 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.7.2-1
|
|
||||||
- Update to 4.7.2 release
|
|
||||||
|
|
||||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jun 28 2022 Benjamin A. Beasley <code@musicinmybrain.net> - 4.6.0-3
|
|
||||||
- Drop some BuildRequires that are generated or no longer needed
|
|
||||||
|
|
||||||
* Tue Jun 28 2022 Miro Hrončok <mhroncok@redhat.com> - 4.6.0-2
|
|
||||||
- Include the metadata directory in python3-jsonschema
|
|
||||||
- Fixes: rhbz#2101786
|
|
||||||
|
|
||||||
* Mon Jun 27 2022 Parag Nemade <pnemade AT redhat DOT com> - 4.6.0-1
|
|
||||||
- Update to 4.6.0
|
|
||||||
|
|
||||||
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 3.2.0-17
|
|
||||||
- Rebuilt for Python 3.11
|
|
||||||
|
|
||||||
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 3.2.0-16
|
|
||||||
- Bootstrap for Python 3.11
|
|
||||||
|
|
||||||
* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 3.2.0-15
|
|
||||||
- Rebuilt for Python 3.11
|
|
||||||
|
|
||||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 3.2.0-14
|
|
||||||
- Bootstrap for Python 3.11
|
|
||||||
|
|
||||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-13
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 3.2.0-11
|
|
||||||
- Rebuilt for Python 3.10
|
|
||||||
|
|
||||||
* Thu Jun 03 2021 Python Maint <python-maint@redhat.com> - 3.2.0-10
|
|
||||||
- Bootstrap for Python 3.10
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Nov 10 2020 Nils Philippsen <nils@redhat.com> - 3.2.0-8
|
|
||||||
- Provide python3dist(jsonschema[format]) again (#1878976)
|
|
||||||
|
|
||||||
* Tue Sep 29 2020 Miro Hrončok <mhroncok@redhat.com> - 3.2.0-7
|
|
||||||
- Remove metapackage for python3dist(jsonschema[format]) (missing deps, #1880820)
|
|
||||||
|
|
||||||
* Sat Sep 19 2020 Miro Hrončok <mhroncok@redhat.com> - 3.2.0-6
|
|
||||||
- Add metapackage for python3dist(jsonschema[format]) needed by python3-bravado-core (#1878976)
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 3.2.0-4
|
|
||||||
- Rebuilt for Python 3.9
|
|
||||||
|
|
||||||
* Sat May 23 2020 Miro Hrončok <mhroncok@redhat.com> - 3.2.0-3
|
|
||||||
- Bootstrap for Python 3.9
|
|
||||||
|
|
||||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Dec 07 2019 Fabio Valentini <decathorpe@gmail.com> - 3.2.0-1
|
|
||||||
- Update to version 3.2.0.
|
|
||||||
|
|
||||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.2-4
|
|
||||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
||||||
|
|
||||||
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.2-3
|
|
||||||
- Rebuilt for Python 3.8
|
|
||||||
|
|
||||||
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 3.0.2-2
|
|
||||||
- Bootstrap for Python 3.8
|
|
||||||
|
|
||||||
* Fri Aug 02 2019 Fabio Valentini <decathorpe@gmail.com> - 3.0.2-1
|
|
||||||
- Update to version 3.0.2.
|
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Mar 01 2019 Fabio Valentini <decathorpe@gmail.com> - 3.0.1-1
|
|
||||||
- Update to version 3.0.1.
|
|
||||||
|
|
||||||
* Sun Feb 24 2019 Fabio Valentini <decathorpe@gmail.com> - 3.0.0-1
|
|
||||||
- Update to version 3.0.0.
|
|
||||||
|
|
||||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.0~b3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 28 2019 Fabio Valentini <decathorpe@gmail.com> - 3.0.0~b3-1
|
|
||||||
- Update to version 3.0.0b3.
|
|
||||||
|
|
||||||
* Tue Jan 22 2019 Fabio Valentini <decathorpe@gmail.com> - 3.0.0~b1-1
|
|
||||||
- Update to version 3.0.0b1.
|
|
||||||
|
|
||||||
* Sat Jan 19 2019 Fabio Valentini <decathorpe@gmail.com> - 3.0.0~a5-1
|
|
||||||
- Update to version 3.0.0a5.
|
|
||||||
- Moved python2 sub-package to separate source package.
|
|
||||||
|
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 2.6.0-5
|
|
||||||
- Rebuilt for Python 3.7
|
|
||||||
|
|
||||||
* Wed Feb 21 2018 Iryna Shcherbina <ishcherb@redhat.com> - 2.6.0-4
|
|
||||||
- Update Python 2 dependency declarations to new packaging standards
|
|
||||||
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 21 2017 Jan Beran <jberan@redhat.com> 2.6.0-1
|
|
||||||
- Update to 2.6.0
|
|
||||||
- Fix of missing Python 3 version executables
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.1-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Dec 14 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.5.1-4
|
|
||||||
- Rebuild for Python 3.6
|
|
||||||
|
|
||||||
* Mon Nov 21 2016 Orion Poplawski <orion@cora.nwra.com> - 2.5.1-3
|
|
||||||
- Enable python3 builds for EPEL (bug #1395653)
|
|
||||||
- Ship python2-jsonschema
|
|
||||||
- Modernize spec
|
|
||||||
- Use %%license
|
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-2
|
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
||||||
|
|
||||||
* Fri Feb 26 2016 Lon Hohberger <lhh@redhat.com> 2.5.1-1
|
|
||||||
- Update to 2.5.1
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 2.4.0-3
|
|
||||||
- Rebuilt for Python3.5 rebuild
|
|
||||||
|
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Sep 06 2014 Alan Pevec <apevec@redhat.com> - 2.4.0-1
|
|
||||||
- Latest upstream
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 2.3.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
||||||
|
|
||||||
* Mon Mar 10 2014 Pádraig Brady <pbrady@redhat.com> - 2.3.0-1
|
|
||||||
- Latest upstream
|
|
||||||
|
|
||||||
* Tue Feb 04 2014 Matthias Runge <mrunge@redhat.com> - 2.0.0-3
|
|
||||||
- fix %%{? issues in spec
|
|
||||||
|
|
||||||
* Thu Oct 17 2013 Thomas Spura <tomspur@fedoraproject.org> - 2.0.0-2
|
|
||||||
- add python3 subpackage (#1016207)
|
|
||||||
- add %%check
|
|
||||||
|
|
||||||
* Fri Aug 16 2013 Alan Pevec <apevec@redhat.com> 2.0.0-1
|
|
||||||
- Update to 2.0.0 release
|
|
||||||
|
|
||||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 13 2013 Pádraig Brady <P@draigBrady.com> - 1.3.0-1
|
|
||||||
- Update to 1.3.0 release
|
|
||||||
|
|
||||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed May 23 2012 Pádraig Brady <P@draigBrady.com> - 0.2-1
|
|
||||||
- Initial package.
|
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user