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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B545C15800D for ; Sun, 9 Jul 2023 09:20:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E89F0E08C8; Sun, 9 Jul 2023 09:20:56 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCB3DE08C8 for ; Sun, 9 Jul 2023 09:20:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D135E340C93 for ; Sun, 9 Jul 2023 09:20:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3607E51F for ; Sun, 9 Jul 2023 09:20:54 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1688894450.86f03f58fd7b10f51703fd73dff5a3d7923637ef.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/simplebayes/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/simplebayes/simplebayes-1.5.8-r1.ebuild dev-python/simplebayes/simplebayes-1.5.8.ebuild X-VCS-Directories: dev-python/simplebayes/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 86f03f58fd7b10f51703fd73dff5a3d7923637ef X-VCS-Branch: master Date: Sun, 9 Jul 2023 09:20: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: 92c1a3c0-6d45-4215-986e-c7016c2753e0 X-Archives-Hash: 2ecc17e8331f7d518266c800aacdc46e commit: 86f03f58fd7b10f51703fd73dff5a3d7923637ef Author: Bernard Cafarelli gentoo org> AuthorDate: Sun Jul 9 08:30:34 2023 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sun Jul 9 09:20:50 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f03f58 dev-python/simplebayes: switch to PEP517 Closes: https://bugs.gentoo.org/909964 Signed-off-by: Bernard Cafarelli gentoo.org> .../{simplebayes-1.5.8.ebuild => simplebayes-1.5.8-r1.ebuild} | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-python/simplebayes/simplebayes-1.5.8.ebuild b/dev-python/simplebayes/simplebayes-1.5.8-r1.ebuild similarity index 75% rename from dev-python/simplebayes/simplebayes-1.5.8.ebuild rename to dev-python/simplebayes/simplebayes-1.5.8-r1.ebuild index 84a12fa2b2f6..92d03eb3ba62 100644 --- a/dev-python/simplebayes/simplebayes-1.5.8.ebuild +++ b/dev-python/simplebayes/simplebayes-1.5.8-r1.ebuild @@ -2,7 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{9..12} ) inherit distutils-r1 pypi @@ -12,7 +14,3 @@ HOMEPAGE="https://github.com/hickeroar/simplebayes" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" - -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]"