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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6B5D213835B for ; Mon, 12 Apr 2021 05:39:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AA99E0824; Mon, 12 Apr 2021 05:39:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 804E6E0824 for ; Mon, 12 Apr 2021 05:39:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 95C0C340C53 for ; Mon, 12 Apr 2021 05:38:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F40D164D for ; Mon, 12 Apr 2021 05:38:50 +0000 (UTC) From: "Theo Anderson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Theo Anderson" Message-ID: <1618137536.1e3218cc45003fc3e505df28c5cf859910008d9a.telans@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-lang/gleam/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/gleam/gleam-0.12.1.ebuild X-VCS-Directories: dev-lang/gleam/ X-VCS-Committer: telans X-VCS-Committer-Name: Theo Anderson X-VCS-Revision: 1e3218cc45003fc3e505df28c5cf859910008d9a X-VCS-Branch: master Date: Mon, 12 Apr 2021 05:38: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: 43e87a30-7347-46dc-abad-58c96687eb24 X-Archives-Hash: 49162c6212d1da3c287cf334af0c3906 Message-ID: <20210412053850.3izr6XWZ78o65zSXv8yhkd1zjdyEXlKOA-7LchIwRNo@z> commit: 1e3218cc45003fc3e505df28c5cf859910008d9a Author: Theo Anderson posteo de> AuthorDate: Sun Apr 11 10:37:04 2021 +0000 Commit: Theo Anderson posteo de> CommitDate: Sun Apr 11 10:38:56 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e3218cc dev-lang/gleam: fix compile * don't treat warnings as errors * specify QA_FLAGS_IGNORED Closes: https://bugs.gentoo.org/780999 Signed-off-by: Theo Anderson posteo.de> dev-lang/gleam/gleam-0.12.1.ebuild | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dev-lang/gleam/gleam-0.12.1.ebuild b/dev-lang/gleam/gleam-0.12.1.ebuild index d6dc4025d..8ed01a968 100644 --- a/dev-lang/gleam/gleam-0.12.1.ebuild +++ b/dev-lang/gleam/gleam-0.12.1.ebuild @@ -259,3 +259,15 @@ LICENSE="Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD BSL-1.1 CC0-1.0 MI SLOT="0" KEYWORDS="~amd64" RESTRICT="mirror" + +QA_FLAGS_IGNORED="usr/bin/gleam" + +src_configure() { + export RUSTFLAGS="${RUSTFLAGS} --cap-lints warn" + cargo_src_configure +} + +src_install() { + cargo_src_install + einstalldocs +}