17
0

Compare commits

8 Commits

Author SHA256 Message Date
38dcb9cd3b Accepting request 1284632 from devel:languages:python
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/request/show/1284632
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyclipper?expand=0&rev=11
2025-06-11 14:25:48 +00:00
8d3eab2aa6 - Switch to pyproject macros.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyclipper?expand=0&rev=23
2025-06-11 06:17:42 +00:00
1624ae40a8 Accepting request 1218843 from devel:languages:python
- update to 1.3.0.post6:
  * Build Python 3.13 wheels. No code changes.

OBS-URL: https://build.opensuse.org/request/show/1218843
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyclipper?expand=0&rev=10
2024-10-29 13:35:02 +00:00
8b6dd346b3 - update to 1.3.0.post6:
* Build Python 3.13 wheels. No code changes.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyclipper?expand=0&rev=21
2024-10-28 16:54:31 +00:00
4c5f4ab739 Accepting request 1202220 from devel:languages:python
- It is sitearch not sitelib
- - Add %{?sle15_python_module_pythons}

OBS-URL: https://build.opensuse.org/request/show/1202220
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyclipper?expand=0&rev=9
2024-09-22 09:05:56 +00:00
f671898c69 Clean up the SPEC
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyclipper?expand=0&rev=19
2024-09-20 13:38:12 +00:00
2f1004fd58 - It is sitearch not sitelib
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyclipper?expand=0&rev=18
2024-09-20 13:34:37 +00:00
9a5e17e450 Accepting request 1202217 from home:ecsos:python
- - Add %{?sle15_python_module_pythons}

OBS-URL: https://build.opensuse.org/request/show/1202217
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyclipper?expand=0&rev=17
2024-09-20 13:30:08 +00:00
4 changed files with 33 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c0239f928e0bf78a3efc2f2f615a10bfcdb9f33012d46d64c8d1225b4bde7096
size 164719

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:42bff0102fa7a7f2abdd795a2594654d62b786d0c6cd67b72d469114fdeb608c
size 165909

View File

@@ -1,3 +1,24 @@
-------------------------------------------------------------------
Wed Jun 11 05:49:27 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
- Switch to pyproject macros.
-------------------------------------------------------------------
Mon Oct 28 16:54:26 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 1.3.0.post6:
* Build Python 3.13 wheels. No code changes.
-------------------------------------------------------------------
Fri Sep 20 13:34:27 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
- It is sitearch not sitelib
-------------------------------------------------------------------
Fri Sep 20 13:16:55 UTC 2024 - ecsos <ecsos@opensuse.org>
- - Add %{?sle15_python_module_pythons}
-------------------------------------------------------------------
Sun Dec 10 21:51:01 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-pyclipper
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2025 SUSE LLC
# Copyright (c) 2020 Xu Zhao (i@xuzhao.net).
#
# All modifications and additions to the file contributed by third parties
@@ -17,10 +17,10 @@
#
%{?!python_module:%define python_module() python3-%{**}}
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-pyclipper
Version: 1.3.0.post5
Version: 1.3.0.post6
Release: 0
Summary: Cython wrapper for the Clipper library for clipping lines and polygons
License: MIT
@@ -28,9 +28,11 @@ URL: https://github.com/fonttools/pyclipper
Source: https://files.pythonhosted.org/packages/source/p/pyclipper/pyclipper-%{version}.tar.gz
BuildRequires: %{python_module Cython}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: gcc-c++
BuildRequires: python-rpm-macros
@@ -50,11 +52,11 @@ library is based on Vatti's clipping algorithm.
%setup -q -n pyclipper-%{version}
%build
%python_build
%pyproject_wheel
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
%pytest_arch
@@ -63,6 +65,6 @@ library is based on Vatti's clipping algorithm.
%doc README.rst
%license LICENSE
%{python_sitearch}/pyclipper
%{python_sitearch}/pyclipper-%{version}*-info
%{python_sitearch}/pyclipper-%{version}.dist-info
%changelog