Dominique Leuenberger 2023-02-01 15:38:28 +00:00 committed by Git OBS Bridge
commit ccee8eec15
5 changed files with 11 additions and 20 deletions

View File

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

BIN
PyQt-builder-1.14.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,14 +0,0 @@
Index: PyQt-builder-1.14.0/pyqtbuild/builder.py
===================================================================
--- PyQt-builder-1.14.0.orig/pyqtbuild/builder.py
+++ PyQt-builder-1.14.0/pyqtbuild/builder.py
@@ -530,7 +530,8 @@ macx {
patch = self.qt_version & 0xff
# Qt v5.12.4 was the last release where we updated for a patch version.
- if (major, minor) >= (5, 13):
+ # And SUSE started to use it in 5.15.8 again for qt3d-qt5
+ if (major, minor) >= (5, 13) and (major, minor, patch) < (5, 15, 8):
patch = 0
elif (major, minor) == (5, 12):
if patch > 4:

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Jan 24 18:51:01 UTC 2023 - Ben Greiner <code@bnavigator.de>
- Update to 1.14.1
* Support different patch versions for Qt v5.15.
- Drop pyqt-builder-add-timeline5.15.patch
-------------------------------------------------------------------
Thu Jan 12 21:14:30 UTC 2023 - Ben Greiner <code@bnavigator.de>

View File

@ -18,7 +18,7 @@
%define mname pyqt-builder
Name: python-%{mname}
Version: 1.14.0
Version: 1.14.1
Release: 0
Summary: The PEP 517 compliant PyQt build system
License: GPL-2.0-only OR GPL-3.0-only OR SUSE-SIP
@ -26,8 +26,6 @@ URL: https://www.riverbankcomputing.com/software/pyqt-builder
Source0: https://files.pythonhosted.org/packages/source/P/PyQt-builder/PyQt-builder-%{version}.tar.gz
# PATCH-FEATURE-SUSE support-python3.6.patch alarrosa@suse.com
Patch0: support-python3.6.patch
# PATCH-FEATURE-SUSE pyqt-builder-add-timeline5.15.patch code@bnavigator.de
Patch1: pyqt-builder-add-timeline5.15.patch
BuildRequires: %{python_module base >= 3.6}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}