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 86ABD158020 for ; Wed, 7 Dec 2022 19:43:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D237CE07EA; Wed, 7 Dec 2022 19:43:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB0ADE07EA for ; Wed, 7 Dec 2022 19:43:15 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0E15E33C6B6 for ; Wed, 7 Dec 2022 19:43:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 999CC756 for ; Wed, 7 Dec 2022 19:43:13 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1670442181.525ac8b07e26c41a73a52068e07ea9f1a2dfb774.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/keras-applications/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild sci-libs/keras-applications/keras-applications-1.0.8-r2.ebuild X-VCS-Directories: sci-libs/keras-applications/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 525ac8b07e26c41a73a52068e07ea9f1a2dfb774 X-VCS-Branch: master Date: Wed, 7 Dec 2022 19:43:13 +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: 9dff323b-88d7-4ad6-907e-a6d451d3f540 X-Archives-Hash: b69669137135eab7cf3cdd716fdd2ba4 commit: 525ac8b07e26c41a73a52068e07ea9f1a2dfb774 Author: David Seifert gentoo org> AuthorDate: Wed Dec 7 19:43:01 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Dec 7 19:43:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=525ac8b0 sci-libs/keras-applications: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ...cations-1.0.8-r1.ebuild => keras-applications-1.0.8-r2.ebuild} | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild b/sci-libs/keras-applications/keras-applications-1.0.8-r2.ebuild similarity index 79% rename from sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild rename to sci-libs/keras-applications/keras-applications-1.0.8-r2.ebuild index bdb62d7aa08c..8baf6e78c0af 100644 --- a/sci-libs/keras-applications/keras-applications-1.0.8-r1.ebuild +++ b/sci-libs/keras-applications/keras-applications-1.0.8-r2.ebuild @@ -1,9 +1,10 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 -PYTHON_COMPAT=( python3_{8,9,10} ) +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) inherit distutils-r1 DESCRIPTION="Keras deep learning library reference implementations of deep learning models" @@ -13,8 +14,5 @@ SRC_URI="https://github.com/keras-team/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]"