dev-python/svgpathtools - 9999 (booboo)

Search

Install

Install this version:

emerge -a =dev-python/svgpathtools-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =dev-python/svgpathtools-9999

Or alternatively:

emerge --autounmask-write -a =dev-python/svgpathtools-9999

Package Information

Description:
Tools for manipulating and analyzing SVG Path objects and Bezier curves
Homepage:
https://github.com/mathandy/svgpathtools
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 ~x86 0
View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

PYTHON_COMPAT=( python3_{11..14} )
DISTUTILS_USE_PEP517=setuptools

inherit distutils-r1

DESCRIPTION="Tools for manipulating and analyzing SVG Path objects and Bezier curves"
HOMEPAGE="https://github.com/mathandy/svgpathtools"

LICENSE="MIT"
SLOT="0"

RDEPEND="
	dev-python/numpy[${PYTHON_USEDEP}]
	dev-python/scipy[${PYTHON_USEDEP}]
	dev-python/svgwrite[${PYTHON_USEDEP}]
"

RESTRICT="test"  # <-- way too lazy for this sort of thing right now :((((((((((

if [[ ${PV} == 9999 ]]; then
	inherit git-r3

	EGIT_REPO_URI="https://github.com/mathandy/svgpathtools.git"
	EGIT_BRANCH="master"
else
	inherit pypi

	KEYWORDS="~amd64 ~x86"
fi

Inherited Eclasses

Dependencies

RDEPEND

	dev-python/numpy[]
	dev-python/scipy[]
	dev-python/svgwrite[]