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 ADE751382C5 for ; Sat, 16 May 2020 16:12:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CDB35E09F0; Sat, 16 May 2020 16:12:55 +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 B1263E09F0 for ; Sat, 16 May 2020 16:12:55 +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 356AF34F35E for ; Sat, 16 May 2020 16:12:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9D8E91B0 for ; Sat, 16 May 2020 16:12:52 +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: <1589645567.77d56b9d2d82d112e9b6ac7beab09b0c6e814510.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pycurl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pycurl/pycurl-7.43.0.5.ebuild X-VCS-Directories: dev-python/pycurl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 77d56b9d2d82d112e9b6ac7beab09b0c6e814510 X-VCS-Branch: master Date: Sat, 16 May 2020 16:12:52 +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: b7b01ee7-39d1-4c16-8db0-f4ec37c2d352 X-Archives-Hash: fb40b712938746288312e75b65147263 commit: 77d56b9d2d82d112e9b6ac7beab09b0c6e814510 Author: Michał Górny gentoo org> AuthorDate: Sat May 16 16:11:07 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 16 16:12:47 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77d56b9d dev-python/pycurl: Disable tests broken by bottle upgrade Upstream is silly and requires old dev-python/bottle version for testing. Instead of harming users and preventing downgrade, let's disable the few tests that require that. Closes: https://bugs.gentoo.org/721270 Signed-off-by: Michał Górny gentoo.org> dev-python/pycurl/pycurl-7.43.0.5.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-python/pycurl/pycurl-7.43.0.5.ebuild b/dev-python/pycurl/pycurl-7.43.0.5.ebuild index 0bdbcb60e90..a299572dfd1 100644 --- a/dev-python/pycurl/pycurl-7.43.0.5.ebuild +++ b/dev-python/pycurl/pycurl-7.43.0.5.ebuild @@ -54,6 +54,8 @@ PATCHES=( python_prepare_all() { sed -e "/setup_args\['data_files'\] = /d" -i setup.py || die + # these tests are broken with newer versions of bottle + sed -e 's:test.*_invalid_utf8:_&:' -i tests/getinfo_test.py || die distutils-r1_python_prepare_all }