From f6e0aef6e781da2256794311a792a47aa740c2a8d828bacf88ce5ab90b46d3c4 Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Wed, 15 Jun 2022 16:23:40 +0000 Subject: [PATCH 1/3] - Update to 1.5.0 * Fix implementation of points() (#gh/mathandy/svgpathtools#155) * Add support for rounded rectangles (#gh/mathandy/svgpathtools#161) * Fix Document.add_path for empty groups (#gh/mathandy/svgpathtools#170) * Allow file-like object as input to Documents ctor and svg2paths function * Add convenience functions for converting svgs contained in a string to paths OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-svgpathtools?expand=0&rev=11 --- python-svgpathtools.changes | 15 +++++++++++++++ python-svgpathtools.spec | 4 ++-- svgpathtools-1.4.4.tar.gz | 3 --- svgpathtools-1.5.0.tar.gz | 3 +++ 4 files changed, 20 insertions(+), 5 deletions(-) delete mode 100644 svgpathtools-1.4.4.tar.gz create mode 100644 svgpathtools-1.5.0.tar.gz diff --git a/python-svgpathtools.changes b/python-svgpathtools.changes index aa822a1..7beb30e 100644 --- a/python-svgpathtools.changes +++ b/python-svgpathtools.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Wed Jun 15 15:57:45 UTC 2022 - Mia Herkt + +- Update to 1.5.0 + * Fix implementation of points() + (#gh/mathandy/svgpathtools#155) + * Add support for rounded rectangles + (#gh/mathandy/svgpathtools#161) + * Fix Document.add_path for empty groups + (#gh/mathandy/svgpathtools#170) + * Allow file-like object as input to Documents ctor and + svg2paths function + * Add convenience functions for converting svgs contained in a + string to paths + ------------------------------------------------------------------- Thu Dec 23 06:11:31 UTC 2021 - Mia Herkt diff --git a/python-svgpathtools.spec b/python-svgpathtools.spec index db0f35c..6bde00b 100644 --- a/python-svgpathtools.spec +++ b/python-svgpathtools.spec @@ -1,7 +1,7 @@ # # spec file for package python-svgpathtools # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %global skip_python36 1 Name: python-svgpathtools -Version: 1.4.4 +Version: 1.5.0 Release: 0 Summary: Tools for manipulating and analyzing SVG Path objects and Bézier curves License: MIT diff --git a/svgpathtools-1.4.4.tar.gz b/svgpathtools-1.4.4.tar.gz deleted file mode 100644 index 24353b2..0000000 --- a/svgpathtools-1.4.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e1c60c2392a8613f10c04e315922eca57136311aa443dbd4f5b7f30a953554b -size 2129835 diff --git a/svgpathtools-1.5.0.tar.gz b/svgpathtools-1.5.0.tar.gz new file mode 100644 index 0000000..6736616 --- /dev/null +++ b/svgpathtools-1.5.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e50c9ab9efdfdd2d1c016ef2c21022c9cae98671303b971c89caa004f7b1fa1b +size 2131636 From 1ebbeb1c816597f012ec20bd6eacd3ee0e92622f6eeb192572221389fc32c409 Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Wed, 20 Jul 2022 22:16:29 +0000 Subject: [PATCH 2/3] - Update to 1.5.1 * Fix float rounding error in elliptic arc radius check (#gh/mathandy/svgpathtools#171) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-svgpathtools?expand=0&rev=12 --- python-svgpathtools.changes | 7 +++++++ python-svgpathtools.spec | 2 +- svgpathtools-1.5.0.tar.gz | 3 --- svgpathtools-1.5.1.tar.gz | 3 +++ 4 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 svgpathtools-1.5.0.tar.gz create mode 100644 svgpathtools-1.5.1.tar.gz diff --git a/python-svgpathtools.changes b/python-svgpathtools.changes index 7beb30e..9f74d48 100644 --- a/python-svgpathtools.changes +++ b/python-svgpathtools.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Wed Jul 20 22:11:58 UTC 2022 - Mia Herkt + +- Update to 1.5.1 + * Fix float rounding error in elliptic arc radius check + (#gh/mathandy/svgpathtools#171) + ------------------------------------------------------------------- Wed Jun 15 15:57:45 UTC 2022 - Mia Herkt diff --git a/python-svgpathtools.spec b/python-svgpathtools.spec index 6bde00b..8a9d406 100644 --- a/python-svgpathtools.spec +++ b/python-svgpathtools.spec @@ -19,7 +19,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} %global skip_python36 1 Name: python-svgpathtools -Version: 1.5.0 +Version: 1.5.1 Release: 0 Summary: Tools for manipulating and analyzing SVG Path objects and Bézier curves License: MIT diff --git a/svgpathtools-1.5.0.tar.gz b/svgpathtools-1.5.0.tar.gz deleted file mode 100644 index 6736616..0000000 --- a/svgpathtools-1.5.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e50c9ab9efdfdd2d1c016ef2c21022c9cae98671303b971c89caa004f7b1fa1b -size 2131636 diff --git a/svgpathtools-1.5.1.tar.gz b/svgpathtools-1.5.1.tar.gz new file mode 100644 index 0000000..86cce00 --- /dev/null +++ b/svgpathtools-1.5.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6d65159051b1471de6645606b59e1be0373750192665185ae976425c41b7fb0 +size 2131610 From 02430fceed4a114af9a82d6248d5d49b295fae4ec4d28a01cf35e8c2d3a1dd2e Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Wed, 20 Jul 2022 22:43:00 +0000 Subject: [PATCH 3/3] - Disable test suite because it can only work on specific CPU (micro-)architectures. (#gh/mathandy/svgpathtools#183) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-svgpathtools?expand=0&rev=13 --- python-svgpathtools.changes | 3 +++ python-svgpathtools.spec | 7 +++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/python-svgpathtools.changes b/python-svgpathtools.changes index 9f74d48..f965bf1 100644 --- a/python-svgpathtools.changes +++ b/python-svgpathtools.changes @@ -4,6 +4,9 @@ Wed Jul 20 22:11:58 UTC 2022 - Mia Herkt - Update to 1.5.1 * Fix float rounding error in elliptic arc radius check (#gh/mathandy/svgpathtools#171) +- Disable test suite because it can only work on specific CPU + (micro-)architectures. + (#gh/mathandy/svgpathtools#183) ------------------------------------------------------------------- Wed Jun 15 15:57:45 UTC 2022 - Mia Herkt diff --git a/python-svgpathtools.spec b/python-svgpathtools.spec index 8a9d406..b8d7212 100644 --- a/python-svgpathtools.spec +++ b/python-svgpathtools.spec @@ -53,8 +53,11 @@ analyzing SVG Path objects and Bézier curves. %python_install %python_expand %fdupes %{buildroot}%{$python_sitelib} -%check -%pytest +# test suite uses hashes that only match on some CPUs +# due to float math +# https://github.com/mathandy/svgpathtools/issues/183 +# %%check +# %%pytest %files %{python_files} %license LICENSE.txt LICENSE2.txt