From eecd75a62239257eb2235bfe8697c73887a9a080 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 29 Jan 2024 00:57:18 +0000 Subject: gentoo auto-resync : 29:01:2024 - 00:57:18 --- dev-python/pygal/Manifest | 2 +- dev-python/pygal/pygal-3.0.4-r1.ebuild | 54 ++++++++++++++++++++++++++++++++++ dev-python/pygal/pygal-3.0.4.ebuild | 51 -------------------------------- 3 files changed, 55 insertions(+), 52 deletions(-) create mode 100644 dev-python/pygal/pygal-3.0.4-r1.ebuild delete mode 100644 dev-python/pygal/pygal-3.0.4.ebuild (limited to 'dev-python/pygal') diff --git a/dev-python/pygal/Manifest b/dev-python/pygal/Manifest index be818462a86a..e27ffbdb3bd1 100644 --- a/dev-python/pygal/Manifest +++ b/dev-python/pygal/Manifest @@ -1,3 +1,3 @@ DIST pygal-3.0.4.gh.tar.gz 3575681 BLAKE2B 1d7b487d17e754323a54a8840f15f722186d4a782883a65f75886e4cd063e20bf0239ef1f1a3ed619f42a83a3fff21ecf9f3613564b716a2765604d64ca0f98c SHA512 5e7e4e7eb5d4a8ccd08fc90ae68bcb7c24f6c1fa36cbe64130f2eda03ff2d3f1caab853691d0e67a02de6b4f64a530f3c5c6ae69815d248819c44923b634e8dd -EBUILD pygal-3.0.4.ebuild 1148 BLAKE2B 34a74aa1e051b3788f6687a6b23545607dad9b3ee2badf67fa2339a53a57e30fac4e5e1b8cf16490e35aad1d165548ce6a3ec73804e18fd2f00a3b4ce297724a SHA512 4f03c474f727a6bf349439d0e84904476e36afe4814a4de658f880c5db84b40645da5b1c7884011dde98e315ca7be271fcc36d0b651759edd507650d851a29a1 +EBUILD pygal-3.0.4-r1.ebuild 1209 BLAKE2B 2a65b3b948d3257f5cea512ea75a36d67540fefac82c08b2071d7f971d87913cbf1699ff85c67dc17314b0a5db91eec0fe3be80759dba91aa22e50b215f03f00 SHA512 faafc70160ceaa8dc0d2c699634f1ee34209f10b9752e6d5a6fcc78ac3a70654f18479b1ef390cf9b63e6e8e497db5a01f23c79cd9f74a5b6ed095e37de4aa24 MISC metadata.xml 458 BLAKE2B 70473091a8343d255501ff6d306cbf376b57c42ba842e36a3948649f30ffa3f29ff502254cf265512b024878b8faa7d77b4164b5cf70ae6f851a5d2d51a3997c SHA512 3bcd119c30b25e2f821c10d1b2c58efc109d8049a446acb4960b47ddef18d3c1ed4efc6bb4dc551abbb42f17828c4898acdad3172523b7576a6a548e43a8e8b9 diff --git a/dev-python/pygal/pygal-3.0.4-r1.ebuild b/dev-python/pygal/pygal-3.0.4-r1.ebuild new file mode 100644 index 000000000000..056f080194f7 --- /dev/null +++ b/dev-python/pygal/pygal-3.0.4-r1.ebuild @@ -0,0 +1,54 @@ +# 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} ) +PYTHON_REQ_USE="xml(+)" + +inherit distutils-r1 optfeature + +DESCRIPTION="A python SVG charts generator" +HOMEPAGE=" + https://github.com/Kozea/pygal/ + https://pypi.org/project/pygal/ +" +SRC_URI=" + https://github.com/Kozea/pygal/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="amd64 arm64 ~riscv x86" + +RDEPEND=" + dev-python/importlib-metadata[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/pyquery[${PYTHON_USEDEP}] + media-gfx/cairosvg[${PYTHON_USEDEP}] + ) +" + +# CHANGELOG is a symlink to docs/changelog.rst +DOCS=( docs/changelog.rst README.md ) + +distutils_enable_sphinx docs +EPYTEST_XDIST=1 +distutils_enable_tests pytest + +python_prepare_all() { + # Not actually required unless we want to do setup.py test + # https://github.com/Kozea/pygal/issues/430 + sed -i -e "/setup_requires/d" setup.py || die + distutils-r1_python_prepare_all +} + +pkg_postinst() { + optfeature "improving rendering speed" "dev-python/lxml" + optfeature "png rendering" "dev-python/cairosvg" +} diff --git a/dev-python/pygal/pygal-3.0.4.ebuild b/dev-python/pygal/pygal-3.0.4.ebuild deleted file mode 100644 index a86c03d7d045..000000000000 --- a/dev-python/pygal/pygal-3.0.4.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) -PYTHON_REQ_USE="xml(+)" - -inherit distutils-r1 optfeature - -DESCRIPTION="A python SVG charts generator" -HOMEPAGE=" - https://github.com/Kozea/pygal/ - https://pypi.org/project/pygal/ -" -SRC_URI=" - https://github.com/Kozea/pygal/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="LGPL-3+" -SLOT="0" -KEYWORDS="amd64 arm64 ~riscv x86" - -BDEPEND=" - test? ( - dev-python/lxml[${PYTHON_USEDEP}] - dev-python/pyquery[${PYTHON_USEDEP}] - media-gfx/cairosvg[${PYTHON_USEDEP}] - ) -" - -# CHANGELOG is a symlink to docs/changelog.rst -DOCS=( docs/changelog.rst README.md ) - -distutils_enable_sphinx docs -EPYTEST_XDIST=1 -distutils_enable_tests pytest - -python_prepare_all() { - # Not actually required unless we want to do setup.py test - # https://github.com/Kozea/pygal/issues/430 - sed -i -e "/setup_requires/d" setup.py || die - distutils-r1_python_prepare_all -} - -pkg_postinst() { - optfeature "improving rendering speed" "dev-python/lxml" - optfeature "png rendering" "dev-python/cairosvg" -} -- cgit v1.2.3