From 7979b97edfeee3bb4201e1fef232a74607bb214e Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sun, 15 Jun 2025 10:48:37 +0200 Subject: [PATCH] dev-debug/bpftrace: remove unused patches Signed-off-by: Michael Mair-Keimberger Part-of: https://github.com/gentoo/gentoo/pull/42602 Signed-off-by: Michael Mair-Keimberger --- .../files/bpftrace-0.21.3-allow-llvm-19.patch | 18 ------------ .../files/bpftrace-0.21.3-cstdint.patch | 28 ------------------- 2 files changed, 46 deletions(-) delete mode 100644 dev-debug/bpftrace/files/bpftrace-0.21.3-allow-llvm-19.patch delete mode 100644 dev-debug/bpftrace/files/bpftrace-0.21.3-cstdint.patch diff --git a/dev-debug/bpftrace/files/bpftrace-0.21.3-allow-llvm-19.patch b/dev-debug/bpftrace/files/bpftrace-0.21.3-allow-llvm-19.patch deleted file mode 100644 index 297c096a37a0c..0000000000000 --- a/dev-debug/bpftrace/files/bpftrace-0.21.3-allow-llvm-19.patch +++ /dev/null @@ -1,18 +0,0 @@ - -Patch adapted from from https://github.com/bpftrace/bpftrace/pull/3433 - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 2b60fa26d990..11927a434731 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -156,8 +156,8 @@ else() - find_package(LLVM REQUIRED) - endif() - --set(MIN_LLVM_MAJOR 6) -+set(MIN_LLVM_MAJOR 13) --set(MAX_LLVM_MAJOR 18) -+set(MAX_LLVM_MAJOR 19) - - if((${LLVM_VERSION_MAJOR} VERSION_LESS ${MIN_LLVM_MAJOR}) OR (${LLVM_VERSION_MAJOR} VERSION_GREATER ${MAX_LLVM_MAJOR})) - message(SEND_ERROR "Unsupported LLVM version found via ${LLVM_INCLUDE_DIRS}: ${LLVM_VERSION_MAJOR}") diff --git a/dev-debug/bpftrace/files/bpftrace-0.21.3-cstdint.patch b/dev-debug/bpftrace/files/bpftrace-0.21.3-cstdint.patch deleted file mode 100644 index 60f8ea53d4d6a..0000000000000 --- a/dev-debug/bpftrace/files/bpftrace-0.21.3-cstdint.patch +++ /dev/null @@ -1,28 +0,0 @@ - -Patch from: https://github.com/bpftrace/bpftrace/commit/9996177e80f66e1d991f960fa9eb39c221ed7f45 - -From 9996177e80f66e1d991f960fa9eb39c221ed7f45 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Holger=20Hoffst=C3=A4tte?= -Date: Tue, 20 Aug 2024 12:12:45 +0200 -Subject: [PATCH] Explicitly include for gcc-15 -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Fixes: https://github.com/bpftrace/bpftrace/issues/3406 -Signed-off-by: Holger Hoffstätte ---- - src/disasm.h | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/disasm.h b/src/disasm.h -index b5411f2e416c..d8d7fde8aa46 100644 ---- a/src/disasm.h -+++ b/src/disasm.h -@@ -1,5 +1,6 @@ - #pragma once - -+#include - #include - #include -