From 31e6920e876deb0f04951e5666de4b12fefd6fd4 Mon Sep 17 00:00:00 2001 From: tuibuilder_pel7x64builder0 Date: Sun, 7 Feb 2021 01:23:36 +0100 Subject: [PATCH] python-jsonschema package update Signed-off-by: tuibuilder_pel7x64builder0 --- ...void-unpackaged-for-jsonschema-2.6.0.patch | 58 ++++++++ SOURCES/test-sys-executable.patch | 12 ++ SPECS/python-jsonschema.spec | 132 ++++++++++++++++++ 3 files changed, 202 insertions(+) create mode 100644 SOURCES/avoid-unpackaged-for-jsonschema-2.6.0.patch create mode 100644 SOURCES/test-sys-executable.patch create mode 100644 SPECS/python-jsonschema.spec diff --git a/SOURCES/avoid-unpackaged-for-jsonschema-2.6.0.patch b/SOURCES/avoid-unpackaged-for-jsonschema-2.6.0.patch new file mode 100644 index 0000000..0c32181 --- /dev/null +++ b/SOURCES/avoid-unpackaged-for-jsonschema-2.6.0.patch @@ -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"]}, + ) diff --git a/SOURCES/test-sys-executable.patch b/SOURCES/test-sys-executable.patch new file mode 100644 index 0000000..b7f53fb --- /dev/null +++ b/SOURCES/test-sys-executable.patch @@ -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): diff --git a/SPECS/python-jsonschema.spec b/SPECS/python-jsonschema.spec new file mode 100644 index 0000000..d1e1ed7 --- /dev/null +++ b/SPECS/python-jsonschema.spec @@ -0,0 +1,132 @@ +%global pypi_name jsonschema + +Name: python-%{pypi_name} +Version: 2.6.0 +Release: 1%{?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: python3-devel +# 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 +%{__python3} setup.py build + + +%install +%{__python3} setup.py install --optimize 2 --root %{buildroot} +mv %{buildroot}%{_bindir}/jsonschema %{buildroot}%{_bindir}/jsonschema-3 + + +%files -n python3-%{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 - 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 - 2.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Jul 21 2017 Jan Beran 2.6.0-1 +- Update to 2.6.0 +- Fix of missing Python 3 version executables + +* Sat Feb 11 2017 Fedora Release Engineering - 2.5.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Dec 14 2016 Charalampos Stratakis - 2.5.1-4 +- Rebuild for Python 3.6 + +* Mon Nov 21 2016 Orion Poplawski - 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 - 2.5.1-2 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Fri Feb 26 2016 Lon Hohberger 2.5.1-1 +- Update to 2.5.1 + +* Thu Feb 04 2016 Fedora Release Engineering - 2.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + + +* Tue Oct 13 2015 Robert Kuska - 2.4.0-3 +- Rebuilt for Python3.5 rebuild + +* Thu Jun 18 2015 Fedora Release Engineering - 2.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat Sep 06 2014 Alan Pevec - 2.4.0-1 +- Latest upstream + +* Sat Jun 07 2014 Fedora Release Engineering - 2.3.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 28 2014 Kalev Lember - 2.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4 + +* Mon Mar 10 2014 Pádraig Brady - 2.3.0-1 +- Latest upstream + +* Tue Feb 04 2014 Matthias Runge - 2.0.0-3 +- fix %%{? issues in spec + +* Thu Oct 17 2013 Thomas Spura - 2.0.0-2 +- add python3 subpackage (#1016207) +- add %%check + +* Fri Aug 16 2013 Alan Pevec 2.0.0-1 +- Update to 2.0.0 release + +* Sun Aug 04 2013 Fedora Release Engineering - 1.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Mon May 13 2013 Pádraig Brady - 1.3.0-1 +- Update to 1.3.0 release + +* Thu Feb 14 2013 Fedora Release Engineering - 0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Jul 21 2012 Fedora Release Engineering - 0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed May 23 2012 Pádraig Brady - 0.2-1 +- Initial package.