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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B87BA13933E for ; Sat, 17 Jul 2021 04:16:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 082FFE08F7; Sat, 17 Jul 2021 04:16:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D096AE08E5 for ; Sat, 17 Jul 2021 04:16:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BE09340FB2 for ; Sat, 17 Jul 2021 04:16:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03C0A7D7 for ; Sat, 17 Jul 2021 04:16:49 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1626495208.008fadd363d9dd61c40e8620ff7cc6da2db3fc5d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/libarchive-c/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/libarchive-c/libarchive-c-2.9.ebuild X-VCS-Directories: dev-python/libarchive-c/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 008fadd363d9dd61c40e8620ff7cc6da2db3fc5d X-VCS-Branch: master Date: Sat, 17 Jul 2021 04:16:49 +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: 7a9a57cd-b962-44cd-87be-123a3b1b599a X-Archives-Hash: 8207c6bb6bb6c22d44a5e15f62d3cd2a commit: 008fadd363d9dd61c40e8620ff7cc6da2db3fc5d Author: Sam James gentoo org> AuthorDate: Sat Jul 17 04:12:40 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jul 17 04:13:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=008fadd3 dev-python/libarchive-c: run tests, add Python 3.10 Closes: https://bugs.gentoo.org/798090 Signed-off-by: Sam James gentoo.org> dev-python/libarchive-c/libarchive-c-2.9.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/libarchive-c/libarchive-c-2.9.ebuild b/dev-python/libarchive-c/libarchive-c-2.9.ebuild index 836c869f14a..be036350471 100644 --- a/dev-python/libarchive-c/libarchive-c-2.9.ebuild +++ b/dev-python/libarchive-c/libarchive-c-2.9.ebuild @@ -2,8 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..10} ) inherit distutils-r1 DESCRIPTION="A Python interface to libarchive" @@ -13,6 +13,8 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="CC0-1.0" SLOT="0" KEYWORDS="~amd64 ~ppc64 ~x86" -IUSE="" RDEPEND="app-arch/libarchive" +BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest