blob: 06b30f3296bb32e119a71dd63266b8d403c4f6eb (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# 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_{10..12} )
inherit distutils-r1
EGIT_COMMIT=ab623b0e287a9303bdb0c5213c485110e68dac12
MY_P=python-iniparse-${EGIT_COMMIT}
DESCRIPTION="Better INI parser for Python"
HOMEPAGE="
https://github.com/candlepin/python-iniparse/
https://pypi.org/project/iniparse/
"
SRC_URI="
https://github.com/candlepin/python-iniparse/archive/${EGIT_COMMIT}.tar.gz
-> ${MY_P}.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="MIT PSF-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
RDEPEND="
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]
"
BDEPEND="
${RDEPEND}
"
python_test() {
"${EPYTHON}" runtests.py || die
}
python_install_all() {
rm -rf "${ED}/usr/share/doc" || die
distutils-r1_python_install_all
}
|