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 81E6615806E for ; Mon, 5 Jun 2023 16:23:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1E1DE089F; Mon, 5 Jun 2023 16:23: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 A61E0E089F for ; Mon, 5 Jun 2023 16:23: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A2C2335D97 for ; Mon, 5 Jun 2023 16:23:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD29CA7A for ; Mon, 5 Jun 2023 16:22:58 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1685982012.e224dd523ebe4fd061e3137c24e9dcd4788a65a2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ntp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/ntp/ntp-4.2.8_p16-r1.ebuild net-misc/ntp/ntp-4.2.8_p16.ebuild X-VCS-Directories: net-misc/ntp/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e224dd523ebe4fd061e3137c24e9dcd4788a65a2 X-VCS-Branch: master Date: Mon, 5 Jun 2023 16:22:58 +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: f60ff56b-c825-40b7-9ffe-605c2becb9ff X-Archives-Hash: 9d47c34cf4d05be0df425f7437dd3326 commit: e224dd523ebe4fd061e3137c24e9dcd4788a65a2 Author: Mike Gilbert gentoo org> AuthorDate: Mon Jun 5 16:20:12 2023 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Mon Jun 5 16:20:12 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e224dd52 net-misc/ntp: pass --with-hardenfile=/dev/null to configure The NTP build system has a script that adds platform-specific "hardening" flags to CFLAGS. Disable this behavior and respect the user's CFLAGS. Closes: https://bugs.gentoo.org/895802 Signed-off-by: Mike Gilbert gentoo.org> net-misc/ntp/{ntp-4.2.8_p16.ebuild => ntp-4.2.8_p16-r1.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net-misc/ntp/ntp-4.2.8_p16.ebuild b/net-misc/ntp/ntp-4.2.8_p16-r1.ebuild similarity index 97% rename from net-misc/ntp/ntp-4.2.8_p16.ebuild rename to net-misc/ntp/ntp-4.2.8_p16-r1.ebuild index 8ab34a0081da..bcd2887e326e 100644 --- a/net-misc/ntp/ntp-4.2.8_p16.ebuild +++ b/net-misc/ntp/ntp-4.2.8_p16-r1.ebuild @@ -82,6 +82,9 @@ src_configure() { # Increase the default memlimit from 32MiB to 128MiB, bug #533232 --with-memlock=256 + # Avoid overriding the user's toolchain settings, bug #895802 + --with-hardenfile=/dev/null + $(use_enable caps linuxcaps) $(use_enable parse-clocks) $(use_enable ipv6)