From 5a8b66cf11efa0fa0e8f7bb868ff3c180848711eb4648348e293e70d4ae67060 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Sat, 16 Jul 2022 11:01:35 +0000 Subject: [PATCH 1/2] Accepting request 989430 from home:bnavigator:branches:devel:languages:python - Update to 1.4.3 * add support for Python 3.11 PR #142 * do not install tests PR #143 * fix packaging for latest setuptools PR #140 - Release 1.4.2 * fix an issue with setuptools configuration PR #134 OBS-URL: https://build.opensuse.org/request/show/989430 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kiwisolver?expand=0&rev=17 --- kiwisolver-1.4.1.tar.gz | 3 --- kiwisolver-1.4.3.tar.gz | 3 +++ python-kiwisolver.changes | 10 ++++++++++ python-kiwisolver.spec | 11 +++++------ 4 files changed, 18 insertions(+), 9 deletions(-) delete mode 100644 kiwisolver-1.4.1.tar.gz create mode 100644 kiwisolver-1.4.3.tar.gz diff --git a/kiwisolver-1.4.1.tar.gz b/kiwisolver-1.4.1.tar.gz deleted file mode 100644 index 7fa02c3..0000000 --- a/kiwisolver-1.4.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:91bfcd2a14bea6f93c86876c4abccb53dc3f0bcad55e3a0af0b3e57ced6eef11 -size 97094 diff --git a/kiwisolver-1.4.3.tar.gz b/kiwisolver-1.4.3.tar.gz new file mode 100644 index 0000000..c5f6461 --- /dev/null +++ b/kiwisolver-1.4.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab8a15c2750ae8d53e31f77a94f846d0a00772240f1c12817411fa2344351f86 +size 96959 diff --git a/python-kiwisolver.changes b/python-kiwisolver.changes index 985921c..5503c6d 100644 --- a/python-kiwisolver.changes +++ b/python-kiwisolver.changes @@ -1,3 +1,13 @@ +------------------------------------------------------------------- +Thu Jul 14 17:47:26 UTC 2022 - Ben Greiner + +- Update to 1.4.3 + * add support for Python 3.11 PR #142 + * do not install tests PR #143 + * fix packaging for latest setuptools PR #140 +- Release 1.4.2 + * fix an issue with setuptools configuration PR #134 + ------------------------------------------------------------------- Mon Mar 28 15:31:34 UTC 2022 - Ben Greiner diff --git a/python-kiwisolver.spec b/python-kiwisolver.spec index 634fb93..d1a60ee 100644 --- a/python-kiwisolver.spec +++ b/python-kiwisolver.spec @@ -16,10 +16,8 @@ # -%{?!python_module:%define python_module() python3-%{**}} -%define skip_python2 1 Name: python-kiwisolver -Version: 1.4.1 +Version: 1.4.3 Release: 0 Summary: An implementation of the Cassowary constraint solver License: BSD-3-Clause @@ -28,8 +26,9 @@ URL: https://github.com/nucleic/kiwi Source: https://files.pythonhosted.org/packages/source/k/kiwisolver/kiwisolver-%{version}.tar.gz BuildRequires: %{python_module cppy >= 1.2.0} BuildRequires: %{python_module devel >= 3.7} +BuildRequires: %{python_module pip} BuildRequires: %{python_module pytest} -BuildRequires: %{python_module setuptools >= 42} +BuildRequires: %{python_module setuptools >= 61.2} BuildRequires: %{python_module setuptools_scm >= 3.4.3} BuildRequires: %{python_module tomli} BuildRequires: %{python_module wheel} @@ -56,10 +55,10 @@ dos2unix LICENSE README.rst releasenotes.rst %build export CFLAGS="%{optflags}" -%python_build +%pyproject_wheel %install -%python_install +%pyproject_install %python_expand %fdupes %{buildroot}%{$python_sitearch} %check From 2750b47233630dd5e19c99dc4bcd3c7b8176061bdd043028f05f4bc6203ee430 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 24 Jul 2022 09:18:07 +0000 Subject: [PATCH 2/2] - update to 1.4.4: - fix timing in shared data release procedure PR #149 - revert use of nullpointer introduced in #142 Its use is not necessary anymore in 3.11.0-beta.4 and used to cause issues on some platforms (see #144 ) PR #145 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kiwisolver?expand=0&rev=18 --- kiwisolver-1.4.3.tar.gz | 3 --- kiwisolver-1.4.4.tar.gz | 3 +++ python-kiwisolver.changes | 9 +++++++++ python-kiwisolver.spec | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) delete mode 100644 kiwisolver-1.4.3.tar.gz create mode 100644 kiwisolver-1.4.4.tar.gz diff --git a/kiwisolver-1.4.3.tar.gz b/kiwisolver-1.4.3.tar.gz deleted file mode 100644 index c5f6461..0000000 --- a/kiwisolver-1.4.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ab8a15c2750ae8d53e31f77a94f846d0a00772240f1c12817411fa2344351f86 -size 96959 diff --git a/kiwisolver-1.4.4.tar.gz b/kiwisolver-1.4.4.tar.gz new file mode 100644 index 0000000..cb5ee37 --- /dev/null +++ b/kiwisolver-1.4.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d41997519fcba4a1e46eb4a2fe31bc12f0ff957b2b81bac28db24744f333e955 +size 97093 diff --git a/python-kiwisolver.changes b/python-kiwisolver.changes index 5503c6d..e336e40 100644 --- a/python-kiwisolver.changes +++ b/python-kiwisolver.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Sun Jul 24 09:16:28 UTC 2022 - Dirk Müller + +- update to 1.4.4: + - fix timing in shared data release procedure PR #149 + - revert use of nullpointer introduced in #142 + Its use is not necessary anymore in 3.11.0-beta.4 and used to cause issues on + some platforms (see #144 ) PR #145 + ------------------------------------------------------------------- Thu Jul 14 17:47:26 UTC 2022 - Ben Greiner diff --git a/python-kiwisolver.spec b/python-kiwisolver.spec index d1a60ee..509b07a 100644 --- a/python-kiwisolver.spec +++ b/python-kiwisolver.spec @@ -17,7 +17,7 @@ Name: python-kiwisolver -Version: 1.4.3 +Version: 1.4.4 Release: 0 Summary: An implementation of the Cassowary constraint solver License: BSD-3-Clause