mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-16 14:29:05 -07:00
dev-python/PyQt6-WebEngine: add 6.5.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST PyQt6_WebEngine-6.4.0.tar.gz 31180 BLAKE2B af7b10fa473bf0e5775319c47e8b8a7084321c09edc7a46ed89e771b8f0f44d5f4b59a47a9c902c3662296adbff4d514fa33c0b4071080b408c65167f64c77f8 SHA512 cbd549a91aa070aa81fdf60d836f8bdc1ec6b354868e1a0e39345f9072a8e60a019675e9983a1706ae0ac482a6f92c5beadb1ed4e4244b55f49df01d0e97e60c
|
||||
DIST PyQt6_WebEngine-6.5.0.tar.gz 31349 BLAKE2B 80ab4ad292107e5ca57c5b27f2af3747f9c28ebf2c1afe0f32fe1fbd6897dd701d7f46bda8f08c5f0048d4efef4c3c0087854acbc58a319163e328f74177b05c SHA512 bafa26cc800ec031fe9bb1e309832df79b41c5f43a6cdc8ecc2bc4b09c59b60975a67ede6190726db887689305e7a6012f705eb9b83c3e0c82a23f3f1c3880ff
|
||||
|
||||
59
dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.5.0.ebuild
Normal file
59
dev-python/PyQt6-WebEngine/PyQt6-WebEngine-6.5.0.ebuild
Normal file
@@ -0,0 +1,59 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=sip
|
||||
PYPI_NO_NORMALIZE=1
|
||||
PYPI_PN=${PN/-/_}
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
inherit distutils-r1 flag-o-matic multiprocessing pypi qmake-utils
|
||||
|
||||
QT_PV="$(ver_cut 1-2):6"
|
||||
|
||||
DESCRIPTION="Python bindings for QtWebEngine"
|
||||
HOMEPAGE="https://www.riverbankcomputing.com/software/pyqtwebengine/"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="debug quick +widgets"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/PyQt6-${PV}[gui,ssl,${PYTHON_USEDEP}]
|
||||
>=dev-qt/qtbase-${QT_PV}
|
||||
>=dev-qt/qtwebengine-${QT_PV}[widgets]
|
||||
quick? ( dev-python/PyQt6[qml] )
|
||||
widgets? ( dev-python/PyQt6[network,printsupport,webchannel,widgets] )"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
>=dev-python/PyQt-builder-1.15[${PYTHON_USEDEP}]
|
||||
>=dev-qt/qtbase-${QT_PV}
|
||||
sys-devel/gcc"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# hack: qmake queries g++ directly for info (not building) and that doesn't
|
||||
# work with clang, this is to make it at least respect CHOST (bug #726112)
|
||||
mkdir "${T}"/cxx || die
|
||||
ln -s "$(type -P ${CHOST}-g++ || type -P g++ || die)" "${T}"/cxx/g++ || die
|
||||
PATH=${T}/cxx:${PATH}
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
append-cxxflags -std=c++17 # for old gcc / clang that use <17 (bug #892331)
|
||||
|
||||
DISTUTILS_ARGS=(
|
||||
--jobs=$(makeopts_jobs)
|
||||
--qmake="$(type -P qmake6 || die)"
|
||||
--qmake-setting="$(qt5_get_qmake_args)"
|
||||
--verbose
|
||||
|
||||
--enable=QtWebEngineCore
|
||||
$(usex quick --{enable,disable}=QtWebEngineQuick)
|
||||
$(usex widgets --{enable,disable}=QtWebEngineWidgets)
|
||||
|
||||
$(usev debug '--debug --qml-debug --tracing')
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user