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 0D9CC1382C5 for ; Sat, 27 Feb 2021 21:39:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DB05E0937; Sat, 27 Feb 2021 21:39:48 +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 1EC49E091C for ; Sat, 27 Feb 2021 21:39:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 014AD3410A9 for ; Sat, 27 Feb 2021 21:39:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8ED874C2 for ; Sat, 27 Feb 2021 21:39:45 +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: <1614461953.1ba94803af2d44b47118096a29fc76453c4c3bc5.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xxhash/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xxhash/xxhash-2.0.0.ebuild X-VCS-Directories: dev-python/xxhash/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1ba94803af2d44b47118096a29fc76453c4c3bc5 X-VCS-Branch: master Date: Sat, 27 Feb 2021 21:39:45 +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: 49c48fed-c056-4fe8-bf46-14eeef8c8d1c X-Archives-Hash: 1d5fd8cd7904cc883b6c30c3cd49e514 commit: 1ba94803af2d44b47118096a29fc76453c4c3bc5 Author: Sam James gentoo org> AuthorDate: Sat Feb 27 21:10:42 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 27 21:39:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba94803 dev-python/xxhash: add Python 3.9 Signed-off-by: Sam James gentoo.org> dev-python/xxhash/xxhash-2.0.0.ebuild | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dev-python/xxhash/xxhash-2.0.0.ebuild b/dev-python/xxhash/xxhash-2.0.0.ebuild index 287ddf042f3..a27b42c102f 100644 --- a/dev-python/xxhash/xxhash-2.0.0.ebuild +++ b/dev-python/xxhash/xxhash-2.0.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=(python3_{7..8}) +PYTHON_COMPAT=( python3_{7..9} ) inherit distutils-r1 @@ -15,7 +15,6 @@ LICENSE="MIT" KEYWORDS="~amd64" SLOT="0" -IUSE="test" RDEPEND=">=dev-libs/xxhash-0.8.0" BDEPEND="${RDEPEND}" @@ -27,6 +26,6 @@ python_configure_all() { } python_test() { - cd tests + cd tests || die "${EPYTHON}" -m unittest discover -v || die "tests failed with ${EPYTHON}" }