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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C6D8A138334 for ; Wed, 3 Apr 2019 15:18:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9E19E096A; Wed, 3 Apr 2019 15:18:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF796E096A for ; Wed, 3 Apr 2019 15:18:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E596335CF7 for ; Wed, 3 Apr 2019 15:18:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 709D2578 for ; Wed, 3 Apr 2019 15:18:04 +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: <1554304642.f3236cdff3b4028cd40dae1e5f0b4ed2eaa42311.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.0.ebuild X-VCS-Directories: dev-util/kdbg/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f3236cdff3b4028cd40dae1e5f0b4ed2eaa42311 X-VCS-Branch: master Date: Wed, 3 Apr 2019 15:18:04 +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: 0f369502-28c7-488e-8868-632671919f42 X-Archives-Hash: 1b1261819fcdca70f03808eeb10644cb commit: f3236cdff3b4028cd40dae1e5f0b4ed2eaa42311 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Apr 3 15:17:22 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Apr 3 15:17:22 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3236cdf dev-util/kdbg: Drop 3.0.0 (r0) Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/kdbg/kdbg-3.0.0.ebuild | 51 ----------------------------------------- 1 file changed, 51 deletions(-) diff --git a/dev-util/kdbg/kdbg-3.0.0.ebuild b/dev-util/kdbg/kdbg-3.0.0.ebuild deleted file mode 100644 index d6e46f2cfd5..00000000000 --- a/dev-util/kdbg/kdbg-3.0.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -KDE_HANDBOOK="true" -inherit kde5 - -DESCRIPTION="Graphical debugger interface" -HOMEPAGE="http://www.kdbg.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -KEYWORDS="" -KEYWORDS="~amd64 ~x86" - -COMMON_DEPEND=" - $(add_frameworks_dep kconfig) - $(add_frameworks_dep kconfigwidgets) - $(add_frameworks_dep kcoreaddons) - $(add_frameworks_dep ki18n) - $(add_frameworks_dep kiconthemes) - $(add_frameworks_dep kwidgetsaddons) - $(add_frameworks_dep kwindowsystem) - $(add_frameworks_dep kxmlgui) - $(add_qt_dep qtgui) - $(add_qt_dep qtwidgets) -" -RDEPEND="${COMMON_DEPEND} - !dev-util/kdbg:4 - sys-devel/gdb -" -DEPEND="${COMMON_DEPEND} - media-libs/libpng:0 -" - -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 - - local png - for png in kdbg/pics/*.png; do - pngfix -q --out=${png/.png/fixed.png} ${png} - [[ $? -gt 15 ]] && die "Failed to fix ${png}" - mv -f ${png/.png/fixed.png} ${png} || die - done - - kde5_src_prepare -}