39 lines
792 B
Bash
39 lines
792 B
Bash
|
# Copyright 1999-2022 Gentoo Authors
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=8
|
||
|
|
||
|
PYTHON_COMPAT=( python3_{8..10} )
|
||
|
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||
|
|
||
|
inherit distutils-r1
|
||
|
|
||
|
if [[ ${PV} != *9999* ]]; then
|
||
|
SRC_URI="https://github.com/alexhuntley/Plots/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
KEYWORDS="~amd64"
|
||
|
MY_PN="Plots"
|
||
|
MY_P="${MY_PN}-${PV}"
|
||
|
S="${WORKDIR}/${MY_P}"
|
||
|
else
|
||
|
inherit git-r3
|
||
|
EGIT_REPO_URI="https://github.com/alexhuntley/Plots.git"
|
||
|
fi
|
||
|
|
||
|
DESCRIPTION="Graph plotting app for GNOME"
|
||
|
HOMEPAGE="https://github.com/alexhuntley/Plots"
|
||
|
LICENSE="GPL-3"
|
||
|
SLOT="0"
|
||
|
|
||
|
RDEPEND="
|
||
|
dev-python/freetype-py
|
||
|
dev-python/jinja
|
||
|
dev-python/lark
|
||
|
dev-python/numpy
|
||
|
dev-python/pyglm
|
||
|
dev-python/pygobject
|
||
|
dev-python/pyopengl
|
||
|
"
|
||
|
BDEPEND=""
|
||
|
|
||
|
distutils_enable_tests pytest
|