Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| ecd7131d2c | |||
| b200960bf4 | |||
| 6915f74656 | |||
| d5748d0e42 | |||
| c20a4e1ecf | |||
| 687b4f985d | |||
| 5708eb978a | |||
| 556992624f | |||
| 61f92289f3 |
BIN
pyqt_builder-1.18.1.tar.gz
LFS
BIN
pyqt_builder-1.18.1.tar.gz
LFS
Binary file not shown.
3
pyqt_builder-1.19.0.tar.gz
Normal file
3
pyqt_builder-1.19.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:79540e001c476bc050180db00fffcb1e9fa74544d95c148e48ad6117e49d6ea2
|
||||
size 3672333
|
||||
@@ -1,3 +1,33 @@
|
||||
-------------------------------------------------------------------
|
||||
Sat Oct 11 17:19:36 UTC 2025 - Ben Greiner <code@bnavigator.de>
|
||||
|
||||
- Update to 1.19.0
|
||||
* Support for Qt v6.10 when building wheels manually. The Qt
|
||||
v6.10.0 installation for Linux on Intel created by the online
|
||||
installer was built using Red Hat Linux v9.4. This means that
|
||||
glibc v2.34 is now required. Earlier versions of Qt required
|
||||
glibc v2.28. The manylinux wheel tags that are generated now
|
||||
reflect the revised dependency.
|
||||
* pyqt-bundle support for lower case wheel names. pyqt-bundle now
|
||||
properly handles lower case wheel names as well as the legacy
|
||||
mixed case names. Resolves #33
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 7 10:07:44 UTC 2025 - Markéta Machová <mmachova@suse.com>
|
||||
|
||||
- Convert to libalternatives on SLE-16-based and newer systems
|
||||
|
||||
-------------------------------------------------------------------
|
||||
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>
|
||||
|
||||
|
||||
@@ -16,29 +16,43 @@
|
||||
#
|
||||
|
||||
|
||||
%if 0%{?suse_version} > 1500
|
||||
%bcond_without libalternatives
|
||||
%else
|
||||
%bcond_with libalternatives
|
||||
%endif
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-pyqt-builder
|
||||
Version: 1.18.1
|
||||
Version: 1.19.0
|
||||
Release: 0
|
||||
Summary: The PEP 517 compliant PyQt build system
|
||||
License: BSD-2-Clause
|
||||
URL: https://github.com/Python-PyQt/PyQt-builder
|
||||
Source0: https://files.pythonhosted.org/packages/source/P/PyQt-builder/pyqt_builder-%{version}.tar.gz
|
||||
Source0: https://files.pythonhosted.org/packages/source/p/pyqt_builder/pyqt_builder-%{version}.tar.gz
|
||||
Source99: python-pyqt-builder.rpmlintrc
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
BuildRequires: %{python_module pip}
|
||||
BuildRequires: %{python_module setuptools >= 64}
|
||||
# Technically >= 8, but we make it compatible in prep.
|
||||
BuildRequires: %{python_module setuptools_scm >= 7}
|
||||
BuildRequires: %{python_module wheel}
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: python-rpm-macros
|
||||
Requires: python-packaging
|
||||
Requires: python-sip-devel >= 6.7
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
Provides: python-PyQt-builder = %{version}-%{release}
|
||||
BuildArch: noarch
|
||||
%if 0%{?suse_version} < 1600
|
||||
BuildRequires: %{python_module setuptools >= 64}
|
||||
BuildRequires: %{python_module setuptools_scm >= 7}
|
||||
%else
|
||||
BuildRequires: %{python_module setuptools >= 77}
|
||||
BuildRequires: %{python_module setuptools_scm >= 8}
|
||||
%endif
|
||||
%if %{with libalternatives}
|
||||
BuildRequires: alts
|
||||
Requires: alts
|
||||
%else
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun): update-alternatives
|
||||
%endif
|
||||
# SECTION Test Requirements
|
||||
BuildRequires: %{python_module packaging}
|
||||
BuildRequires: %{python_module sip-devel >= 6.7}
|
||||
@@ -56,9 +70,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
|
||||
%if 0%{suse_version} < 1600
|
||||
sed -i s/version_file/write_to/ pyproject.toml
|
||||
# Make it work with setuptools < 77 and setuptools_scm < 8
|
||||
%if 0%{?suse_version} < 1600
|
||||
sed -i pyproject.toml \
|
||||
-e 's/version_file/write_to/' \
|
||||
-e 's/license = .*/license = { file = "LICENSE" }/' \
|
||||
-e '/license-files/d'
|
||||
%endif
|
||||
|
||||
%build
|
||||
@@ -68,6 +85,7 @@ sed -i s/version_file/write_to/ pyproject.toml
|
||||
%pyproject_install
|
||||
%python_clone -a %{buildroot}%{_bindir}/pyqt-bundle
|
||||
%python_clone -a %{buildroot}%{_bindir}/pyqt-qt-wheel
|
||||
%python_group_libalternatives pyqt-bundle pyqt-qt-wheel
|
||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||
|
||||
%check
|
||||
@@ -84,8 +102,12 @@ $python -c 'import pyqtbuild'
|
||||
%postun
|
||||
%python_uninstall_alternative pyqt-bundle
|
||||
|
||||
%pre
|
||||
%python_libalternatives_reset_alternative pyqt-bundle
|
||||
|
||||
%files %{python_files}
|
||||
%doc README.md LICENSE
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%python_alternative %{_bindir}/pyqt-bundle
|
||||
%python_alternative %{_bindir}/pyqt-qt-wheel
|
||||
%{python_sitelib}/pyqtbuild
|
||||
|
||||
Reference in New Issue
Block a user