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 930E415801B 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 88028E0794; Wed, 12 Jul 2023 06:36:03 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 73F40E0794 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 538FE33BE12 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 AE9CAAC2 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: <1689143589.cbce8be942bf4255e243fdffdc80e5b51c24eb57.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/weggli/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/weggli/weggli-0.2.4.ebuild X-VCS-Directories: app-misc/weggli/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cbce8be942bf4255e243fdffdc80e5b51c24eb57 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: 2a8ed1bd-4d74-4323-82a6-1d2c9a17abb4 X-Archives-Hash: 231c1ea99c8dd1c0772ca4f93ab5f138 commit: cbce8be942bf4255e243fdffdc80e5b51c24eb57 Author: Sam James gentoo org> AuthorDate: Wed Jul 12 06:32:54 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jul 12 06:33:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbce8be9 app-misc/weggli: 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> app-misc/weggli/weggli-0.2.4.ebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/app-misc/weggli/weggli-0.2.4.ebuild b/app-misc/weggli/weggli-0.2.4.ebuild index bad640d606b9..f4580b114190 100644 --- a/app-misc/weggli/weggli-0.2.4.ebuild +++ b/app-misc/weggli/weggli-0.2.4.ebuild @@ -125,7 +125,7 @@ CRATES=" # tree-sitter grammar. Patching the .so to need the system's # libtree-sitter-cpp seems to work, but it is not correct because the # weggli grammar has some minor modifications. -inherit cargo flag-o-matic +inherit cargo DESCRIPTION="a fast and robust semantic search tool for C and C++ codebases" HOMEPAGE="https://github.com/googleprojectzero/weggli" @@ -139,10 +139,3 @@ SLOT="0" KEYWORDS="~amd64 ~arm64" QA_FLAGS_IGNORED="usr/bin/${PN}" - -src_prepare() { - default - - # 854741 - filter-lto -}