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 A9952138239 for ; Sat, 16 Jan 2021 20:59:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46D3DE0886; Sat, 16 Jan 2021 20:59:30 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 21FAEE0886 for ; Sat, 16 Jan 2021 20:59:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 2A125340F66 for ; Sat, 16 Jan 2021 20:59:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE2FC47 for ; Sat, 16 Jan 2021 20:59:27 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1610830582.46e10fb955b5fee21e996f6dcaab3224e1f676b8.zmedico@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.6.2-r1.ebuild dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild dev-python/aiohttp/aiohttp-3.7.2-r1.ebuild dev-python/aiohttp/aiohttp-3.7.3.ebuild X-VCS-Directories: dev-python/aiohttp/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 46e10fb955b5fee21e996f6dcaab3224e1f676b8 X-VCS-Branch: master Date: Sat, 16 Jan 2021 20:59:27 +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: caf32969-f5b5-4a69-8798-2beb170abe75 X-Archives-Hash: 5811ab0c456e8d2e8dbdafaa2141e0cc commit: 46e10fb955b5fee21e996f6dcaab3224e1f676b8 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat Jan 16 08:26:17 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Jan 16 20:56:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46e10fb9 dev-python/aiohttp: support newer chardet version Closes: https://github.com/gentoo/gentoo/pull/18598 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Zac Medico gentoo.org> dev-python/aiohttp/aiohttp-3.6.2-r1.ebuild | 6 +++++- dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild | 6 +++++- dev-python/aiohttp/aiohttp-3.7.2-r1.ebuild | 4 ++++ dev-python/aiohttp/aiohttp-3.7.3.ebuild | 4 ++++ 4 files changed, 18 insertions(+), 2 deletions(-) diff --git a/dev-python/aiohttp/aiohttp-3.6.2-r1.ebuild b/dev-python/aiohttp/aiohttp-3.6.2-r1.ebuild index ef61f9018de..f2f830a1b52 100644 --- a/dev-python/aiohttp/aiohttp-3.6.2-r1.ebuild +++ b/dev-python/aiohttp/aiohttp-3.6.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -140,6 +140,10 @@ python_prepare_all() { sed -e 's:test_proxy_https_bad_response:_&:' \ -i tests/test_proxy_functional.py || die + # newer chardet works too + sed -e 's|chardet>=2.0,<4.0|chardet>=2.0|' \ + -i setup.py aiohttp.egg-info/requires.txt || die + distutils-r1_python_prepare_all } diff --git a/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild b/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild index f34cfded7a1..17dce8e4e1a 100644 --- a/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild +++ b/dev-python/aiohttp/aiohttp-3.7.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -70,6 +70,10 @@ python_prepare_all() { sed -e 's:test_mark_formdata_as_processed:_&:' \ -i tests/test_formdata.py || die + # newer chardet works too + sed -e 's|chardet>=2.0,<4.0|chardet>=2.0|' \ + -i setup.py aiohttp.egg-info/requires.txt || die + # takes a very long time, then fails rm tests/test_pytest_plugin.py || die diff --git a/dev-python/aiohttp/aiohttp-3.7.2-r1.ebuild b/dev-python/aiohttp/aiohttp-3.7.2-r1.ebuild index 85a66310ae9..be58c081574 100644 --- a/dev-python/aiohttp/aiohttp-3.7.2-r1.ebuild +++ b/dev-python/aiohttp/aiohttp-3.7.2-r1.ebuild @@ -71,6 +71,10 @@ python_prepare_all() { sed -e 's:test_mark_formdata_as_processed:_&:' \ -i tests/test_formdata.py || die + # newer chardet works too + sed -e 's|chardet>=2.0,<4.0|chardet>=2.0|' \ + -i setup.py aiohttp.egg-info/requires.txt || die + # takes a very long time, then fails rm tests/test_pytest_plugin.py || die diff --git a/dev-python/aiohttp/aiohttp-3.7.3.ebuild b/dev-python/aiohttp/aiohttp-3.7.3.ebuild index f2191ebd9c4..150a28290d8 100644 --- a/dev-python/aiohttp/aiohttp-3.7.3.ebuild +++ b/dev-python/aiohttp/aiohttp-3.7.3.ebuild @@ -71,6 +71,10 @@ python_prepare_all() { sed -e 's:test_mark_formdata_as_processed:_&:' \ -i tests/test_formdata.py || die + # newer chardet works too + sed -e 's|chardet>=2.0,<4.0|chardet>=2.0|' \ + -i setup.py aiohttp.egg-info/requires.txt || die + # takes a very long time, then fails rm tests/test_pytest_plugin.py || die