From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 33FDD15800F for ; Mon, 2 Jan 2023 16:28:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22F45E0843; Mon, 2 Jan 2023 16:28:26 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 068B7E0843 for ; Mon, 2 Jan 2023 16:28:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1A4D340CE1 for ; Mon, 2 Jan 2023 16:28:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E78F16F2 for ; Mon, 2 Jan 2023 16:28:22 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1672676819.3c6c0a2c89073e3a8488a77ccc513d95da4436e6.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/pyshp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/pyshp/pyshp-2.3.1.ebuild X-VCS-Directories: sci-libs/pyshp/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: 3c6c0a2c89073e3a8488a77ccc513d95da4436e6 X-VCS-Branch: master Date: Mon, 2 Jan 2023 16:28:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 20a7ce1f-261d-479d-b7d3-b0e7210fcb92 X-Archives-Hash: d519ead3f59e2cc9e5ee7db76ea5ddd3 commit: 3c6c0a2c89073e3a8488a77ccc513d95da4436e6 Author: Thomas Beierlein gentoo org> AuthorDate: Mon Jan 2 16:26:28 2023 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Mon Jan 2 16:26:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6c0a2c sci-libs/pyshp: Add missing test dep Closes: https://bugs.gentoo.org/888735 Signed-off-by: Thomas Beierlein gentoo.org> sci-libs/pyshp/pyshp-2.3.1.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sci-libs/pyshp/pyshp-2.3.1.ebuild b/sci-libs/pyshp/pyshp-2.3.1.ebuild index af715dcb9263..dc041f721f8e 100644 --- a/sci-libs/pyshp/pyshp-2.3.1.ebuild +++ b/sci-libs/pyshp/pyshp-2.3.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="8" -PYTHON_COMPAT=( python3_{7..11} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 DESCRIPTION="Pure Python read/write support for ESRI Shapefile format" @@ -20,7 +20,8 @@ RESTRICT="!test? ( test )" RDEPEND="" DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" python_test() { epytest test_shapefile.py -m "not network" || die