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 3588515800C for ; Thu, 29 Dec 2022 11:34:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F4157E0984; Thu, 29 Dec 2022 11:34:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 D6941E0984 for ; Thu, 29 Dec 2022 11:34:01 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 036A8340F14 for ; Thu, 29 Dec 2022 11:34:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7D38F824 for ; Thu, 29 Dec 2022 11:33:57 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1672266231.44523c37777366ce633a455f80668b40b6b434bb.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: net-misc/FORT-validator/ X-VCS-Repository: repo/proj/guru X-VCS-Files: net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild X-VCS-Directories: net-misc/FORT-validator/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 44523c37777366ce633a455f80668b40b6b434bb X-VCS-Branch: master Date: Thu, 29 Dec 2022 11:33:57 +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: 44b3a65e-8108-4b1b-9697-9f3ea30d0b79 X-Archives-Hash: 10ebaa6fbcfd94b13b14411cdba7239b commit: 44523c37777366ce633a455f80668b40b6b434bb Author: Alarig Le Lay swordarmor fr> AuthorDate: Wed Dec 28 22:23:51 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed Dec 28 22:23:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=44523c37 net-misc/FORT-validator: Don’t debug by default Closes: https://bugs.gentoo.org/888753 Signed-off-by: Alarig Le Lay swordarmor.fr> net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild b/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild index ee859b588..8ff4f6a32 100644 --- a/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild +++ b/net-misc/FORT-validator/FORT-validator-1.5.3_p20220607.ebuild @@ -39,6 +39,8 @@ src_prepare() { default # Don't strip CFLAGS sed -i 's/fort_CFLAGS =/fort_CFLAGS = ${CFLAGS} /' src/Makefile.am || die + # Don’t compile debug by default + sed -i '/fort_CFLAGS/ s/ -g / /' src/Makefile.am || die # Don't test network sed -i '/http/d' test/Makefile.am || die eautoreconf