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 39DDB1382C5 for ; Mon, 8 Jun 2020 17:52:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7EF92E0903; Mon, 8 Jun 2020 17:52:57 +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 6604CE0903 for ; Mon, 8 Jun 2020 17:52:57 +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 68B0434F1CF for ; Mon, 8 Jun 2020 17:52:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E567D263 for ; Mon, 8 Jun 2020 17:52:54 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1591638771.746d21da3298642ad029499afb4d4dd9ee0ecf24.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pynacl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pynacl/pynacl-1.3.0.ebuild X-VCS-Directories: dev-python/pynacl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 746d21da3298642ad029499afb4d4dd9ee0ecf24 X-VCS-Branch: master Date: Mon, 8 Jun 2020 17:52:54 +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: fe3700a9-16a9-42ff-9a80-80f5064aef4d X-Archives-Hash: 27d9a222be1ba96b5c9da95b3a2fe06a commit: 746d21da3298642ad029499afb4d4dd9ee0ecf24 Author: Michał Górny gentoo org> AuthorDate: Mon Jun 8 17:46:33 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jun 8 17:52:51 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746d21da dev-python/pynacl: Port to py3.9 Signed-off-by: Michał Górny gentoo.org> dev-python/pynacl/pynacl-1.3.0.ebuild | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/dev-python/pynacl/pynacl-1.3.0.ebuild b/dev-python/pynacl/pynacl-1.3.0.ebuild index 97a32891a3b..dfc8f7da7cd 100644 --- a/dev-python/pynacl/pynacl-1.3.0.ebuild +++ b/dev-python/pynacl/pynacl-1.3.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8}) +PYTHON_COMPAT=( python2_7 python3_{6..9}) inherit distutils-r1 @@ -14,8 +14,6 @@ SRC_URI="https://github.com/pyca/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" dev-python/six[${PYTHON_USEDEP}] @@ -24,10 +22,11 @@ RDEPEND=" " DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] - test? ( >=dev-python/hypothesis-3.27.0[${PYTHON_USEDEP}] - >=dev-python/pytest-3.2.1[${PYTHON_USEDEP}] ) + test? ( >=dev-python/hypothesis-3.27.0[${PYTHON_USEDEP}] ) " +distutils_enable_tests pytest + PATCHES=( "${FILESDIR}/${P}-hypothesis-4.patch" ) src_prepare() { @@ -35,7 +34,3 @@ src_prepare() { export SODIUM_INSTALL=system distutils-r1_python_prepare_all } - -python_test() { - py.test -v || die "Tests failed under ${EPYTHON}" -}