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-debug/kdbg/files/, dev-debug/kdbg/
Date: Mon,  9 Sep 2024 17:49:34 +0000 (UTC)	[thread overview]
Message-ID: <1725904151.38f3585adaee8ded9afc3dff7a700bad65d28183.asturm@gentoo> (raw)

commit:     38f3585adaee8ded9afc3dff7a700bad65d28183
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  9 17:19:00 2024 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Sep  9 17:49:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38f3585a

dev-debug/kdbg: drop 3.0.1-r1

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

 dev-debug/kdbg/Manifest                            |  1 -
 .../kdbg/files/kdbg-3.0.1-fix-rare-memleak.patch   | 35 ----------------
 dev-debug/kdbg/files/kdbg-3.0.1-usable-trace.patch | 23 -----------
 dev-debug/kdbg/kdbg-3.0.1-r1.ebuild                | 48 ----------------------
 4 files changed, 107 deletions(-)

diff --git a/dev-debug/kdbg/Manifest b/dev-debug/kdbg/Manifest
index 6c598e48c73d..4b48fcff287b 100644
--- a/dev-debug/kdbg/Manifest
+++ b/dev-debug/kdbg/Manifest
@@ -1,2 +1 @@
-DIST kdbg-3.0.1.tar.gz 431143 BLAKE2B 869bf9765650b2a4a2330f99303b51f599df764848ff18442c8c6813421fece2671e5e78a0e8c66a59bd77f06a7f02677ec08a49fb9a28874b92b0f84bf8f74f SHA512 9f3e0073bf37e56fa8ad0c3ae5f0be80331d8963b564ff376aee40c3ccebab5b5a482c31f110fd0f4dd14f9614cff31102d8edf62ffb33f4ae361d24346543ea
 DIST kdbg-3.1.0.tar.gz 444052 BLAKE2B d0083094f8ba3cb374b2df4a20b7697ddae4fb24579e18d883701a5e826e86041a8cdb7bd1919c881bc149c49e764221eb246d98bcebacbffbdb5e0f83264ad6 SHA512 e7da5bb1a4882b031077bd4344c6795b058088eb9a00ef3a2ba9c3d72c0a022bb16822525369ca7bcfb623c775cf73140caa114c1591d37f1d6f6a3b22ae649b

diff --git a/dev-debug/kdbg/files/kdbg-3.0.1-fix-rare-memleak.patch b/dev-debug/kdbg/files/kdbg-3.0.1-fix-rare-memleak.patch
deleted file mode 100644
index 44a2b33623f4..000000000000
--- a/dev-debug/kdbg/files/kdbg-3.0.1-fix-rare-memleak.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 0feb0986f220126177084badf67813ccdbaa996c Mon Sep 17 00:00:00 2001
-From: Daniels Umanovskis <daniels@umanovskis.se>
-Date: Fri, 13 Mar 2020 13:48:19 +0100
-Subject: [PATCH] Fix a rare memory leak in the register display window
-
----
- kdbg/regwnd.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/kdbg/regwnd.cpp b/kdbg/regwnd.cpp
-index edb0e55..93008f9 100644
---- a/kdbg/regwnd.cpp
-+++ b/kdbg/regwnd.cpp
-@@ -274,11 +274,12 @@ static char* toRaw(const QString& hex, uint& length)
-     static bool littleendian=(*testChar==1);
- 
-     length=((hex.length()-2)%2)+((hex.length()-2)/2);
-+    if (hex.length()<=2) return 0;
-+
-     char* data=new char[length];
- 
-     if (littleendian) {
- 	uint j=0;
--	if (hex.length()<=2) return 0;
- 	for (int i=hex.length()-1; i>=2; ) {
- 	    if (j%2==0)
- 		data[j/2]=hexCharToDigit(hex[i].toLatin1());
-@@ -288,7 +289,6 @@ static char* toRaw(const QString& hex, uint& length)
- 	}
-     } else { // big endian
- 	uint j=0;
--	if (hex.length()<=2) return 0;
- 	for (int i=2; i<hex.length(); ) {
- 	    if (j%2==0)
- 		data[j/2]=hexCharToDigit(hex[i].toLatin1())<<4;

diff --git a/dev-debug/kdbg/files/kdbg-3.0.1-usable-trace.patch b/dev-debug/kdbg/files/kdbg-3.0.1-usable-trace.patch
deleted file mode 100644
index 8336d2d53255..000000000000
--- a/dev-debug/kdbg/files/kdbg-3.0.1-usable-trace.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 8f2add1046c2d23294496bc0bc7c00d18c6aa0a2 Mon Sep 17 00:00:00 2001
-From: Daniels Umanovskis <daniels@umanovskis.se>
-Date: Fri, 13 Mar 2020 16:23:02 +0100
-Subject: [PATCH] Change output for a trace so that trace is actually usable
- again
-
----
- kdbg/debugger.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/kdbg/debugger.cpp b/kdbg/debugger.cpp
-index 3751e4c..7d43eb9 100644
---- a/kdbg/debugger.cpp
-+++ b/kdbg/debugger.cpp
-@@ -2225,7 +2225,7 @@ void KDebugger::slotValueEdited(VarTree* expr, const QString& text)
- 
-     ExprWnd* wnd = static_cast<ExprWnd*>(expr->treeWidget());
-     TRACE(QString().sprintf("Changing %s to ",
--			    wnd->name()) + text);
-+			    wnd->exprList().join(" ")) + text);
- 
-     // determine the lvalue to edit
-     QString lvalue = expr->computeExpr();

diff --git a/dev-debug/kdbg/kdbg-3.0.1-r1.ebuild b/dev-debug/kdbg/kdbg-3.0.1-r1.ebuild
deleted file mode 100644
index 7bfbeb8b5914..000000000000
--- a/dev-debug/kdbg/kdbg-3.0.1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-ECM_HANDBOOK="true"
-KFMIN=5.85.0
-QTMIN=5.15.2
-inherit ecm
-
-DESCRIPTION="Graphical debugger interface"
-HOMEPAGE="https://www.kdbg.org/"
-SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="5"
-KEYWORDS="~amd64 ~riscv ~x86"
-IUSE=""
-
-DEPEND="
-	>=dev-qt/qtgui-${QTMIN}:5
-	>=dev-qt/qtwidgets-${QTMIN}:5
-	>=kde-frameworks/kconfig-${KFMIN}:5
-	>=kde-frameworks/kconfigwidgets-${KFMIN}:5
-	>=kde-frameworks/kcoreaddons-${KFMIN}:5
-	>=kde-frameworks/ki18n-${KFMIN}:5
-	>=kde-frameworks/kiconthemes-${KFMIN}:5
-	>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
-	>=kde-frameworks/kwindowsystem-${KFMIN}:5
-	>=kde-frameworks/kxmlgui-${KFMIN}:5
-"
-RDEPEND="${DEPEND}
-	dev-debug/gdb
-"
-
-PATCHES=(
-	"${FILESDIR}"/${P}-fix-rare-memleak.patch
-	"${FILESDIR}"/${P}-usable-trace.patch
-)
-
-src_prepare() {
-	# allow documentation to be handled by eclass
-	mv kdbg/doc . || die
-	sed -i -e '/add_subdirectory(doc)/d' kdbg/CMakeLists.txt || die
-	echo "add_subdirectory ( doc ) " >> CMakeLists.txt || die
-
-	ecm_src_prepare
-}


                 reply	other threads:[~2024-09-09 17:49 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=1725904151.38f3585adaee8ded9afc3dff7a700bad65d28183.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