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 DD427158020 for ; Sun, 20 Nov 2022 00:21:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20C11E0A8A; Sun, 20 Nov 2022 00:21:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 06B0CE0A8A for ; Sun, 20 Nov 2022 00:21:32 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22ECA34123D for ; Sun, 20 Nov 2022 00:21:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D741E776 for ; Sun, 20 Nov 2022 00:21:27 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1668728544.f365eb43a81989ad24f75995df97552e08d3e7ad.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/support.py X-VCS-Directories: catalyst/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f365eb43a81989ad24f75995df97552e08d3e7ad X-VCS-Branch: wip/mattst88 Date: Sun, 20 Nov 2022 00:21: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: d7294bf1-59d1-4c6e-bee3-f147e38c53b4 X-Archives-Hash: dfc03d4a807f4c595636b859cc37a61f commit: f365eb43a81989ad24f75995df97552e08d3e7ad Author: Matt Turner gentoo org> AuthorDate: Thu Nov 17 23:41:33 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Nov 17 23:42:24 2022 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f365eb43 catalyst: Remove stray space Signed-off-by: Matt Turner gentoo.org> catalyst/support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/support.py b/catalyst/support.py index a69566d2..6945d053 100644 --- a/catalyst/support.py +++ b/catalyst/support.py @@ -78,7 +78,7 @@ def file_check(filepath, extensions=None): files = glob.glob("%s.*" % filepath) # remove any false positive files files = [x for x in files if - not x.endswith( ".CONTENTS") and + not x.endswith(".CONTENTS") and not x.endswith(".CONTENTS.gz") and not x.endswith(".DIGESTS") and not x.endswith(".sha256")] 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 C58F3158020 for ; Thu, 17 Nov 2022 23:42:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AEF9EE095F; Thu, 17 Nov 2022 23:42:42 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95739E095F for ; Thu, 17 Nov 2022 23:42:42 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5CEE340FCD for ; Thu, 17 Nov 2022 23:42:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0308F757 for ; Thu, 17 Nov 2022 23:42:39 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1668728544.f365eb43a81989ad24f75995df97552e08d3e7ad.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/support.py X-VCS-Directories: catalyst/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: f365eb43a81989ad24f75995df97552e08d3e7ad X-VCS-Branch: master Date: Thu, 17 Nov 2022 23:42:39 +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: aab675d5-daeb-4465-9948-75977f988dcd X-Archives-Hash: 6a6cdf4b1b03d9e540737e6d99a51c6a Message-ID: <20221117234239.oMn2r0Y1elYfIQNaK3pkxSUkaIn--B3ERNLItplf374@z> commit: f365eb43a81989ad24f75995df97552e08d3e7ad Author: Matt Turner gentoo org> AuthorDate: Thu Nov 17 23:41:33 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Nov 17 23:42:24 2022 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f365eb43 catalyst: Remove stray space Signed-off-by: Matt Turner gentoo.org> catalyst/support.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/support.py b/catalyst/support.py index a69566d2..6945d053 100644 --- a/catalyst/support.py +++ b/catalyst/support.py @@ -78,7 +78,7 @@ def file_check(filepath, extensions=None): files = glob.glob("%s.*" % filepath) # remove any false positive files files = [x for x in files if - not x.endswith( ".CONTENTS") and + not x.endswith(".CONTENTS") and not x.endswith(".CONTENTS.gz") and not x.endswith(".DIGESTS") and not x.endswith(".sha256")]