mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 08:18:49 -04:00
dev-python/pyside2 does not support py3.12 yet. Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
41 lines
886 B
Bash
41 lines
886 B
Bash
# Copyright 2020-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( python3_{10..11} )
|
|
|
|
inherit distutils-r1 pypi
|
|
|
|
DESCRIPTION="A lightweight cross-platform wrapper around a webview component"
|
|
HOMEPAGE="https://github.com/r0x0r/pywebview"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="gtk qt5 qt6"
|
|
REQUIRED_USE="|| ( gtk qt5 qt6 )"
|
|
|
|
RDEPEND="
|
|
dev-python/bottle
|
|
dev-python/cryptography
|
|
dev-python/proxy_tools
|
|
gtk? (
|
|
dev-python/pygobject[cairo,${PYTHON_USEDEP}]
|
|
net-libs/webkit-gtk
|
|
)
|
|
qt5? (
|
|
dev-python/pyside2[${PYTHON_USEDEP},webengine]
|
|
dev-python/QtPy[${PYTHON_USEDEP},webengine]
|
|
)
|
|
qt6? (
|
|
dev-python/pyside6[${PYTHON_USEDEP},webengine]
|
|
dev-python/QtPy[${PYTHON_USEDEP},webengine]
|
|
)
|
|
"
|
|
|
|
distutils_enable_tests pytest
|
|
|
|
RESTRICT="test" # FIXME: tests fail without message
|