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 70E0F15800F for ; Mon, 9 Jan 2023 07:32:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7140E07B2; Mon, 9 Jan 2023 07:32:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 80B2DE07B2 for ; Mon, 9 Jan 2023 07:32:05 +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 ACBF5340E69 for ; Mon, 9 Jan 2023 07:32:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C8DF771 for ; Mon, 9 Jan 2023 07:32:03 +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: <1673249497.393a30cb0ee700a2fe25b463c1049ededed0f71c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/sysvinit/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/sysvinit/sysvinit-3.06-r1.ebuild sys-apps/sysvinit/sysvinit-3.06.ebuild X-VCS-Directories: sys-apps/sysvinit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 393a30cb0ee700a2fe25b463c1049ededed0f71c X-VCS-Branch: master Date: Mon, 9 Jan 2023 07:32:03 +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: 6a4f0a71-35b4-4352-8acd-642f1a206dd6 X-Archives-Hash: ba1cba1f07102d6b50b17e516319b810 commit: 393a30cb0ee700a2fe25b463c1049ededed0f71c Author: Sam James gentoo org> AuthorDate: Mon Jan 9 07:31:37 2023 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jan 9 07:31:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393a30cb sys-apps/sysvinit: stop downgrading FORTIFY_SOURCE Closes: https://bugs.gentoo.org/890271 Signed-off-by: Sam James gentoo.org> sys-apps/sysvinit/{sysvinit-3.06.ebuild => sysvinit-3.06-r1.ebuild} | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sys-apps/sysvinit/sysvinit-3.06.ebuild b/sys-apps/sysvinit/sysvinit-3.06-r1.ebuild similarity index 94% rename from sys-apps/sysvinit/sysvinit-3.06.ebuild rename to sys-apps/sysvinit/sysvinit-3.06-r1.ebuild index b0a02ff6c995..f34dafcfe0d4 100644 --- a/sys-apps/sysvinit/sysvinit-3.06.ebuild +++ b/sys-apps/sysvinit/sysvinit-3.06-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -51,9 +51,13 @@ PATCHES=( src_prepare() { default + # We already enforce F_S=2 as a minimum in our toolchain, and + # allow 3. Also, SSP doesn't always make sense for some platforms + # e.g. HPPA. It's default-on in our toolchain where it works. sed -i \ -e '/^CPPFLAGS =$/d' \ -e '/^override CFLAGS +=/s/ -fstack-protector-strong//' \ + -e '/^override CFLAGS +=/s/ -D_FORTIFY_SOURCE=2//' \ src/Makefile || die # last/lastb/mesg/mountpoint/sulogin/utmpdump/wall have moved to util-linux