Skip to content

Commit

Permalink
pypi-jsonschema: Autospec creation for update from version 4.16.0 to …
Browse files Browse the repository at this point in the history
…version 4.17.3

Julian Berman (28):
      Make it clearer that format: regex is Python regexes in this implementation.
      Better wording.
      Bold is loud.
      Ignore PyCQA/flake8-bugbear#287.
      Fix the grammar on ErrorTree's repr when it has 1 error.
      Deprecate the CLI (via import or running normally).
      Update the Draft 3 and 4 metaschemas.
      Enable format validation by default in check_schema.
      Re-add the second test for importing jsonschema.cli
      Satisfy mypy's new default.
      Squashed 'json/' changes from ed0b855e7..0fa89d2ab
      Squashed 'json/' changes from 0fa89d2ab..9251ebff1
      Emit a better error message for unevaluatedProperties with a subschema.
      Un-bundle single-vocabulary meta-schemas.
      Update docs requirements.
      Temporarily evade wpilibsuite/sphinxext-opengraph#87
      Suppress epub warnings for duplicated ToC entries.
      Run more things with 3.11 in CI.
      Skip the rest of the docs builds on Windows in CI.
      Remove making believe we are ReadTheDocs in CI builds.
      v4.17.1 -> CHANGELOG
      Squashed 'json/' changes from 9251ebff1..78c888273
      Minor fix for test case class names (for format tests).
      Empty strings are not valid relative JSON pointers.
      Durations without trailing units aren't valid durations.
      Update pre-commit hooks.
      Try fixing more Sphinx refs which fail only on Ubuntu...
      Fix instantiating validators with cached refs-to-bool schemas.
  • Loading branch information
djklimes committed Dec 27, 2022
1 parent 2124d92 commit 25a513e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
PKG_NAME := pypi-jsonschema
URL = https://files.pythonhosted.org/packages/cf/54/8923ba38b5145f2359d57e5516715392491d674c83f446cd4cd133eeb4d6/jsonschema-4.16.0.tar.gz
URL = https://files.pythonhosted.org/packages/36/3d/ca032d5ac064dff543aa13c984737795ac81abc9fb130cd2fcff17cfabc7/jsonschema-4.17.3.tar.gz
ARCHIVES =

include ../common/Makefile.common
2 changes: 1 addition & 1 deletion buildreq_cache
@@ -1,2 +1,2 @@
4.16.0
4.17.3
pypi-pytest
2 changes: 1 addition & 1 deletion options.conf
@@ -1,6 +1,6 @@
[package]
name = pypi-jsonschema
url = https://files.pythonhosted.org/packages/cf/54/8923ba38b5145f2359d57e5516715392491d674c83f446cd4cd133eeb4d6/jsonschema-4.16.0.tar.gz
url = https://files.pythonhosted.org/packages/36/3d/ca032d5ac064dff543aa13c984737795ac81abc9fb130cd2fcff17cfabc7/jsonschema-4.17.3.tar.gz
archives =
giturl = https://github.com/Julian/jsonschema/
domain =
Expand Down
20 changes: 10 additions & 10 deletions pypi-jsonschema.spec
Expand Up @@ -3,10 +3,10 @@
# Generated by: autospec.py
#
Name : pypi-jsonschema
Version : 4.16.0
Release : 91
URL : https://files.pythonhosted.org/packages/cf/54/8923ba38b5145f2359d57e5516715392491d674c83f446cd4cd133eeb4d6/jsonschema-4.16.0.tar.gz
Source0 : https://files.pythonhosted.org/packages/cf/54/8923ba38b5145f2359d57e5516715392491d674c83f446cd4cd133eeb4d6/jsonschema-4.16.0.tar.gz
Version : 4.17.3
Release : 92
URL : https://files.pythonhosted.org/packages/36/3d/ca032d5ac064dff543aa13c984737795ac81abc9fb130cd2fcff17cfabc7/jsonschema-4.17.3.tar.gz
Source0 : https://files.pythonhosted.org/packages/36/3d/ca032d5ac064dff543aa13c984737795ac81abc9fb130cd2fcff17cfabc7/jsonschema-4.17.3.tar.gz
Summary : An implementation of JSON Schema validation for Python
Group : Development/Tools
License : MIT
Expand Down Expand Up @@ -66,18 +66,18 @@ python3 components for the pypi-jsonschema package.


%prep
%setup -q -n jsonschema-4.16.0
cd %{_builddir}/jsonschema-4.16.0
%setup -q -n jsonschema-4.17.3
cd %{_builddir}/jsonschema-4.17.3
pushd ..
cp -a jsonschema-4.16.0 buildavx2
cp -a jsonschema-4.17.3 buildavx2
popd

%build
export http_proxy=http://127.0.0.1:9/
export https_proxy=http://127.0.0.1:9/
export no_proxy=localhost,127.0.0.1,0.0.0.0
export LANG=C.UTF-8
export SOURCE_DATE_EPOCH=1666740963
export SOURCE_DATE_EPOCH=1672164216
export GCC_IGNORE_WERROR=1
export AR=gcc-ar
export RANLIB=gcc-ranlib
Expand Down Expand Up @@ -109,8 +109,8 @@ pytest || :
export MAKEFLAGS=%{?_smp_mflags}
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/pypi-jsonschema
cp %{_builddir}/jsonschema-%{version}/COPYING %{buildroot}/usr/share/package-licenses/pypi-jsonschema/2de1a0a3674903238a664ace5d3acc66a7d546c7 || :
cp %{_builddir}/jsonschema-%{version}/json/LICENSE %{buildroot}/usr/share/package-licenses/pypi-jsonschema/6808b97edf6d2c189571af702b95916168ff7db8 || :
cp %{_builddir}/jsonschema-%{version}/COPYING %{buildroot}/usr/share/package-licenses/pypi-jsonschema/2de1a0a3674903238a664ace5d3acc66a7d546c7
cp %{_builddir}/jsonschema-%{version}/json/LICENSE %{buildroot}/usr/share/package-licenses/pypi-jsonschema/6808b97edf6d2c189571af702b95916168ff7db8
pip install --root=%{buildroot} --no-deps --ignore-installed dist/*.whl
echo ----[ mark ]----
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :
Expand Down
2 changes: 1 addition & 1 deletion release
@@ -1 +1 @@
91
92
2 changes: 1 addition & 1 deletion upstream
@@ -1 +1 @@
912d562c1394408dca582e14843e3245df2f3827/jsonschema-4.16.0.tar.gz
9f762c6c2b92defddf1c441cce8132d021252b2c/jsonschema-4.17.3.tar.gz
2 changes: 1 addition & 1 deletion versions
@@ -1 +1 @@
4.16.0
4.17.3

0 comments on commit 25a513e

Please sign in to comment.