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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BE910138359 for ; Sat, 9 May 2020 15:44:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02375E07A7; Sat, 9 May 2020 15:44:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D7185E07A7 for ; Sat, 9 May 2020 15:44:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93BC334F14F for ; Sat, 9 May 2020 15:44:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17F561AA for ; Sat, 9 May 2020 15:44:33 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1589039040.834b7293bdf8eb9fb27b1159b58fed5b970df6af.sbraz@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-1.5.0-r1.ebuild dev-python/importlib_resources/importlib_resources-1.5.0.ebuild X-VCS-Directories: dev-python/importlib_resources/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 834b7293bdf8eb9fb27b1159b58fed5b970df6af X-VCS-Branch: master Date: Sat, 9 May 2020 15:44:33 +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: c524b452-f622-461e-8d9a-13713dd3af68 X-Archives-Hash: 2ecfdbe3eb0047c8f66948d07a71c4e1 commit: 834b7293bdf8eb9fb27b1159b58fed5b970df6af Author: Louis Sautier gentoo org> AuthorDate: Sat May 9 15:34:29 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sat May 9 15:44:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834b7293 dev-python/importlib_resources: fix dependencies for Python 3.7 The importlib_metadata and zipp packages are required as they are not present in Python 3.7's stdlib. Closes: https://bugs.gentoo.org/721838 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Louis Sautier gentoo.org> ...rtlib_resources-1.5.0.ebuild => importlib_resources-1.5.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/importlib_resources/importlib_resources-1.5.0.ebuild b/dev-python/importlib_resources/importlib_resources-1.5.0-r1.ebuild similarity index 98% rename from dev-python/importlib_resources/importlib_resources-1.5.0.ebuild rename to dev-python/importlib_resources/importlib_resources-1.5.0-r1.ebuild index ed6fc5f35c5..e86acf448e7 100644 --- a/dev-python/importlib_resources/importlib_resources-1.5.0.ebuild +++ b/dev-python/importlib_resources/importlib_resources-1.5.0-r1.ebuild @@ -26,7 +26,7 @@ RDEPEND=" $(python_gen_cond_dep ' dev-python/importlib_metadata[${PYTHON_USEDEP}] dev-python/zipp[${PYTHON_USEDEP}] - ' pypy3 python3_6) + ' pypy3 python3_{6,7}) " BDEPEND=" dev-python/toml[${PYTHON_USEDEP}]