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 82FC4139355 for ; Mon, 2 Aug 2021 23:11:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5EF3E09AB; Mon, 2 Aug 2021 23:11:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A3343E09AB for ; Mon, 2 Aug 2021 23:11:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 A27503430E8 for ; Mon, 2 Aug 2021 23:11:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35CB283B for ; Mon, 2 Aug 2021 23:11:01 +0000 (UTC) From: "Alessandro Barbieri" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alessandro Barbieri" Message-ID: <1627945848.f9b240bfbc66361e040ee00f8621cd80b63bce7c.Alessandro-Barbieri@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/TCL/ X-VCS-Repository: repo/proj/guru X-VCS-Files: sys-cluster/TCL/TCL-1.0.ebuild X-VCS-Directories: sys-cluster/TCL/ X-VCS-Committer: Alessandro-Barbieri X-VCS-Committer-Name: Alessandro Barbieri X-VCS-Revision: f9b240bfbc66361e040ee00f8621cd80b63bce7c X-VCS-Branch: dev Date: Mon, 2 Aug 2021 23:11:01 +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: c90f8e4d-ffe4-4286-9b42-ce05dde50745 X-Archives-Hash: 17a2588fc521a4d20f992eea1a7eb0f3 commit: f9b240bfbc66361e040ee00f8621cd80b63bce7c Author: Alessandro Barbieri gmail com> AuthorDate: Mon Aug 2 23:10:48 2021 +0000 Commit: Alessandro Barbieri gmail com> CommitDate: Mon Aug 2 23:10:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f9b240bf sys-cluster/TCL: update EAPI 7 -> 8 Signed-off-by: Alessandro Barbieri gmail.com> sys-cluster/TCL/TCL-1.0.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/sys-cluster/TCL/TCL-1.0.ebuild b/sys-cluster/TCL/TCL-1.0.ebuild index 01ad7ac5c..cfeac3c94 100644 --- a/sys-cluster/TCL/TCL-1.0.ebuild +++ b/sys-cluster/TCL/TCL-1.0.ebuild @@ -1,7 +1,7 @@ # Copyright 2019-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools @@ -41,14 +41,16 @@ src_configure() { $(use_enable instrumentation) ) + if use debug && use instrumentation; then + myconf+=( "--enable-instrumentation-debug" ) + else + myconf+=( "--disable-instrumentation-debug" ) + fi if use fti; then myconf+=( "--with-fti=${EPREFIX}/usr" ) else myconf+=( "--without-fti" ) fi - if use instrumentation; then - myconf+=( $(use_enable instrumentation-debug debug) ) - fi if use scr; then myconf+=( "--with-scr=${EPREFIX}/usr" ) else @@ -66,5 +68,5 @@ src_configure() { src_install() { default dodoc NEWS AUTHORS INSTALL - find "${ED}" -name '*.la' -delete || die + find "${ED}" -name '*.la' -delete || die }