dev-python/qtawesome: Bump to 1.4.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-02-28 05:11:15 +01:00
parent 1f30d7e956
commit 05ac512823
2 changed files with 49 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST QtAwesome-1.3.1.tar.gz 2372190 BLAKE2B d7a0a0d5ac1ff8e60e14ce407a2220ef9bc5463304274df7d04a00178b3021dd4f5e35c028a4038f53adf04c85eabd8e33b10c59d57804733265ee17d5875563 SHA512 6b50a4fce231331ec05497905f4fb1e7d91d5bbc9dfd963f3b2dd649d3d28f20436d1c3aed574457ff4afaf277d0e53b371ead7e0ddfb208ab8a4b5ddd4bc2f1
DIST qtawesome-1.4.0.tar.gz 2614365 BLAKE2B 5c7c941878f9c1fd06de75abe2ec37743ea13330fc937da0287d3fb10da1e8f93f9956247af0c8e5fff70ab34f246031f96ad4c6e6931ddd29facb8bf02e5b28 SHA512 3fe617526c31da3dfd9ba59a7d2b8cef8a6327308c0e622e6ed1be7924d77aab322db625dd37a280c5538c511effe2e3855875db8cc8d48014ba696b27fe28c9

View File

@@ -0,0 +1,48 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi virtualx
DESCRIPTION="Enables iconic fonts such as Font Awesome in PyQt"
HOMEPAGE="
https://github.com/spyder-ide/qtawesome/
https://pypi.org/project/QtAwesome/
"
LICENSE="MIT"
# bundled fonts
# -------------
# Font Awesome, Elusive Icons: OFL-1.1
# Phosphor: MIT
# Material Design Icons, Remix Icon: Apache-2.0
# Codicons: CC-BY-4.0
LICENSE+=" Apache-2.0 CC-BY-4.0 MIT OFL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
media-fonts/fontawesome
dev-python/qtpy[gui,${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-qt[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
distutils_enable_sphinx docs/source \
dev-python/sphinx-rtd-theme
src_test() {
virtx distutils-r1_src_test
}
python_test() {
nonfatal epytest || die -n "Tests failed with ${EPYTHON}"
}