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 20BD0138335 for ; Sat, 16 Nov 2019 11:02:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5CE7E0822; Sat, 16 Nov 2019 11:02:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 94694E0805 for ; Sat, 16 Nov 2019 11:02:03 +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 5BC3434CEB3 for ; Sat, 16 Nov 2019 11:02:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D0118B6 for ; Sat, 16 Nov 2019 11:02:00 +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: <1573902070.ceac74aa4531596d5d30ef7fe599f11c10e6acac.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pexpect/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pexpect/pexpect-4.6.0.ebuild X-VCS-Directories: dev-python/pexpect/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ceac74aa4531596d5d30ef7fe599f11c10e6acac X-VCS-Branch: master Date: Sat, 16 Nov 2019 11:02:00 +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: c33c3cf5-1d17-4782-a604-4edab84a8db1 X-Archives-Hash: 99d8f385abd5fa85ef2b8e8c8c36fe1b commit: ceac74aa4531596d5d30ef7fe599f11c10e6acac Author: Michał Górny gentoo org> AuthorDate: Sat Nov 16 09:13:31 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 16 11:01:10 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceac74aa dev-python/pexpect: Enable py3.8 Signed-off-by: Michał Górny gentoo.org> dev-python/pexpect/pexpect-4.6.0.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/dev-python/pexpect/pexpect-4.6.0.ebuild b/dev-python/pexpect/pexpect-4.6.0.ebuild index d5596edcb12..9a8c5e55861 100644 --- a/dev-python/pexpect/pexpect-4.6.0.ebuild +++ b/dev-python/pexpect/pexpect-4.6.0.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{5,6,7,8} pypy pypy3 ) PYTHON_REQ_USE="threads(+)" inherit distutils-r1 @@ -15,21 +15,18 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="doc examples test" +IUSE="doc examples" RDEPEND=">=dev-python/ptyprocess-0.5[${PYTHON_USEDEP}]" DEPEND=" - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + doc? ( dev-python/sphinx )" + +distutils_enable_tests pytest python_compile_all() { use doc && emake -C doc html } -python_test() { - pytest -vv tests || die "Tests fail with ${EPYTHON}" -} - python_install_all() { use doc && local HTML_DOCS=( doc/_build/html/. ) if use examples; then