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 0BC81139360 for ; Thu, 12 Aug 2021 14:12:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A258E0B14; Thu, 12 Aug 2021 14:12:38 +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 113AFE0B14 for ; Thu, 12 Aug 2021 14:12:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F25BA342BE2 for ; Thu, 12 Aug 2021 14:12:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0830898 for ; Thu, 12 Aug 2021 14:12:33 +0000 (UTC) From: "James Kalyan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Kalyan" Message-ID: <1628777205.efa85935d13f6d095926b8229e386adcf960961d.contrib_x@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-util/rust-analyzer-bin/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-util/rust-analyzer-bin/Manifest dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.08.09.ebuild X-VCS-Directories: dev-util/rust-analyzer-bin/ X-VCS-Committer: contrib_x X-VCS-Committer-Name: James Kalyan X-VCS-Revision: efa85935d13f6d095926b8229e386adcf960961d X-VCS-Branch: dev Date: Thu, 12 Aug 2021 14:12:33 +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: e069afc5-39bc-4769-a719-4c934b68a6b0 X-Archives-Hash: 2698ba63497ec431261ab08aecbbcecc commit: efa85935d13f6d095926b8229e386adcf960961d Author: James Kalyan protonmail com> AuthorDate: Thu Aug 12 14:01:49 2021 +0000 Commit: James Kalyan protonmail com> CommitDate: Thu Aug 12 14:06:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=efa85935 dev-util/rust-analyzer-bin: add v2021.08.09 Signed-off-by: James Kalyan protonmail.com> dev-util/rust-analyzer-bin/Manifest | 1 + .../rust-analyzer-bin-2021.08.09.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-util/rust-analyzer-bin/Manifest b/dev-util/rust-analyzer-bin/Manifest index 52f5e5124..b04e93d2f 100644 --- a/dev-util/rust-analyzer-bin/Manifest +++ b/dev-util/rust-analyzer-bin/Manifest @@ -1 +1,2 @@ DIST rust-analyzer-bin-2021.08.02.gz 11550409 BLAKE2B 6d1dc7dd15375016f153d53c408f882f219778dfbeaa98e15fcb51a5f6704b29a73205c1c2ed1162ad2794387d9abc3fc569a19d243135428fc4ab6b46b9bcac SHA512 c23b2e9d645863b84e0961429c654365887f265faf883f94b62bedc4a9b8de25c00cc3e1653d614f485bebb9cbe4abb241072955d8d46bdc082795d597285422 +DIST rust-analyzer-bin-2021.08.09.gz 11688726 BLAKE2B 1002048d93fdc357a28ab287fdb862442433f764c9f11249a4caf587bf968de1a9a4bdc44f1ce2c1a2e2833c223ed8ec0070f50f6421d06db206f477f3ca5971 SHA512 2129ef0839647b509a7d048ac2781d830dc7d83311e0b46ef5caf60fe306d22dcdfe584bcc7e3e53edd6dc2b1c0d2ab04741c607f2a7ac29a13b3f9a859b6ba0 diff --git a/dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.08.09.ebuild b/dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.08.09.ebuild new file mode 100644 index 000000000..4e4f0e697 --- /dev/null +++ b/dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.08.09.ebuild @@ -0,0 +1,24 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="An implementation of Language Server Protocol for the Rust programming language" +HOMEPAGE="https://rust-analyzer.github.io" +SRC_URI="https://github.com/rust-analyzer/rust-analyzer/releases/download/2021-08-09/rust-analyzer-x86_64-unknown-linux-gnu.gz -> ${P}.gz" + +LICENSE="Apache-2.0 MIT-with-advertising" +SLOT="0" +KEYWORDS="~amd64" + +S=${WORKDIR} + +QA_FLAGS_IGNORED="usr/bin/rust-analyzer" + +src_install() { + newbin ${P} rust-analyzer +} + +pkg_postinst() { + elog "Make sure to add your desired rust toolchain (e.g. with rustup) for rust-analyzer to work correctly" +}