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 BD61A15800A for ; Wed, 12 Jul 2023 06:36:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D08F5E07A7; Wed, 12 Jul 2023 06:36:03 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B3A80E07A7 for ; Wed, 12 Jul 2023 06:36:03 +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 A569F33BF41 for ; Wed, 12 Jul 2023 06:36:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA6F1AD5 for ; Wed, 12 Jul 2023 06:36:00 +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: <1689143692.a08003626fd19db36a38a9a09d724b10c52cb309.sam@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 dev-util/cargo-ebuild/cargo-ebuild-0.5.4.ebuild X-VCS-Directories: dev-util/cargo-ebuild/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a08003626fd19db36a38a9a09d724b10c52cb309 X-VCS-Branch: master Date: Wed, 12 Jul 2023 06:36:00 +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: 53ea0162-9af9-451e-b6f8-7b885f1cb1ab X-Archives-Hash: 9a3e1359697c80302bde5346c1f59f1f commit: a08003626fd19db36a38a9a09d724b10c52cb309 Author: Sam James gentoo org> AuthorDate: Wed Jul 12 06:34:52 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 12 06:34:52 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0800362 dev-util/cargo-ebuild: drop redundant filter-lto After dc51935f7aae5f89d1ffecabef322680979952b8, cargo.eclass filters for us. I don't plan on doing all of these, just ones where I've either touched the pkg before or I can clearly see it was 'just the normal case'. Signed-off-by: Sam James gentoo.org> dev-util/cargo-ebuild/cargo-ebuild-0.5.2.ebuild | 3 +-- dev-util/cargo-ebuild/cargo-ebuild-0.5.4.ebuild | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) 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 c4e06eccd4aa..e1f74b0e0374 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 flag-o-matic +inherit cargo DESCRIPTION="Generates an ebuild for a package using the in-tree eclasses." # Double check the homepage as the cargo_metadata crate @@ -170,7 +170,6 @@ RDEPEND=" QA_FLAGS_IGNORED="usr/bin/cargo-ebuild" src_configure() { - filter-lto # 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 } diff --git a/dev-util/cargo-ebuild/cargo-ebuild-0.5.4.ebuild b/dev-util/cargo-ebuild/cargo-ebuild-0.5.4.ebuild index 2722dc5c7706..027d6db70a10 100644 --- a/dev-util/cargo-ebuild/cargo-ebuild-0.5.4.ebuild +++ b/dev-util/cargo-ebuild/cargo-ebuild-0.5.4.ebuild @@ -134,7 +134,7 @@ CRATES=" winapi-x86_64-pc-windows-gnu-0.4.0 " -inherit cargo flag-o-matic +inherit cargo DESCRIPTION="Generates an ebuild for a package using the in-tree eclasses." # Double check the homepage as the cargo_metadata crate @@ -162,7 +162,6 @@ RDEPEND=" QA_FLAGS_IGNORED="usr/bin/cargo-ebuild" src_configure() { - filter-lto # 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 }