summaryrefslogtreecommitdiff
path: root/dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-12-05 16:58:51 -0500
committerIonen Wolkens <ionen@gentoo.org>2025-12-05 17:02:50 -0500
commit65595a97d35789c243b6d6ff6d00b3496bcd67ff (patch)
tree41bf1e31a65f17778e87866254610c165ea65f9c /dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild
parent8e6e67f186e9bb9afa37489ff42061586b939faa (diff)
downloadgentoo-65595a97d35789c243b6d6ff6d00b3496bcd67ff.tar.gz
gentoo-65595a97d35789c243b6d6ff6d00b3496bcd67ff.tar.bz2
gentoo-65595a97d35789c243b6d6ff6d00b3496bcd67ff.zip
dev-python/pyqt-builder: add 1.19.1
For what it's worth anyway, this should be virtually identical to 1.19.0 given we delete the Windows DLLs that it is updating. Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild')
-rw-r--r--dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild b/dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild
new file mode 100644
index 000000000000..9ad75096e686
--- /dev/null
+++ b/dev-python/pyqt-builder/pyqt-builder-1.19.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{11..14} )
+inherit distutils-r1 pypi
+
+DESCRIPTION="The PEP 517 compliant PyQt build system"
+HOMEPAGE="https://github.com/Python-PyQt/PyQt-builder/"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+ dev-python/packaging[${PYTHON_USEDEP}]
+ >=dev-python/sip-6.7[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+"
+
+src_prepare() {
+ distutils-r1_src_prepare
+
+ # skip installing DLLs
+ rm -r pyqtbuild/bundle/dlls || die
+}