mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-04 13:47:35 -08:00
dev-python/PyQt6-WebEngine: drop 6.6.0
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
This commit is contained in:
parent
2a0b053b1b
commit
b5a750a086
@ -1,2 +1 @@
|
||||
DIST PyQt6_WebEngine-6.6.0.tar.gz 31817 BLAKE2B 3e795bda50d1a5874e6caec7f69370840913cbbb33662ddc5624f0437c765e3318a2b4233d8e9963145dbeef8a4edc559112f114b850d9879eecb9e3e6b6fd2e SHA512 30927b7728d68cbeff6346234e131f96dfcd4b2af503d27d2f0a1eee584b5a928ac4fe1f66019c90aaf1ccd66fffe2edaf55de86d9aa0c83518c45669613bc0d
|
||||
DIST PyQt6_WebEngine-6.7.0.tar.gz 32593 BLAKE2B 6c14323b440a83f6fed9f1f77f20b350f00255dfedfbc328a5ee638760d20958d8864eb3c590248acd5c69152c537993a95e66d1f76b28349561c8223dfc2a85 SHA512 8298aecc43e420c4fa912802fd66ee95fd71156d9a6d1f1a499ffcc2d0d45a8c3e3c170f911acfc8f094d2e434567b5143b145ce40413ee75c9a9e4420341c0c
|
||||
|
||||
@ -1,68 +0,0 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_EXT=1
|
||||
DISTUTILS_USE_PEP517=sip
|
||||
PYPI_NO_NORMALIZE=1
|
||||
PYPI_PN=${PN/-/_}
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
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 ~arm64"
|
||||
IUSE="debug quick +widgets"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/PyQt6-${PV}[gui,ssl,${PYTHON_USEDEP}]
|
||||
>=dev-qt/qtbase-${QT_PV}[gui,widgets?]
|
||||
>=dev-qt/qtwebengine-${QT_PV}[widgets]
|
||||
quick? (
|
||||
dev-python/PyQt6[qml]
|
||||
>=dev-qt/qtwebengine-${QT_PV}[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}
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# hack: PyQt-builder runs qmake without our arguments and calls g++
|
||||
# or clang++ depending on what qtbase was built with, not used for
|
||||
# building but fails with -native-symlinks
|
||||
mkdir "${T}"/cxx || die
|
||||
local cxx
|
||||
! cxx=$(type -P "${CHOST}"-g++) || ln -s -- "${cxx}" "${T}"/cxx/g++ || die
|
||||
! cxx=$(type -P "${CHOST}"-clang++) || ln -s -- "${cxx}" "${T}"/cxx/clang++ || die
|
||||
PATH=${T}/cxx:${PATH}
|
||||
}
|
||||
|
||||
python_configure_all() {
|
||||
append-cxxflags -std=c++17 # for old gcc / clang that use <17 (bug #892331)
|
||||
append-cxxflags ${CPPFLAGS} # respect CPPFLAGS notably for DISTUTILS_EXT=1
|
||||
|
||||
DISTUTILS_ARGS=(
|
||||
--jobs="$(makeopts_jobs)"
|
||||
--qmake="$(qt6_get_bindir)"/qmake
|
||||
--qmake-setting="$(qt6_get_qmake_args)"
|
||||
--verbose
|
||||
|
||||
--enable=QtWebEngineCore
|
||||
$(usex quick --{enable,disable}=QtWebEngineQuick)
|
||||
$(usex widgets --{enable,disable}=QtWebEngineWidgets)
|
||||
|
||||
$(usev debug '--debug --qml-debug --tracing')
|
||||
)
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user