mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
dev-python/pywebview: drop *, add 6.1
Signed-off-by: dsaf <ghostyn678+git@gmail.com>
This commit is contained in:
@@ -1,2 +1 @@
|
|||||||
DIST pywebview-4.4.1.tar.gz 30127595 BLAKE2B 13759ee774a63ddcf44af92ed11a3b902c2c15ebd3ad252f2b541b764601a722e55002aefea8a0621702a2bd0e94a7d4f1c3d8dd86d7e6def5abe6ecec3e7f78 SHA512 b712927606cd9704a00896f68780ee6b0bcd63077510e1d5ceb8d4fbd4b44ca96fff4390be7a29c65b0b0d14dee132fbff29b8dbc1094ebca89ac893566a4731
|
DIST pywebview-6.1.tar.gz 496270 BLAKE2B 6c5cfd6046c7847a77dcfd63bdb7e135014659b96f12e09dfe68d03830db615413801005b48cfb25da3dc0a935bbfa4a3581ec484501a76dd20c2392e0daa612 SHA512 e187a65ec23e59138fb26cbe0775504291b1972ff232bac2169255d3aa16b80983cd4b0a451fe02df93383856fa903938656f973eb9f04f483390effdf17a70a
|
||||||
DIST pywebview-5.1.tar.gz 435761 BLAKE2B 7aeacb13f845e97c17f2e8fd8581cc54ac3575ecb0c83c70be345d80ad98509afc8c9cefa32f908b539f388bf3b962dd9b8ab7787a6e0c5626859447f8e41682 SHA512 395243c34ce147970ac351bade647ad1c57d844fee390764097b7ec7f02562d298e9239eb76d0606394419e1e06d6c28d2cd58f1f10d46c5a4924759dac87aa0
|
|
||||||
|
|||||||
@@ -6,6 +6,7 @@
|
|||||||
<name>tea</name>
|
<name>tea</name>
|
||||||
</maintainer>
|
</maintainer>
|
||||||
<upstream>
|
<upstream>
|
||||||
|
<doc>https://pywebview.flowrl.com/guide/</doc>
|
||||||
<remote-id type="github">r0x0r/pywebview</remote-id>
|
<remote-id type="github">r0x0r/pywebview</remote-id>
|
||||||
<remote-id type="pypi">pywebview</remote-id>
|
<remote-id type="pypi">pywebview</remote-id>
|
||||||
</upstream>
|
</upstream>
|
||||||
|
|||||||
@@ -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
|
|
||||||
@@ -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
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=8
|
EAPI=8
|
||||||
|
|
||||||
DISTUTILS_USE_PEP517=setuptools
|
DISTUTILS_USE_PEP517=setuptools
|
||||||
PYTHON_COMPAT=( python3_{11..12} )
|
PYTHON_COMPAT=( python3_{11..14} )
|
||||||
|
|
||||||
inherit distutils-r1 pypi
|
inherit distutils-r1 pypi
|
||||||
|
|
||||||
DESCRIPTION="A lightweight cross-platform wrapper around a webview component"
|
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"
|
LICENSE="BSD"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
KEYWORDS="~amd64"
|
KEYWORDS="~amd64"
|
||||||
IUSE="gtk qt6"
|
IUSE="+gtk qt6 ssl"
|
||||||
REQUIRED_USE="|| ( gtk qt6 )"
|
REQUIRED_USE="|| ( gtk qt6 )"
|
||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
dev-python/bottle[${PYTHON_USEDEP}]
|
dev-python/bottle[${PYTHON_USEDEP}]
|
||||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
|
||||||
dev-python/proxy_tools[${PYTHON_USEDEP}]
|
dev-python/proxy_tools[${PYTHON_USEDEP}]
|
||||||
|
dev-python/typing-extensions[${PYTHON_USEDEP}]
|
||||||
gtk? (
|
gtk? (
|
||||||
dev-python/pygobject[cairo,${PYTHON_USEDEP}]
|
dev-python/pygobject:3[${PYTHON_USEDEP}]
|
||||||
net-libs/webkit-gtk
|
net-libs/webkit-gtk
|
||||||
)
|
)
|
||||||
qt6? (
|
qt6? (
|
||||||
dev-python/pyside[${PYTHON_USEDEP},webengine]
|
dev-python/pyqt6[${PYTHON_USEDEP}]
|
||||||
dev-python/qtpy[${PYTHON_USEDEP},webengine]
|
dev-python/pyqt6-webengine[${PYTHON_USEDEP}]
|
||||||
|
dev-python/qtpy[${PYTHON_USEDEP}]
|
||||||
)
|
)
|
||||||
|
ssl? ( dev-python/cryptography[${PYTHON_USEDEP}] )
|
||||||
"
|
"
|
||||||
|
|
||||||
distutils_enable_tests pytest
|
distutils_enable_tests pytest
|
||||||
Reference in New Issue
Block a user