11
0

5 Commits

Author SHA256 Message Date
c20a4e1ecf Accepting request 1284256 from KDE:Qt:PyQt
- Update to 1.18.2
  * The licensing information in `pyproject.toml` now conforms to
    PEP 639. This means that the minimum setuptools version is v77.
    That in itself means that the wheel name conforms to the
    current PyPI requirements.
  * The wheels created by `pyqt-qt-wheel` now have lower case
    names.

OBS-URL: https://build.opensuse.org/request/show/1284256
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyqt-builder?expand=0&rev=25
2025-06-11 14:20:08 +00:00
687b4f985d .
OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-pyqt-builder?expand=0&rev=32
2025-06-09 17:05:32 +00:00
5708eb978a .
OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-pyqt-builder?expand=0&rev=31
2025-06-09 17:04:24 +00:00
556992624f .
OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-pyqt-builder?expand=0&rev=30
2025-06-09 16:47:43 +00:00
61f92289f3 - Update to 1.18.2
* The licensing information in `pyproject.toml` now conforms to
    PEP 639. This means that the minimum setuptools version is v77.
    That in itself means that the wheel name conforms to the
    current PyPI requirements.
  * The wheels created by `pyqt-qt-wheel` now have lower case
    names.

OBS-URL: https://build.opensuse.org/package/show/KDE:Qt:PyQt/python-pyqt-builder?expand=0&rev=29
2025-06-09 16:47:19 +00:00
4 changed files with 25 additions and 7 deletions

BIN
pyqt_builder-1.18.1.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

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

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon Jun 9 16:44:10 UTC 2025 - Ben Greiner <code@bnavigator.de>
- Update to 1.18.2
* The licensing information in `pyproject.toml` now conforms to
PEP 639. This means that the minimum setuptools version is v77.
That in itself means that the wheel name conforms to the
current PyPI requirements.
* The wheels created by `pyqt-qt-wheel` now have lower case
names.
-------------------------------------------------------------------
Fri Apr 4 01:13:25 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-pyqt-builder
Version: 1.18.1
Version: 1.18.2
Release: 0
Summary: The PEP 517 compliant PyQt build system
License: BSD-2-Clause
@@ -27,9 +27,13 @@ Source0: https://files.pythonhosted.org/packages/source/P/PyQt-builder/py
Source99: python-pyqt-builder.rpmlintrc
BuildRequires: %{python_module base >= 3.8}
BuildRequires: %{python_module pip}
%if 0%{suse_version} < 1600
BuildRequires: %{python_module setuptools >= 64}
# Technically >= 8, but we make it compatible in prep.
BuildRequires: %{python_module setuptools_scm >= 7}
%else
BuildRequires: %{python_module setuptools >= 77}
BuildRequires: %{python_module setuptools_scm >= 8}
%endif
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -56,9 +60,12 @@ sip-install or pip can then be used to build and install the project.
%prep
%autosetup -p1 -n pyqt_builder-%{version}
# Make it work with setuptools_scm < 8
# Make it work with setuptools < 77 and setuptools_scm < 8
%if 0%{suse_version} < 1600
sed -i s/version_file/write_to/ pyproject.toml
sed -i pyproject.toml \
-e 's/version_file/write_to/' \
-e 's/license = .*/license = { file = "LICENSE" }/' \
-e '/license-files/d'
%endif
%build