commit: 7f4e93388771731395d5848538531f6419f843f3 Author: Marek Szuba <marecki <AT> gentoo <DOT> org> AuthorDate: Wed Jul 27 23:43:33 2022 +0000 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org> CommitDate: Wed Jul 27 23:43:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f4e9338
net-analyzer/suricata: filter out LTO flags Triggers type mismatches as demonstrated in the linked bug. Don't bother doing the same with suricata-5, it is mere days away from its end of life. Closes: https://bugs.gentoo.org/861242 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org> net-analyzer/suricata/suricata-6.0.6.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/net-analyzer/suricata/suricata-6.0.6.ebuild b/net-analyzer/suricata/suricata-6.0.6.ebuild index 1170a44de6b0..751a280a7b5d 100644 --- a/net-analyzer/suricata/suricata-6.0.6.ebuild +++ b/net-analyzer/suricata/suricata-6.0.6.ebuild @@ -6,7 +6,7 @@ EAPI=8 LUA_COMPAT=( lua5-1 luajit ) PYTHON_COMPAT=( python3_{8..10} ) -inherit autotools linux-info lua-single python-single-r1 systemd tmpfiles +inherit autotools flag-o-matic linux-info lua-single python-single-r1 systemd tmpfiles DESCRIPTION="High performance Network IDS, IPS and Network Security Monitoring engine" HOMEPAGE="https://suricata.io/" @@ -80,6 +80,9 @@ src_prepare() { } src_configure() { + # Bug #861242 + filter-lto + local myeconfargs=( "--localstatedir=/var" \ "--runstatedir=/run" \
