diff options
author | 2023-04-30 05:26:20 +0200 | |
---|---|---|
committer | 2023-04-30 05:26:20 +0200 | |
commit | b5c2d7aa2fab0144e6819814f1c10c4173bf468c (patch) | |
tree | 4cfcc0ec7285bad6054c860dea1936807cb6727f /dev-python/svg-path | |
parent | dev-python/nose2: Bump to 0.13.0 (diff) | |
download | gentoo-b5c2d7aa2fab0144e6819814f1c10c4173bf468c.tar.gz gentoo-b5c2d7aa2fab0144e6819814f1c10c4173bf468c.tar.bz2 gentoo-b5c2d7aa2fab0144e6819814f1c10c4173bf468c.zip |
dev-python/svg-path: Bump to 6.3
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/svg-path')
-rw-r--r-- | dev-python/svg-path/Manifest | 1 | ||||
-rw-r--r-- | dev-python/svg-path/svg-path-6.3.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/svg-path/Manifest b/dev-python/svg-path/Manifest index 0561203e4fae..c0e152959568 100644 --- a/dev-python/svg-path/Manifest +++ b/dev-python/svg-path/Manifest @@ -1 +1,2 @@ DIST svg-path-6.2.gh.tar.gz 39478 BLAKE2B ef5a5c7aca3dc0e3f383f5e2810bad8960e32a55d00b6300e30c81fbe837f380d073bae60b891d371f8a9be3ca556ef11821d5b7c2fe5db519465b099d35e3f9 SHA512 7c9a67467e888f4961d54daf2706125c4ae21bb0cd1010f335eb072df78f12b1da99ddcf64a33a85a0e82a8b347f19e876161e3da8ebf43e5e7b45bbaf7d3325 +DIST svg-path-6.3.gh.tar.gz 51479 BLAKE2B 895069baa0c9577fe222c16a5763cccc6bb18ebcb62471faba0b2e9cd06793b2f8e07790ca8153feaa3ee5ca35b2b11ab7ec821dc3ad98e510f6ec76e00f058e SHA512 fd9dd9e1e603be5e212e3eb247c9f3778203f5285397a4cdde4c038c3f31f7bc2b8904491c208256996e2fbd39b4e5f7ea58d964bd5d22bc09c57e4bc2c70317 diff --git a/dev-python/svg-path/svg-path-6.3.ebuild b/dev-python/svg-path/svg-path-6.3.ebuild new file mode 100644 index 000000000000..ec37884e84b6 --- /dev/null +++ b/dev-python/svg-path/svg-path-6.3.ebuild @@ -0,0 +1,34 @@ +# 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_{9..11} ) + +inherit distutils-r1 + +MY_P=${P/-/.} +DESCRIPTION="SVG path objects and parser" +HOMEPAGE=" + https://github.com/regebro/svg.path/ + https://pypi.org/project/svg.path/ +" +# no tests in sdist, as of 6.3 +SRC_URI=" + https://github.com/regebro/svg.path/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" + +BDEPEND=" + test? ( + dev-python/pillow[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |