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 295A5158088 for ; Sat, 5 Feb 2022 20:46:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A1042BC02A; Sat, 5 Feb 2022 20:46:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DC6B02BC02A for ; Sat, 5 Feb 2022 20:46:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 11CA7342DB9 for ; Sat, 5 Feb 2022 20:46:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D4A02D3 for ; Sat, 5 Feb 2022 20:46:44 +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: <1644093648.f15a2cf74449851f703a20fd44ed6c28b458e19a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/ddd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/ddd/ddd-3.3.12-r5.ebuild X-VCS-Directories: dev-util/ddd/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: f15a2cf74449851f703a20fd44ed6c28b458e19a X-VCS-Branch: master Date: Sat, 5 Feb 2022 20:46:44 +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: 7692aad6-b85a-47c2-a596-4cf149a1178b X-Archives-Hash: 734d338cc5397fd96098e970c77b0650 commit: f15a2cf74449851f703a20fd44ed6c28b458e19a Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 9 15:52:25 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Feb 5 20:40:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15a2cf7 dev-util/ddd: EAPI-8 bump Closes: https://bugs.gentoo.org/830853 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-util/ddd/ddd-3.3.12-r5.ebuild | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/dev-util/ddd/ddd-3.3.12-r5.ebuild b/dev-util/ddd/ddd-3.3.12-r5.ebuild index fe17fd18d911..0174afbfd0e7 100644 --- a/dev-util/ddd/ddd-3.3.12-r5.ebuild +++ b/dev-util/ddd/ddd-3.3.12-r5.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=8 inherit autotools desktop optfeature @@ -10,10 +10,12 @@ HOMEPAGE="https://www.gnu.org/software/ddd" SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-3 LGPL-3 FDL-1.1" -KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" SLOT="0" +KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" IUSE="readline" +RESTRICT="test" + COMMON_DEPEND=" sys-devel/gdb sys-libs/ncurses:= @@ -34,8 +36,6 @@ RDEPEND="${COMMON_DEPEND} x11-apps/xfontsel " -RESTRICT="test" - PATCHES=( "${FILESDIR}/${P}-gcc44.patch" "${FILESDIR}/${P}-gdb-disassembler-bug.patch" @@ -58,13 +58,12 @@ src_prepare() { src_configure() { econf \ - --disable-static \ $(use_with readline) } src_install() { # Remove app defaults - rm -f "${S}"/ddd/Ddd + rm -f "${S}"/ddd/Ddd || die # Install ddd distribution default @@ -79,10 +78,8 @@ pkg_postinst() { optfeature "Bash debugging" app-shells/bashdb optfeature "Perl debugging" dev-lang/perl optfeature "Python debugging" dev-python/pydb - - echo + elog elog "Important notice: if you encounter DDD crashes during visualization, you might" elog "have hit bug #459324. Try switching to plotting in external window:" elog "Select Edit|Preferences|Helpers and switch 'plot window' to 'external'" - echo }