aboutsummaryrefslogtreecommitdiff
blob: 749cade41168b7e32148d5d100fd4a9a627aa60f (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
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1

DESCRIPTION="Apache2 licensed Python sorted collections library"
HOMEPAGE="
	https://pypi.org/project/sortedcollections
	https://github.com/grantjenks/python-sortedcollections
"
SRC_URI="https://github.com/grantjenks/python-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/python-${PN}-${PV}"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"

RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]"
BDEPEND="doc? ( ${RDEPEND} )"

distutils_enable_tests pytest
distutils_enable_sphinx docs

src_prepare() {
	# breaks pytest
	rm tox.ini || die

	distutils-r1_src_prepare
}

python_test() {
	epytest --doctest-glob="*.rst"
}