blob: 9a98a477e914c8460317b060026fee859f48b944 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python3_{6,7,8,9,10} )
inherit distutils-r1
APPI_VERSION=${PV%.*}
APPI_RELEASE=${PV##*.}
SRC_URI="https://github.com/funtoo/appi/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="*"
DESCRIPTION="Another Portage Python Interface"
HOMEPAGE="https://gitlab.com/apinsard/appi/"
LICENSE="GPL-2"
SLOT="0/${APPI_VERSION}"
RDEPEND="sys-apps/portage"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
"
|