Diff numkit-1.1.2-r1 with a numkit-1.2.3
/usr/portage/sci-libs/numkit/numkit-1.2.3.ebuild 2023-10-09 14:52:35.088368491 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2023 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 |
PYTHON_COMPAT=( python3_{9..10} ) |
|
6 |
DISTUTILS_USE_PEP517=setuptools |
|
7 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
7 | 8 |
inherit distutils-r1 |
8 | 9 | |
9 | 10 |
DESCRIPTION="Numerical first aid kit (with numpy/scipy)" |
10 | 11 |
HOMEPAGE="https://numkit.readthedocs.io" |
11 |
S="${WORKDIR}/${PN}-release-${PV}" |
|
12 | 12 |
SRC_URI="https://github.com/Becksteinlab/${PN}/archive/release-${PV}.tar.gz -> ${P}.tar.gz" |
13 |
S="${WORKDIR}/${PN}-release-${PV}" |
|
13 | 14 | |
14 | 15 |
LICENSE="BSD" |
15 | 16 |
SLOT="0" |
... | ... | |
18 | 19 |
BDEPEND=" |
19 | 20 |
dev-python/six[${PYTHON_USEDEP}] |
20 | 21 |
>=dev-python/numpy-1.9[${PYTHON_USEDEP}] |
21 |
>=dev-python/scipy-1.0[${PYTHON_USEDEP}]" |
|
22 |
>=dev-python/scipy-1.0[${PYTHON_USEDEP}] |
|
23 |
" |
|
22 | 24 |
RDEPEND="${BDEPEND}" |
25 | ||
26 |
distutils_enable_tests pytest |