Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/pyshp/
Date: Mon, 02 Jan 2023 16:28:27
Message-Id: 1672676819.3c6c0a2c89073e3a8488a77ccc513d95da4436e6.tomjbe@gentoo
1 commit: 3c6c0a2c89073e3a8488a77ccc513d95da4436e6
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 16:26:28 2023 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 16:26:59 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6c0a2c
7
8 sci-libs/pyshp: Add missing test dep
9
10 Closes: https://bugs.gentoo.org/888735
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 sci-libs/pyshp/pyshp-2.3.1.ebuild | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 diff --git a/sci-libs/pyshp/pyshp-2.3.1.ebuild b/sci-libs/pyshp/pyshp-2.3.1.ebuild
17 index af715dcb9263..dc041f721f8e 100644
18 --- a/sci-libs/pyshp/pyshp-2.3.1.ebuild
19 +++ b/sci-libs/pyshp/pyshp-2.3.1.ebuild
20 @@ -1,9 +1,9 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 +# Copyright 1999-2023 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI="8"
26
27 -PYTHON_COMPAT=( python3_{7..11} )
28 +PYTHON_COMPAT=( python3_{8..11} )
29 inherit distutils-r1
30
31 DESCRIPTION="Pure Python read/write support for ESRI Shapefile format"
32 @@ -20,7 +20,8 @@ RESTRICT="!test? ( test )"
33
34 RDEPEND=""
35 DEPEND="${RDEPEND}
36 - dev-python/setuptools[${PYTHON_USEDEP}]"
37 + dev-python/setuptools[${PYTHON_USEDEP}]
38 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
39
40 python_test() {
41 epytest test_shapefile.py -m "not network" || die