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 5399A158086 for ; Sun, 7 Nov 2021 17:23:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CA332BC169; Sun, 7 Nov 2021 17:23:30 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 743C62BC169 for ; Sun, 7 Nov 2021 17:23:30 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 74CFF34311A for ; Sun, 7 Nov 2021 17:23:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6098A1B8 for ; Sun, 7 Nov 2021 17:23:26 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1636305799.932312f28cb99eca57d790b03bceb32e4a7b57bd.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/kdbg/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/kdbg/kdbg-3.0.1.ebuild X-VCS-Directories: dev-util/kdbg/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 932312f28cb99eca57d790b03bceb32e4a7b57bd X-VCS-Branch: master Date: Sun, 7 Nov 2021 17:23:26 +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: 66f13c85-e85b-4730-8414-9377399dc928 X-Archives-Hash: 03b85369bbd941400243b4ec2085ec75 commit: 932312f28cb99eca57d790b03bceb32e4a7b57bd Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Nov 7 16:47:11 2021 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 7 17:23:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=932312f2 dev-util/kdbg: Drop 3.0.1 (r0) Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/kdbg/kdbg-3.0.1.ebuild | 43 ----------------------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-util/kdbg/kdbg-3.0.1.ebuild b/dev-util/kdbg/kdbg-3.0.1.ebuild deleted file mode 100644 index a6909362f27..00000000000 --- a/dev-util/kdbg/kdbg-3.0.1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -ECM_HANDBOOK="true" -KFMIN=5.60.0 -QTMIN=5.12.3 -inherit ecm - -DESCRIPTION="Graphical debugger interface" -HOMEPAGE="https://www.kdbg.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="5" -KEYWORDS="~amd64 ~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} - sys-devel/gdb -" - -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 -}