From 9b724e90bf392c60464469c42a36e3f2c33665fedcaeed6f8212787c9883989e Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 16 Nov 2021 15:32:03 +0000 Subject: [PATCH] - Update to 1.2.5: - Will now import Iterable from the Python 3.3+ location as the previous location is marked for removal in Python 3.9. The import will still have a fallback to the previous location in order to maintain support for Python 2.7. - Provide a test case helper to ensure that the generic Program repr signature is provided to assist with test case portability. - In the calmjs.parse.vlq module, implemented the decode_vlq helper for completeness/symmetry to the encode_vlq helper. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-calmjs.parse?expand=0&rev=9 --- 1.2.4.tar.gz | 3 --- 1.2.5.tar.gz | 3 +++ python-calmjs.parse.changes | 13 +++++++++++++ python-calmjs.parse.spec | 12 ++++++------ 4 files changed, 22 insertions(+), 9 deletions(-) delete mode 100644 1.2.4.tar.gz create mode 100644 1.2.5.tar.gz diff --git a/1.2.4.tar.gz b/1.2.4.tar.gz deleted file mode 100644 index 8478cb7..0000000 --- a/1.2.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1cc499ba27ae5752973aa70bba54a2cd3beeb33a8f01ee5d5a911bf5b139229a -size 128430 diff --git a/1.2.5.tar.gz b/1.2.5.tar.gz new file mode 100644 index 0000000..eeb370a --- /dev/null +++ b/1.2.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ea7507b46f3e520f603ab35b276abce2366c8c0d117da4dc76f61990127151 +size 129159 diff --git a/python-calmjs.parse.changes b/python-calmjs.parse.changes index d52a685..2a6c87d 100644 --- a/python-calmjs.parse.changes +++ b/python-calmjs.parse.changes @@ -1,3 +1,16 @@ +------------------------------------------------------------------- +Tue Nov 16 15:28:20 UTC 2021 - Matej Cepl + +- Update to 1.2.5: + - Will now import Iterable from the Python 3.3+ location as the + previous location is marked for removal in Python 3.9. The import + will still have a fallback to the previous location in order to + maintain support for Python 2.7. + - Provide a test case helper to ensure that the generic Program repr + signature is provided to assist with test case portability. + - In the calmjs.parse.vlq module, implemented the decode_vlq helper + for completeness/symmetry to the encode_vlq helper. + ------------------------------------------------------------------- Mon Mar 30 09:24:12 UTC 2020 - Marketa Calabkova diff --git a/python-calmjs.parse.spec b/python-calmjs.parse.spec index ec25d78..4339cfc 100644 --- a/python-calmjs.parse.spec +++ b/python-calmjs.parse.spec @@ -1,7 +1,7 @@ # # spec file for package python-calmjs.parse # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-calmjs.parse -Version: 1.2.4 +Version: 1.2.5 Release: 0 Summary: Various parsers for ECMA standards License: MIT @@ -47,13 +47,13 @@ export LANG=en_US.UTF-8 %install %python_install -%python_expand rm -r %{buildroot}%{$python_sitelib}/calmjs/parse/testing -%python_expand rm -r %{buildroot}%{$python_sitelib}/calmjs/parse/tests -%python_expand %fdupes %{buildroot}%{$python_sitelib} +%{python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} $python -m calmjs.parse.parsers.optimize +%fdupes %{buildroot}%{$python_sitelib} +} %check export LANG=en_US.UTF-8 -%pytest +%pyunittest -v calmjs.parse.tests.make_suite %files %{python_files} %doc README.rst CHANGES.rst