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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CA9ED15813A for ; Thu, 09 Jan 2025 00:08:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED4E0E0729; Thu, 09 Jan 2025 00:08:27 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D7511E0729 for ; Thu, 09 Jan 2025 00:08:27 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1642342FA4 for ; Thu, 09 Jan 2025 00:08:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EACE1AED for ; Thu, 09 Jan 2025 00:08:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1736381247.6b2461989d9cca3f74ac5b094fdc0d7cef442ada.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bashdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/bashdb/bashdb-5.0.1.1.2.ebuild X-VCS-Directories: app-shells/bashdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6b2461989d9cca3f74ac5b094fdc0d7cef442ada X-VCS-Branch: master Date: Thu, 09 Jan 2025 00:08:24 +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: c9ce2461-6143-4bfc-b005-b1cdc4db95d8 X-Archives-Hash: cc759a322f9afb553540999f4ab31dc8 commit: 6b2461989d9cca3f74ac5b094fdc0d7cef442ada Author: Sam James gentoo org> AuthorDate: Wed Jan 8 22:48:24 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 9 00:07:27 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b246198 app-shells/bashdb: run configure w/ bash Bashisms in there. Signed-off-by: Sam James gentoo.org> app-shells/bashdb/bashdb-5.0.1.1.2.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild b/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild index d73f4c54fbbd..b773dc20f54e 100644 --- a/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild +++ b/app-shells/bashdb/bashdb-5.0.1.1.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,8 +15,10 @@ KEYWORDS="amd64 ppc ppc64 x86" IUSE="test" RESTRICT="!test? ( test )" -DEPEND=">=app-shells/bash-5 - !>=app-shells/bash-${PV:0:1}.$((${PV:2:1}+1))" +DEPEND=" + >=app-shells/bash-5 + !>=app-shells/bash-${PV:0:1}.$((${PV:2:1}+1)) +" S="${WORKDIR}/${MY_P}" @@ -36,5 +38,5 @@ src_prepare() { src_configure() { # This path matches the bash sources. If we ever change bash, # we'll probably have to change this to match. #591994 - econf --with-dbg-main='$(PKGDATADIR)/bashdb-main.inc' + CONFIG_SHELL="${BROOT}"/bin/bash econf --with-dbg-main='$(PKGDATADIR)/bashdb-main.inc' }