24 lines
650 B
Bash
24 lines
650 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{9..12} )
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="A collection of tools for manipulating and analyzing SVG Path objects and Bezier curves."
|
|
HOMEPAGE=""
|
|
KEYWORDS="~amd64 ~x86"
|
|
SRC_URI="https://github.com/mathandy/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ~x86"
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
|
|
dev-python/svgwrite[${PYTHON_USEDEP}]
|
|
dev-python/scipy[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND=""
|