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 AE996158534 for ; Tue, 20 Aug 2024 06:54:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5D29E29E3; Tue, 20 Aug 2024 06:54:02 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB9E7E29E3 for ; Tue, 20 Aug 2024 06:54:02 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B8491335D72 for ; Tue, 20 Aug 2024 06:54:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2D1301EFD for ; Tue, 20 Aug 2024 06:54:00 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1724136766.2bf7cecfe13c34821c6d64974fca4c7b3aaa0706.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/rizin/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/rizin/files/rizin-0.5.2-find-tree-sitter-parser.patch X-VCS-Directories: dev-util/rizin/files/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2bf7cecfe13c34821c6d64974fca4c7b3aaa0706 X-VCS-Branch: master Date: Tue, 20 Aug 2024 06:54:00 +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: fb6dceec-5c7b-40ec-9216-df3a583706a0 X-Archives-Hash: c4005aaa66f4a12480cbfce6d40e3f23 commit: 2bf7cecfe13c34821c6d64974fca4c7b3aaa0706 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Aug 20 06:34:38 2024 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Aug 20 06:52:46 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf7cecf dev-util/rizin: remove unused patch Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Joonas Niilola gentoo.org> .../rizin-0.5.2-find-tree-sitter-parser.patch | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/dev-util/rizin/files/rizin-0.5.2-find-tree-sitter-parser.patch b/dev-util/rizin/files/rizin-0.5.2-find-tree-sitter-parser.patch deleted file mode 100644 index 27811e9930ee..000000000000 --- a/dev-util/rizin/files/rizin-0.5.2-find-tree-sitter-parser.patch +++ /dev/null @@ -1,33 +0,0 @@ -https://bugs.gentoo.org/913343 - ->=tree-sitter-0.20.8-r1 doesn't install parser.h anymore because it may be -mismatched with the version used to build the parser. Use one bundled with -rizin-shell-parser instead. - -This should propagate into rizin-shell-parser when they regenerate -with a newer tree-sitter release (once one is made). - -See also: -* https://bugs.gentoo.org/912716 -* https://bugs.gentoo.org/913343 -* https://github.com/tree-sitter/tree-sitter/pull/2573 -* https://github.com/tree-sitter/tree-sitter/pull/2574 ---- a/subprojects/rizin-shell-parser/src/parser.c -+++ b/subprojects/rizin-shell-parser/src/parser.c -@@ -1,4 +1,4 @@ --#include -+#include "tree_sitter/parser.h" - - #if defined(__GNUC__) || defined(__clang__) - #pragma GCC diagnostic push ---- a/subprojects/rizin-shell-parser/src/scanner.c -+++ b/subprojects/rizin-shell-parser/src/scanner.c -@@ -1,7 +1,7 @@ - // SPDX-FileCopyrightText: 2020 ret2libc - // SPDX-License-Identifier: LGPL-3.0-only - --#include -+#include "tree_sitter/parser.h" - #include - #include - #include