dev-python/qtawesome: version bump

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
Signed-off-by: Matt Turner <mattst88@gentoo.org>
This commit is contained in:
Andrew Ammerlaan
2020-05-14 14:29:46 +02:00
committed by Matt Turner
parent c524f97df3
commit d64b1a2d69
2 changed files with 37 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST QtAwesome-0.7.1.tar.gz 846772 BLAKE2B 8bfbd430399bb42fab0d7d236cd8bb4daf372469e8a6dc604df57a11f70202772bcbd9df8f49875c559106cac8e2ec89110c9f0c39b441aae238d84c0426ecfd SHA512 1cfa0bee80bca28b087eb4dc7ad57c8fec85a586185fce379d611cb6034e7666c8523abc28f78dadd7510aa0356cfc423f01ace295dfa6b279645ff379ecd846
DIST QtAwesome-0.7.2.tar.gz 847272 BLAKE2B 559b41a1ccb1563c0537703ec285bb24639ab9dfe72515dae9462271666dbe49b7d04b5d5dbc3f24bb6475803c987f7ac7bd6bbf828b79b07897f0b6e60edd70 SHA512 edc3a4794befd6f87ea144477d18d48e8ea7c1e349cee3fde04ac25c3f372126448adb7d820176927394ca89a8714154f354625e58746725c30eb0a95d7b0359

View File

@@ -0,0 +1,36 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1 virtualx
MY_PN="QtAwesome"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Enables iconic fonts such as Font Awesome in PyQt"
HOMEPAGE="https://github.com/spyder-ide/qtawesome/ https://pypi.org/project/QtAwesome/"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="media-fonts/fontawesome
dev-python/QtPy[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
"
DEPEND="test? ( dev-python/pytest-qt[${PYTHON_USEDEP}] )"
S="${WORKDIR}/${MY_P}"
distutils_enable_tests pytest
distutils_enable_sphinx docs/source
python_test() {
virtx pytest -vv
}