diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-04-18 07:21:01 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-04-18 07:31:08 +0200 |
commit | 922cf5566362f2f55bf309d9f136b5d42e9a1449 (patch) | |
tree | a4fdbe8640cb73b7ed6d781063855920ce978270 /dev-python/qstylizer | |
parent | dev-python/sphinx-autodoc-typehints: Bump to 2.1.0 (diff) | |
download | gentoo-922cf5566362f2f55bf309d9f136b5d42e9a1449.tar.gz gentoo-922cf5566362f2f55bf309d9f136b5d42e9a1449.tar.bz2 gentoo-922cf5566362f2f55bf309d9f136b5d42e9a1449.zip |
dev-python/qstylizer: Bump to 0.2.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/qstylizer')
-rw-r--r-- | dev-python/qstylizer/Manifest | 1 | ||||
-rw-r--r-- | dev-python/qstylizer/qstylizer-0.2.3.ebuild | 45 |
2 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/qstylizer/Manifest b/dev-python/qstylizer/Manifest index 331c10749b7b..56222e11ee52 100644 --- a/dev-python/qstylizer/Manifest +++ b/dev-python/qstylizer/Manifest @@ -1 +1,2 @@ DIST qstylizer-0.2.2.gh.tar.gz 20752 BLAKE2B c5442821389863bc03bb0659b528322cc12f5be8137f74746e3ec7a18bf89d2822d533d13cc23842daf32a0077ad84d0e7b5dc62f231e75e57388064bd08e5fc SHA512 682f10462965a93b36f0e44b75885b9d60b4d3cd03369976b977c9b928afed4e930b6b7ef26850bdb7b40ef2a31db35a9778738582dae8715f54c1f00a957fb3 +DIST qstylizer-0.2.3.gh.tar.gz 20813 BLAKE2B edb19f9bcadee3229a1d98cc7170ba7bbab266fea74ab42987380dd8aec0ba4d02dda0fb7522f2cfbc52feb5646e44ee1603528d3331315ddcbcc18095a9ca76 SHA512 ba5188f702d4fbd43d963be206c75d55710bfe63accc84aea3bfd03ad06a0cb484d50b538c2d1d6a7ce21055d0b2eefb2cb35a732b929f5477033a8ddea945c0 diff --git a/dev-python/qstylizer/qstylizer-0.2.3.ebuild b/dev-python/qstylizer/qstylizer-0.2.3.ebuild new file mode 100644 index 000000000000..c33b9390d668 --- /dev/null +++ b/dev-python/qstylizer/qstylizer-0.2.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 + +DESCRIPTION="Stylesheet Generator for PyQt5/PySide2" +HOMEPAGE=" + https://github.com/blambright/qstylizer/ + https://pypi.org/project/qstylizer/ +" +SRC_URI=" + https://github.com/blambright/qstylizer/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +RDEPEND=" + >=dev-python/tinycss2-0.5[${PYTHON_USEDEP}] + <dev-python/tinycss2-2[${PYTHON_USEDEP}] + >=dev-python/inflection-0.3.0[${PYTHON_USEDEP}] + <dev-python/inflection-1[${PYTHON_USEDEP}] +" + +BDEPEND=" + dev-python/pbr[${PYTHON_USEDEP}] + test? ( + dev-python/pytest-mock[${PYTHON_USEDEP}] + dev-python/pytest-xdist[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest +distutils_enable_sphinx doc \ + dev-python/sphinx-rtd-theme \ + dev-python/sphinxcontrib-autoprogram + +export PBR_VERSION=${PV} |