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 21C5C138359 for ; Sat, 17 Oct 2020 09:15:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E7BFE0946; Sat, 17 Oct 2020 09:14:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 4AEA4E0946 for ; Sat, 17 Oct 2020 09:14:49 +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 1AAB0340DCC for ; Sat, 17 Oct 2020 09:14:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89519396 for ; Sat, 17 Oct 2020 09:14:46 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1602926057.ee8d2e708034e5971e496100a19c7414a0f5e460.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-editor/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-editor/python-editor-1.0.4-r1.ebuild dev-python/python-editor/python-editor-1.0.4.ebuild X-VCS-Directories: dev-python/python-editor/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: ee8d2e708034e5971e496100a19c7414a0f5e460 X-VCS-Branch: master Date: Sat, 17 Oct 2020 09:14:46 +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: a687099c-d4cc-4c9e-b690-217e0045a47b X-Archives-Hash: 857a17c6470e29136b8f13112bbd8598 commit: ee8d2e708034e5971e496100a19c7414a0f5e460 Author: Louis Sautier gentoo org> AuthorDate: Sat Oct 17 09:11:37 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat Oct 17 09:14:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8d2e70 dev-python/python-editor: support PyPy3+Python3.9, remove six dep. Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> .../{python-editor-1.0.4.ebuild => python-editor-1.0.4-r1.ebuild} | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dev-python/python-editor/python-editor-1.0.4.ebuild b/dev-python/python-editor/python-editor-1.0.4-r1.ebuild similarity index 73% rename from dev-python/python-editor/python-editor-1.0.4.ebuild rename to dev-python/python-editor/python-editor-1.0.4-r1.ebuild index a0cfe0c0d02..03b172a5e7c 100644 --- a/dev-python/python-editor/python-editor-1.0.4.ebuild +++ b/dev-python/python-editor/python-editor-1.0.4-r1.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( pypy3 python3_{6..9} ) inherit distutils-r1 DESCRIPTION="Programmatically open an editor, capture the result." @@ -13,7 +13,3 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND="dev-python/six[${PYTHON_USEDEP}]"