summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-11-03 11:35:52 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2023-11-03 12:16:17 +0100
commitf487715adc231949f9e7caf6335c2971d003d82d (patch)
tree50e2a985e8e974ec04d1e8bf2c81fdb23c54406f /dev-util/heaptrack/files
parentdev-qt/qtwebengine: add 5.15.11_p20231102 (diff)
downloadgentoo-f487715adc231949f9e7caf6335c2971d003d82d.tar.gz
gentoo-f487715adc231949f9e7caf6335c2971d003d82d.tar.bz2
gentoo-f487715adc231949f9e7caf6335c2971d003d82d.zip
dev-util/heaptrack: drop 1.4.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-util/heaptrack/files')
-rw-r--r--dev-util/heaptrack/files/heaptrack-1.4.0-boost-1.81.patch23
-rw-r--r--dev-util/heaptrack/files/heaptrack-1.4.0-gcc-13.patch22
2 files changed, 0 insertions, 45 deletions
diff --git a/dev-util/heaptrack/files/heaptrack-1.4.0-boost-1.81.patch b/dev-util/heaptrack/files/heaptrack-1.4.0-boost-1.81.patch
deleted file mode 100644
index 564f0925a9be..000000000000
--- a/dev-util/heaptrack/files/heaptrack-1.4.0-boost-1.81.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-https://bugs.gentoo.org/887033
-https://invent.kde.org/sdk/heaptrack/-/commit/de3174aa1d1293636079473ff693d9a274a093a9
-
-From de3174aa1d1293636079473ff693d9a274a093a9 Mon Sep 17 00:00:00 2001
-From: Heiko Becker <heiko.becker@kde.org>
-Date: Fri, 16 Dec 2022 00:01:15 +0100
-Subject: [PATCH] Add missing include
-
-This fixes the build with boost 1.81.0. <array> was included by one of
-the boost headers, however, it's no longer included as of Boost 1.81.0.
---- a/src/analyze/gui/histogrammodel.h
-+++ b/src/analyze/gui/histogrammodel.h
-@@ -9,6 +9,8 @@
-
- #include <QAbstractTableModel>
-
-+#include <array>
-+
- #include "treemodel.h"
-
- struct HistogramColumn
---
-GitLab
diff --git a/dev-util/heaptrack/files/heaptrack-1.4.0-gcc-13.patch b/dev-util/heaptrack/files/heaptrack-1.4.0-gcc-13.patch
deleted file mode 100644
index 706d479f5275..000000000000
--- a/dev-util/heaptrack/files/heaptrack-1.4.0-gcc-13.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://invent.kde.org/sdk/heaptrack/-/commit/315aa7116d588f92b67c4bb84e1549529cb2fca0
-
-From 315aa7116d588f92b67c4bb84e1549529cb2fca0 Mon Sep 17 00:00:00 2001
-From: Heiko Becker <heiko.becker@kde.org>
-Date: Mon, 23 Jan 2023 23:44:09 +0100
-Subject: [PATCH] Fix build with gcc 13 by including <cstdint>
-
-Like other versions before, gcc 13 moved some includes around and as a
-result <cstdint> is no longer transitively included [1]. Explicitly include
-it for uint{32,64}_t.
-
-[1] https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
---- a/src/util/linereader.h
-+++ b/src/util/linereader.h
-@@ -7,6 +7,7 @@
- #ifndef LINEREADER_H
- #define LINEREADER_H
-
-+#include <cstdint>
- #include <istream>
- #include <string>
-