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 50A7A15800A for ; Fri, 4 Aug 2023 01:53:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8189EE0D89; Fri, 4 Aug 2023 01:53:44 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 67A2EE0D89 for ; Fri, 4 Aug 2023 01:53:44 +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 94DCF340E0B for ; Fri, 4 Aug 2023 01:53:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE0C4E8F for ; Fri, 4 Aug 2023 01:53:41 +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: <1691113764.58334beaa44bafb12f5061f431b062edd0fab28f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/gdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/gdb/gdb-13.2-r2.ebuild sys-devel/gdb/gdb-9999.ebuild X-VCS-Directories: sys-devel/gdb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 58334beaa44bafb12f5061f431b062edd0fab28f X-VCS-Branch: master Date: Fri, 4 Aug 2023 01:53:41 +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: 1aac0e1a-ba96-4dd6-8b84-c0a9c66f29f2 X-Archives-Hash: d0e534b26e1a015bf76a9261898f631a commit: 58334beaa44bafb12f5061f431b062edd0fab28f Author: Sam James gentoo org> AuthorDate: Fri Aug 4 01:47:27 2023 +0000 Commit: Sam James gentoo org> CommitDate: Fri Aug 4 01:49:24 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58334bea sys-devel/gdb: pass --disable-silent-rules Do as we do for --disable-dependency-tracking. Will do the same shortly for Binutils too. Signed-off-by: Sam James gentoo.org> sys-devel/gdb/gdb-13.2-r2.ebuild | 9 +++------ sys-devel/gdb/gdb-9999.ebuild | 9 +++------ 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/sys-devel/gdb/gdb-13.2-r2.ebuild b/sys-devel/gdb/gdb-13.2-r2.ebuild index 0d8c5729c3d2..d5ff38e3763a 100644 --- a/sys-devel/gdb/gdb-13.2-r2.ebuild +++ b/sys-devel/gdb/gdb-13.2-r2.ebuild @@ -153,8 +153,9 @@ src_configure() { local myconf=( # portage's econf() does not detect presence of --d-d-t # because it greps only top-level ./configure. But not - # gnulib's or gdb's configure. + # libiberty's or gdb's configure. --disable-dependency-tracking + --disable-silent-rules --with-pkgversion="$(gdb_branding)" --with-bugurl='https://bugs.gentoo.org/' @@ -234,10 +235,6 @@ src_configure() { econf "${myconf[@]}" } -src_compile() { - emake V=1 -} - src_test() { # Run the unittests (nabbed invocation from Fedora's spec file) at least emake -k -C gdb run GDBFLAGS='-batch -ex "maintenance selftest"' @@ -251,7 +248,7 @@ src_test() { } src_install() { - emake V=1 DESTDIR="${D}" install + emake DESTDIR="${D}" install find "${ED}"/usr -name libiberty.a -delete || die diff --git a/sys-devel/gdb/gdb-9999.ebuild b/sys-devel/gdb/gdb-9999.ebuild index a9932a210efe..085df52dacb9 100644 --- a/sys-devel/gdb/gdb-9999.ebuild +++ b/sys-devel/gdb/gdb-9999.ebuild @@ -152,8 +152,9 @@ src_configure() { local myconf=( # portage's econf() does not detect presence of --d-d-t # because it greps only top-level ./configure. But not - # gnulib's or gdb's configure. + # libiberty's or gdb's configure. --disable-dependency-tracking + --disable-silent-rules --with-pkgversion="$(gdb_branding)" --with-bugurl='https://bugs.gentoo.org/' @@ -233,10 +234,6 @@ src_configure() { econf "${myconf[@]}" } -src_compile() { - emake V=1 -} - src_test() { # Run the unittests (nabbed invocation from Fedora's spec file) at least emake -k -C gdb run GDBFLAGS='-batch -ex "maintenance selftest"' @@ -250,7 +247,7 @@ src_test() { } src_install() { - emake V=1 DESTDIR="${D}" install + emake DESTDIR="${D}" install find "${ED}"/usr -name libiberty.a -delete || die