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 32ED4158087 for ; Fri, 14 Jan 2022 20:34:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B5CF2BC023; Fri, 14 Jan 2022 20:34:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 E061B2BC023 for ; Fri, 14 Jan 2022 20:34:02 +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 DD79B3433E9 for ; Fri, 14 Jan 2022 20:34:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3171A268 for ; Fri, 14 Jan 2022 20:34:00 +0000 (UTC) From: "Vladislav Dudar" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Vladislav Dudar" Message-ID: <1642192336.61d0e3d7c8963a38dcff8ddc1fe394c2d9bda436.seal331gentoo@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/tealdeer/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/tealdeer/tealdeer-1.5.0.ebuild X-VCS-Directories: app-misc/tealdeer/ X-VCS-Committer: seal331gentoo X-VCS-Committer-Name: Vladislav Dudar X-VCS-Revision: 61d0e3d7c8963a38dcff8ddc1fe394c2d9bda436 X-VCS-Branch: dev Date: Fri, 14 Jan 2022 20:34: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: cd1f9abc-6bcb-4252-8862-a9d8c0e806f6 X-Archives-Hash: 751cda60cc40f74b9fc9d161edf63971 commit: 61d0e3d7c8963a38dcff8ddc1fe394c2d9bda436 Author: Vladislav Dudar gmail com> AuthorDate: Fri Jan 14 20:32:16 2022 +0000 Commit: Vladislav Dudar gmail com> CommitDate: Fri Jan 14 20:32:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61d0e3d7 app-misc/tealdeer: filter out -flto to avoid undefined references; force user to use new rust to avoid a compilation failure Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Vladislav Dudar gmail.com> app-misc/tealdeer/tealdeer-1.5.0.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-misc/tealdeer/tealdeer-1.5.0.ebuild b/app-misc/tealdeer/tealdeer-1.5.0.ebuild index a72322781..43664c7dd 100644 --- a/app-misc/tealdeer/tealdeer-1.5.0.ebuild +++ b/app-misc/tealdeer/tealdeer-1.5.0.ebuild @@ -186,7 +186,7 @@ xdg-2.4.0 zip-0.5.13 " -inherit cargo bash-completion-r1 +inherit cargo flag-o-matic bash-completion-r1 DESCRIPTION="A very fast implementation of tldr in Rust." HOMEPAGE="https://github.com/tldr-pages/tldr @@ -199,6 +199,7 @@ SLOT="0" KEYWORDS="~amd64" RDEPEND="!app-text/tldr" +BDEPEND=">=virtual/rust-1.54.0" QA_FLAGS_IGNORED="usr/bin/tldr" @@ -206,6 +207,11 @@ QA_FLAGS_IGNORED="usr/bin/tldr" RESTRICT="test" PROPERTIES="test_network" +src_configure() { + filter-flags '-flto*' # ring crate fails compile with lto + cargo_src_configure +} + src_install() { cargo_src_install einstalldocs