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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E924A15813A for ; Sat, 18 Jan 2025 23:49:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1FC9DE08EF; Sat, 18 Jan 2025 23:49:12 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 EDCCBE08EF for ; Sat, 18 Jan 2025 23:49:11 +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 85EA8342FA3 for ; Sat, 18 Jan 2025 23:49:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1858C2503 for ; Sat, 18 Jan 2025 23:49:09 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1737244138.3d20a63b236eb4b90726e5f9b11b35a367cfbd04.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/linux-firmware/files/linux-firmware-check-whence.patch X-VCS-Directories: sys-kernel/linux-firmware/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 3d20a63b236eb4b90726e5f9b11b35a367cfbd04 X-VCS-Branch: master Date: Sat, 18 Jan 2025 23:49:09 +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: 5b12c9ff-62fd-4b50-afc8-03403f89a5e8 X-Archives-Hash: 7ac24ae75a99430d41b48254db38c819 commit: 3d20a63b236eb4b90726e5f9b11b35a367cfbd04 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Wed Jan 15 18:54:30 2025 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jan 18 23:48:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d20a63b sys-kernel/linux-firmware: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/40151 Signed-off-by: Conrad Kostecki gentoo.org> .../files/linux-firmware-check-whence.patch | 42 ---------------------- 1 file changed, 42 deletions(-) diff --git a/sys-kernel/linux-firmware/files/linux-firmware-check-whence.patch b/sys-kernel/linux-firmware/files/linux-firmware-check-whence.patch deleted file mode 100644 index 99b0ddf25a85..000000000000 --- a/sys-kernel/linux-firmware/files/linux-firmware-check-whence.patch +++ /dev/null @@ -1,42 +0,0 @@ -diff --git a/check_whence.py b/check_whence.py -index c3d4a2e38f095ec806a150bf25c5065445ff393f..1fece4f4920a1fdcce7589e54cdc37e1b4c2100c 100755 ---- a/check_whence.py -+++ b/check_whence.py -@@ -60,9 +60,12 @@ def list_links_list(): - - - def list_git(): -- with os.popen("git ls-files") as git_files: -- for line in git_files: -- yield line.rstrip("\n") -+ git_files = os.popen("git ls-files") -+ for line in git_files: -+ yield line.rstrip("\n") -+ -+ if git_files.close(): -+ sys.stderr.write("W: git file listing failed, skipping some validation\n") - - - def main(): -@@ -135,7 +138,7 @@ def main(): - ) - ret = 1 - -- for name in sorted(list(known_files - git_files)): -+ for name in sorted(list(known_files - git_files) if len(git_files) else list()): - sys.stderr.write("E: %s listed in WHENCE does not exist\n" % name) - ret = 1 - -@@ -151,10 +154,10 @@ def main(): - break - valid_targets.add(dirname) - -- for link, target in sorted(links_list): -+ for link, target in sorted(links_list if len(git_files) else list()): - if target not in valid_targets: - sys.stderr.write( -- "E: target %s of link %s in WHENCE" " does not exist\n" % (target, link) -+ "E: target %s of link %s in WHENCE does not exist\n" % (target, link) - ) - ret = 1 -