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 47193158020 for ; Fri, 25 Nov 2022 17:07:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBFB9E0A98; Fri, 25 Nov 2022 17:05:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 7A0E4E0A90 for ; Fri, 25 Nov 2022 17:05:21 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH 7/7] python-utils-r1.eclass: Bump min Python versions Date: Fri, 25 Nov 2022 18:05:08 +0100 Message-Id: <20221125170508.23064-8-mgorny@gentoo.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221125170508.23064-1-mgorny@gentoo.org> References: <20221125170508.23064-1-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: 519b0a58-32b7-4291-982c-2e7b29fb6221 X-Archives-Hash: 9b68ae92b4f4573aa7989d3230f6f405 Signed-off-by: Michał Górny --- eclass/python-utils-r1.eclass | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass index 7a5f84bd561e..09b9861b8fd4 100644 --- a/eclass/python-utils-r1.eclass +++ b/eclass/python-utils-r1.eclass @@ -455,21 +455,21 @@ _python_export() { local d case ${impl} in python2.7) - PYTHON_PKG_DEP='>=dev-lang/python-2.7.10_p15:2.7';; + PYTHON_PKG_DEP='>=dev-lang/python-2.7.10_p16:2.7';; python3.8) - PYTHON_PKG_DEP=">=dev-lang/python-3.8.13:3.8";; + PYTHON_PKG_DEP=">=dev-lang/python-3.8.15_p3:3.8";; python3.9) - PYTHON_PKG_DEP=">=dev-lang/python-3.9.12:3.9";; + PYTHON_PKG_DEP=">=dev-lang/python-3.9.15_p3:3.9";; python3.10) - PYTHON_PKG_DEP=">=dev-lang/python-3.10.4:3.10";; + PYTHON_PKG_DEP=">=dev-lang/python-3.10.8_p3:3.10";; python3.11) - PYTHON_PKG_DEP=">=dev-lang/python-3.11.0_beta4:3.11";; + PYTHON_PKG_DEP=">=dev-lang/python-3.11.0_p2:3.11";; python*) PYTHON_PKG_DEP="dev-lang/python:${impl#python}";; pypy) - PYTHON_PKG_DEP='>=dev-python/pypy-7.3.9:0=';; + PYTHON_PKG_DEP='>=dev-python/pypy-7.3.9-r2:0=';; pypy3) - PYTHON_PKG_DEP='>=dev-python/pypy3-7.3.9_p1:0=';; + PYTHON_PKG_DEP='>=dev-python/pypy3-7.3.9_p9:0=';; *) die "Invalid implementation: ${impl}" esac -- 2.38.1