public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/heaptrack/files/, dev-util/heaptrack/
Date: Fri,  3 Nov 2023 11:16:30 +0000 (UTC)	[thread overview]
Message-ID: <1699010177.f487715adc231949f9e7caf6335c2971d003d82d.asturm@gentoo> (raw)

commit:     f487715adc231949f9e7caf6335c2971d003d82d
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Nov  3 10:35:52 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Nov  3 11:16:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f487715a

dev-util/heaptrack: drop 1.4.0

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 dev-util/heaptrack/Manifest                        |  1 -
 .../files/heaptrack-1.4.0-boost-1.81.patch         | 23 -------
 .../heaptrack/files/heaptrack-1.4.0-gcc-13.patch   | 22 -------
 dev-util/heaptrack/heaptrack-1.4.0.ebuild          | 76 ----------------------
 4 files changed, 122 deletions(-)

diff --git a/dev-util/heaptrack/Manifest b/dev-util/heaptrack/Manifest
index 704ded416de6..08cdd294b831 100644
--- a/dev-util/heaptrack/Manifest
+++ b/dev-util/heaptrack/Manifest
@@ -1,2 +1 @@
-DIST heaptrack-1.4.0.tar.xz 5526100 BLAKE2B ffb912bc080cf966d670fcafcce682ddc5793878b73b8480b40aaf6b3c9596e892b646f9ca2ce40c195ed32d595e265e9c3a49095ac725b95a0845b2c4a7a81a SHA512 8d34356c9ecf2f9901e15ff7f24e6772e35d31ea9634d7b3ce5615df6f4f7ed024a7a4336f3b6fca648632c4c1693411641782fe60bf4cfeeb1d07d8607636a4
 DIST heaptrack-1.5.0.tar.xz 5447668 BLAKE2B f4a69311267daf9439e264bf8bb9802db41abb3fa766e5dfc8fcfe39c58feab2d0fe32710c6b5a2d63715e8b013e4a81e2984de425be871e253b1b2567a1dca2 SHA512 b52cc63a29d67dade85f40a7f9abb43e104762b9c853385f501d37fcbcef90fdcdfc93e2900c71b5a47c773bf98fe75f66f8b6a9e31a12610b6deec20d9736aa

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>
- 

diff --git a/dev-util/heaptrack/heaptrack-1.4.0.ebuild b/dev-util/heaptrack/heaptrack-1.4.0.ebuild
deleted file mode 100644
index af58131c7b9f..000000000000
--- a/dev-util/heaptrack/heaptrack-1.4.0.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake kde.org xdg-utils
-
-DESCRIPTION="Fast heap memory profiler"
-HOMEPAGE="https://apps.kde.org/heaptrack/
-https://milianw.de/blog/heaptrack-a-heap-memory-profiler-for-linux"
-SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+gui test zstd"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-libs/boost:=[zstd?,zlib]
-	sys-libs/libunwind:=
-	sys-libs/zlib
-	gui? (
-		dev-libs/kdiagram:5
-		dev-qt/qtcore:5
-		dev-qt/qtgui:5
-		dev-qt/qtwidgets:5
-		kde-frameworks/kconfig:5
-		kde-frameworks/kconfigwidgets:5
-		kde-frameworks/kcoreaddons:5
-		kde-frameworks/ki18n:5
-		kde-frameworks/kio:5
-		kde-frameworks/kitemmodels:5
-		kde-frameworks/kwidgetsaddons:5
-		kde-frameworks/threadweaver:5
-	)
-	zstd? ( app-arch/zstd:= )
-"
-RDEPEND="${DEPEND}
-	gui? ( >=kde-frameworks/kf-env-4 )
-"
-BDEPEND="gui? ( kde-frameworks/extra-cmake-modules:5 )"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-boost-1.81.patch # bug #887033, in master
-	"${FILESDIR}"/${P}-gcc-13.patch # in master
-)
-
-src_prepare() {
-	cmake_src_prepare
-	rm -rf 3rdparty/boost-zstd || die # ensure no bundling
-}
-
-src_configure() {
-	local mycmakeargs=(
-		-DHEAPTRACK_BUILD_GUI=$(usex gui)
-		-DBUILD_TESTING=$(usex test)
-		$(cmake_use_find_package zstd ZSTD)
-	)
-	cmake_src_configure
-}
-
-pkg_postinst() {
-	if use gui; then
-		xdg_desktop_database_update
-		xdg_icon_cache_update
-	fi
-}
-
-pkg_postrm() {
-	if use gui; then
-		xdg_desktop_database_update
-		xdg_icon_cache_update
-	fi
-}


             reply	other threads:[~2023-11-03 11:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-03 11:16 Andreas Sturmlechner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-12-16  9:31 [gentoo-commits] repo/gentoo:master commit in: dev-util/heaptrack/files/, dev-util/heaptrack/ Sam James
2025-01-13 18:47 Andreas Sturmlechner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1699010177.f487715adc231949f9e7caf6335c2971d003d82d.asturm@gentoo \
    --to=asturm@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox