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 858EE158090 for ; Sun, 22 May 2022 04:04:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E86FE0950; Sun, 22 May 2022 04:04:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 57B33E0946 for ; Sun, 22 May 2022 04:04:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 7382B341B7E for ; Sun, 22 May 2022 04:04:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D97DB3C3 for ; Sun, 22 May 2022 04:04:07 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1653191818.478258a359de6a0e3bef3ce2c23ce74cbee786b2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/scanmem/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/scanmem/scanmem-0.17.ebuild X-VCS-Directories: dev-util/scanmem/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 478258a359de6a0e3bef3ce2c23ce74cbee786b2 X-VCS-Branch: master Date: Sun, 22 May 2022 04:04:07 +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: 385d43b8-49f9-4aa2-a470-cca6c4b4f694 X-Archives-Hash: 464e0a29ad24d236440f6797baee761c commit: 478258a359de6a0e3bef3ce2c23ce74cbee786b2 Author: Sam James gentoo org> AuthorDate: Sun May 22 03:56:52 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun May 22 03:56:58 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=478258a3 dev-util/scanmem: update EAPI 7 -> 8, Python 3.10 Closes: https://bugs.gentoo.org/845969 Signed-off-by: Sam James gentoo.org> dev-util/scanmem/scanmem-0.17.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-util/scanmem/scanmem-0.17.ebuild b/dev-util/scanmem/scanmem-0.17.ebuild index 0f73625fc11a..eb0dd2115025 100644 --- a/dev-util/scanmem/scanmem-0.17.ebuild +++ b/dev-util/scanmem/scanmem-0.17.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{8,9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit autotools python-single-r1 DESCRIPTION="Locate and modify variables in executing processes" @@ -16,7 +15,7 @@ SLOT="0" KEYWORDS="~amd64 ~riscv ~x86" IUSE="gui static-libs" -DEPEND="sys-libs/readline:0=" +DEPEND="sys-libs/readline:=" RDEPEND="${DEPEND} gui? ( ${PYTHON_DEPS} @@ -44,6 +43,7 @@ src_configure() { $(use_enable gui) $(use_enable static-libs static) ) + econf "${myeconfargs[@]}" }