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 6F39B158020 for ; Tue, 8 Nov 2022 19:49:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBE8CE09CD; Tue, 8 Nov 2022 19:49:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1A8DE09CD for ; Tue, 8 Nov 2022 19:49:52 +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 D7E85340DC6 for ; Tue, 8 Nov 2022 19:49:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 48A626F2 for ; Tue, 8 Nov 2022 19:49:50 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1667936943.f4607505c6a057dcc1b308de540f5895d91387b1.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cargo-ebuild/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild X-VCS-Directories: dev-util/cargo-ebuild/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: f4607505c6a057dcc1b308de540f5895d91387b1 X-VCS-Branch: master Date: Tue, 8 Nov 2022 19:49:50 +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: 634176dd-5a92-405c-9532-672b9a30a4e7 X-Archives-Hash: 97df49f5efb52eab19866f5c102a813b commit: f4607505c6a057dcc1b308de540f5895d91387b1 Author: Georgy Yakovlev gentoo org> AuthorDate: Tue Nov 8 19:49:03 2022 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Tue Nov 8 19:49:03 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4607505 dev-util/cargo-ebuild: filter out -flto Closes: https://bugs.gentoo.org/858332 Signed-off-by: Georgy Yakovlev gentoo.org> dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild b/dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild index f81bab7773b5..02b3b5bb3de2 100644 --- a/dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild +++ b/dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild @@ -142,7 +142,7 @@ CRATES=" winapi-x86_64-pc-windows-gnu-0.4.0 " -inherit cargo +inherit cargo flag-o-matic DESCRIPTION="Generates an ebuild for a package using the in-tree eclasses." # Double check the homepage as the cargo_metadata crate @@ -170,6 +170,7 @@ RDEPEND=" QA_FLAGS_IGNORED="usr/bin/cargo-ebuild" src_configure() { + filter-flags '-flto*' # https://bugs.gentoo.org/858332 export LIBGIT2_SYS_USE_PKG_CONFIG=1 LIBSSH2_SYS_USE_PKG_CONFIG=1 PKG_CONFIG_ALLOW_CROSS=1 cargo_src_configure }