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 935D015800F for ; Tue, 14 Feb 2023 21:05:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93475E07E6; Tue, 14 Feb 2023 21:05: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 351C5E07E6 for ; Tue, 14 Feb 2023 21:05:12 +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 3D6A2335D4D for ; Tue, 14 Feb 2023 21:05:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B67298AD for ; Tue, 14 Feb 2023 21:05:08 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1676408704.4d768ad350b2cd830a319856fe28700aa1001677.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/importlib_resources/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/importlib_resources/importlib_resources-5.10.2.ebuild X-VCS-Directories: dev-python/importlib_resources/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4d768ad350b2cd830a319856fe28700aa1001677 X-VCS-Branch: master Date: Tue, 14 Feb 2023 21:05:08 +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: c4c49596-95a1-4dcd-a7da-1ce6d9d10a5c X-Archives-Hash: f90515af5f294d38e12ff730bf203f48 commit: 4d768ad350b2cd830a319856fe28700aa1001677 Author: Michał Górny gentoo org> AuthorDate: Tue Feb 14 20:39:32 2023 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 14 21:05:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d768ad3 dev-python/importlib_resources: Enable py3.9 (for matplotlib) Signed-off-by: Michał Górny gentoo.org> dev-python/importlib_resources/importlib_resources-5.10.2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild b/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild index ddcd02a543b7..c940531e0171 100644 --- a/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild +++ b/dev-python/importlib_resources/importlib_resources-5.10.2.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# please keep this ebuild at EAPI 7 -- sys-apps/portage dep EAPI=7 DISTUTILS_USE_PEP517=flit -# This is a backport of Python 3.9's importlib.resources -PYTHON_COMPAT=( pypy3 ) +# This is a backport of importlib.resources that's present since py3.9. +# However, the version in 3.9 is buggy, so matplotlib needs it on 3.9 +# as well. +PYTHON_COMPAT=( pypy3 python3_9 ) inherit distutils-r1