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 C991413933E for ; Fri, 23 Jul 2021 03:43:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7866E0C15; Fri, 23 Jul 2021 03:43:13 +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 30901E0C15 for ; Fri, 23 Jul 2021 03:43:11 +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 01F55342A9A for ; Fri, 23 Jul 2021 03:43:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 132877B2 for ; Fri, 23 Jul 2021 03:43:08 +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: <1627011655.8d357b5454177c6bd64aeaf987cc199df063db45.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/rust-analyzer-bin-2021.07.19.ebuild X-VCS-Directories: dev-util/rust-analyzer-bin/ X-VCS-Committer: contrib_x X-VCS-Committer-Name: James Kalyan X-VCS-Revision: 8d357b5454177c6bd64aeaf987cc199df063db45 X-VCS-Branch: dev Date: Fri, 23 Jul 2021 03:43:08 +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: 37160b1c-b365-4aff-aacf-b17fc88f296a X-Archives-Hash: c89974150e2870491bb5357449e46deb commit: 8d357b5454177c6bd64aeaf987cc199df063db45 Author: James Kalyan protonmail com> AuthorDate: Fri Jul 23 03:40:55 2021 +0000 Commit: James Kalyan protonmail com> CommitDate: Fri Jul 23 03:40:55 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d357b54 dev-util/rust-analyzer-bin: add v2021.07.19 Signed-off-by: James Kalyan protonmail.com> .../rust-analyzer-bin-2021.07.19.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.07.19.ebuild b/dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.07.19.ebuild new file mode 100644 index 000000000..a8b2b0ab6 --- /dev/null +++ b/dev-util/rust-analyzer-bin/rust-analyzer-bin-2021.07.19.ebuild @@ -0,0 +1,22 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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-07-19/rust-analyzer-x86_64-unknown-linux-gnu.gz" + +LICENSE="Apache-2.0 MIT-with-advertising" +SLOT="0" +KEYWORDS="~amd64" + +S=${WORKDIR} + +src_install() { + newbin rust-analyzer-x86_64-unknown-linux-gnu rust-analyzer +} + +pkg_postinst() { + elog "Make sure to add your desired rust toolchain (e.g. with rustup) for rust-analyzer to work correctly" +}