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 CAB5A138359 for ; Sat, 12 Sep 2020 09:55:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01DA0E081E; Sat, 12 Sep 2020 09:55:14 +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 DCA16E081E for ; Sat, 12 Sep 2020 09:55:13 +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 45D0033D3CD for ; Sat, 12 Sep 2020 09:55:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC40633F for ; Sat, 12 Sep 2020 09:55:10 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1599904447.3e11c09ea1d09a2a4c85b0ca1540637a6c0cc2aa.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/argcomplete/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/argcomplete/files/argcomplete-1.11.1-fish-xpass.patch X-VCS-Directories: dev-python/argcomplete/files/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3e11c09ea1d09a2a4c85b0ca1540637a6c0cc2aa X-VCS-Branch: master Date: Sat, 12 Sep 2020 09:55:10 +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: d9b1ac2b-9417-4d6c-9839-a155043961f5 X-Archives-Hash: 382c859f4c706cc5d5e1423065c2f00f commit: 3e11c09ea1d09a2a4c85b0ca1540637a6c0cc2aa Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri Aug 28 16:51:56 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Sep 12 09:54:07 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e11c09e dev-python/argcomplete: remove unused patch(es) Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Michael Mair-Keimberger gmail.com> Signed-off-by: David Seifert gentoo.org> .../files/argcomplete-1.11.1-fish-xpass.patch | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/dev-python/argcomplete/files/argcomplete-1.11.1-fish-xpass.patch b/dev-python/argcomplete/files/argcomplete-1.11.1-fish-xpass.patch deleted file mode 100644 index 575c8abbb74..00000000000 --- a/dev-python/argcomplete/files/argcomplete-1.11.1-fish-xpass.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 08bfc8a788e8081515d733e67be026d051c726f7 Mon Sep 17 00:00:00 2001 -From: Evan -Date: Thu, 19 Mar 2020 14:55:07 +1100 -Subject: [PATCH] Remove expected test failure for new versions of fish (#292) - ---- - test/test.py | 7 ++++++- - 1 file changed, 6 insertions(+), 1 deletion(-) - -diff --git a/test/test.py b/test/test.py -index e91352b..2c34806 100755 ---- a/test/test.py -+++ b/test/test.py -@@ -28,6 +28,8 @@ - - BASH_VERSION = subprocess.check_output(['bash', '-c', 'echo $BASH_VERSION']).decode() - BASH_MAJOR_VERSION = int(BASH_VERSION.split('.')[0]) -+FISH_VERSION_STR = subprocess.check_output(['fish', '-c', 'echo -n $FISH_VERSION']).decode() -+FISH_VERSION_TUPLE = tuple(int(x) for x in FISH_VERSION_STR.split('.')) - - - class TempDir(object): -@@ -1258,8 +1260,11 @@ class TestFish(_TestSh, unittest.TestCase): - expected_failures = [ - 'test_parse_special_characters', - 'test_comp_point', -- 'test_special_characters_double_quoted' - ] -+ if FISH_VERSION_TUPLE < (3, 1): -+ expected_failures.extend([ -+ 'test_special_characters_double_quoted' -+ ]) - - skipped = [ - 'test_single_quotes_in_single_quotes',