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 AC0161382C5 for ; Mon, 24 May 2021 18:52:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0945BE0815; Mon, 24 May 2021 18:52:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 DD3F1E0802 for ; Mon, 24 May 2021 18:52:27 +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 176D23409D8 for ; Mon, 24 May 2021 18:52:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7525B79A for ; Mon, 24 May 2021 18:52:22 +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: <1621882334.0687b878a88268793695044fbd754ff8988b1fe6.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/jedi/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/jedi/jedi-0.10.0.ebuild X-VCS-Directories: app-vim/jedi/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0687b878a88268793695044fbd754ff8988b1fe6 X-VCS-Branch: master Date: Mon, 24 May 2021 18:52: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: c89372bd-4b7f-483d-a8b9-15986aa89499 X-Archives-Hash: 1c94573c09b8120b3ab590cb7b071352 commit: 0687b878a88268793695044fbd754ff8988b1fe6 Author: Zamarin Arthur gmail com> AuthorDate: Mon May 24 08:36:15 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 24 18:52:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0687b878 app-vim/jedi: bump to python 3.9 Signed-off-by: Zamarin Arthur gmail.com> Signed-off-by: Michał Górny gentoo.org> app-vim/jedi/jedi-0.10.0.ebuild | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/app-vim/jedi/jedi-0.10.0.ebuild b/app-vim/jedi/jedi-0.10.0.ebuild index ef127090588..7b566e30703 100644 --- a/app-vim/jedi/jedi-0.10.0.ebuild +++ b/app-vim/jedi/jedi-0.10.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 vim-plugin python-single-r1 @@ -19,7 +19,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND=" ${PYTHON_DEPS} - $(python_gen_cond_dep 'dev-python/jedi[${PYTHON_MULTI_USEDEP}]') + $(python_gen_cond_dep 'dev-python/jedi[${PYTHON_USEDEP}]') app-editors/vim[python]" BDEPEND="${PYTHON_DEPS} test? ( dev-python/pytest )" @@ -32,10 +32,6 @@ RESTRICT="test" # Makefile tries hard to call tests so let's silence this phase. src_compile() { :; } -src_install() { - vim-plugin_src_install -} - src_test() { - pytest -vv || die + epytest }