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 2B2DC1382C5 for ; Thu, 14 May 2020 22:19:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 397E2E0C24; Thu, 14 May 2020 22:19:51 +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 20A25E0C22 for ; Thu, 14 May 2020 22:19:51 +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 3E134350E33 for ; Thu, 14 May 2020 22:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E0BF258 for ; Thu, 14 May 2020 22:19:45 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1589494771.4e6203e9cadf3920c27fa6fe737081ee1c9c15a0.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/twine/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/twine/files/twine-1.11.0-tests.patch X-VCS-Directories: dev-python/twine/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 4e6203e9cadf3920c27fa6fe737081ee1c9c15a0 X-VCS-Branch: master Date: Thu, 14 May 2020 22:19:45 +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: efe544a9-f9e2-4f2b-8d42-fd125cd09168 X-Archives-Hash: 6b0a1d63defc95202a082d2b0f56d055 commit: 4e6203e9cadf3920c27fa6fe737081ee1c9c15a0 Author: Michael Mair-Keimberger gmail com> AuthorDate: Mon Mar 30 16:26:31 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Thu May 14 22:19:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6203e9 dev-python/twine: remove unused patch Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: Aaron Bauman gentoo.org> dev-python/twine/files/twine-1.11.0-tests.patch | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/dev-python/twine/files/twine-1.11.0-tests.patch b/dev-python/twine/files/twine-1.11.0-tests.patch deleted file mode 100644 index 386a4ebcf3a..00000000000 --- a/dev-python/twine/files/twine-1.11.0-tests.patch +++ /dev/null @@ -1,18 +0,0 @@ -Check for python2 support first, then python3. This should help avoid importing -the wrong module for python2 where the builtins module can be provided by the -futures package. - ---- twine-1.11.0/tests/test_utils.py -+++ twine-1.11.0/tests/test_utils.py -@@ -19,9 +19,9 @@ - import textwrap - - try: -- import builtins --except ImportError: - import __builtin__ as builtins -+except ImportError: -+ import builtins - - import pytest -