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 3D172158020 for ; Sun, 30 Oct 2022 09:53:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86CBAE08FE; Sun, 30 Oct 2022 09:53:14 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68931E08FE for ; Sun, 30 Oct 2022 09:53:14 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 525E0340E43 for ; Sun, 30 Oct 2022 09:53:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F5B55E8 for ; Sun, 30 Oct 2022 09:53:11 +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: <1667123589.d3417626b941add4dc9fc4088f57ebce89b30c3c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiohttp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aiohttp/aiohttp-3.8.3-r1.ebuild dev-python/aiohttp/aiohttp-3.8.3.ebuild X-VCS-Directories: dev-python/aiohttp/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d3417626b941add4dc9fc4088f57ebce89b30c3c X-VCS-Branch: master Date: Sun, 30 Oct 2022 09:53:11 +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: f340550e-6a14-44d3-adaa-89231f56bfc8 X-Archives-Hash: d2c0f39dcbc67cc9c4899f5c132add28 commit: d3417626b941add4dc9fc4088f57ebce89b30c3c Author: Michał Górny gentoo org> AuthorDate: Sun Oct 30 08:53:08 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 30 09:53:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3417626 dev-python/aiohttp: Unpin charset-normalizer Signed-off-by: Michał Górny gentoo.org> dev-python/aiohttp/{aiohttp-3.8.3.ebuild => aiohttp-3.8.3-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-python/aiohttp/aiohttp-3.8.3.ebuild b/dev-python/aiohttp/aiohttp-3.8.3-r1.ebuild similarity index 96% rename from dev-python/aiohttp/aiohttp-3.8.3.ebuild rename to dev-python/aiohttp/aiohttp-3.8.3-r1.ebuild index 2196ae4a7a44..a627d09b22db 100644 --- a/dev-python/aiohttp/aiohttp-3.8.3.ebuild +++ b/dev-python/aiohttp/aiohttp-3.8.3-r1.ebuild @@ -69,6 +69,9 @@ src_prepare() { # which(1)... sed -i -e 's:which:command -v:' Makefile || die + # remove upper bound from charset-normalizer + sed -i -e '/charset-normalizer/s:, < 3\.0::' setup.cfg || die + distutils-r1_src_prepare }