dev-python/pywebview: drop *, add 6.1

Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
dsaf
2026-01-21 19:45:35 -03:00
parent 8f4ba34e29
commit d1d684b7ef
4 changed files with 12 additions and 46 deletions

View File

@@ -1,2 +1 @@
DIST pywebview-4.4.1.tar.gz 30127595 BLAKE2B 13759ee774a63ddcf44af92ed11a3b902c2c15ebd3ad252f2b541b764601a722e55002aefea8a0621702a2bd0e94a7d4f1c3d8dd86d7e6def5abe6ecec3e7f78 SHA512 b712927606cd9704a00896f68780ee6b0bcd63077510e1d5ceb8d4fbd4b44ca96fff4390be7a29c65b0b0d14dee132fbff29b8dbc1094ebca89ac893566a4731
DIST pywebview-5.1.tar.gz 435761 BLAKE2B 7aeacb13f845e97c17f2e8fd8581cc54ac3575ecb0c83c70be345d80ad98509afc8c9cefa32f908b539f388bf3b962dd9b8ab7787a6e0c5626859447f8e41682 SHA512 395243c34ce147970ac351bade647ad1c57d844fee390764097b7ec7f02562d298e9239eb76d0606394419e1e06d6c28d2cd58f1f10d46c5a4924759dac87aa0
DIST pywebview-6.1.tar.gz 496270 BLAKE2B 6c5cfd6046c7847a77dcfd63bdb7e135014659b96f12e09dfe68d03830db615413801005b48cfb25da3dc0a935bbfa4a3581ec484501a76dd20c2392e0daa612 SHA512 e187a65ec23e59138fb26cbe0775504291b1972ff232bac2169255d3aa16b80983cd4b0a451fe02df93383856fa903938656f973eb9f04f483390effdf17a70a

View File

@@ -6,6 +6,7 @@
<name>tea</name>
</maintainer>
<upstream>
<doc>https://pywebview.flowrl.com/guide/</doc>
<remote-id type="github">r0x0r/pywebview</remote-id>
<remote-id type="pypi">pywebview</remote-id>
</upstream>

View File

@@ -1,36 +0,0 @@
# Copyright 2020-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..12} )
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 qt6"
REQUIRED_USE="|| ( gtk qt6 )"
RDEPEND="
dev-python/bottle[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/proxy_tools[${PYTHON_USEDEP}]
gtk? (
dev-python/pygobject[cairo,${PYTHON_USEDEP}]
net-libs/webkit-gtk
)
qt6? (
dev-python/pyside[${PYTHON_USEDEP},webengine]
dev-python/qtpy[${PYTHON_USEDEP},webengine]
)
"
distutils_enable_tests pytest
RESTRICT="test" # FIXME: tests fail without message

View File

@@ -1,34 +1,36 @@
# Copyright 2020-2025 Gentoo Authors
# Copyright 2020-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..12} )
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="A lightweight cross-platform wrapper around a webview component"
HOMEPAGE="https://github.com/r0x0r/pywebview"
HOMEPAGE="https://pywebview.flowrl.com/ https://pypi.org/project/pywebview/ https://github.com/r0x0r/pywebview"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE="gtk qt6"
IUSE="+gtk qt6 ssl"
REQUIRED_USE="|| ( gtk qt6 )"
RDEPEND="
dev-python/bottle[${PYTHON_USEDEP}]
dev-python/cryptography[${PYTHON_USEDEP}]
dev-python/proxy_tools[${PYTHON_USEDEP}]
dev-python/typing-extensions[${PYTHON_USEDEP}]
gtk? (
dev-python/pygobject[cairo,${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
net-libs/webkit-gtk
)
qt6? (
dev-python/pyside[${PYTHON_USEDEP},webengine]
dev-python/qtpy[${PYTHON_USEDEP},webengine]
dev-python/pyqt6[${PYTHON_USEDEP}]
dev-python/pyqt6-webengine[${PYTHON_USEDEP}]
dev-python/qtpy[${PYTHON_USEDEP}]
)
ssl? ( dev-python/cryptography[${PYTHON_USEDEP}] )
"
distutils_enable_tests pytest