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 561D91382C5 for ; Sun, 30 May 2021 14:47:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92AF8E077C; Sun, 30 May 2021 14:47: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 6720AE077D for ; Sun, 30 May 2021 14:47:13 +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 9E870340B63 for ; Sun, 30 May 2021 14:47:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2002579B for ; Sun, 30 May 2021 14:47:10 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1622223105.fbd97c7306eec311f6cc1beb2ac6d73a384639b8.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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/metadata.xml dev-util/rust-analyzer-bin/rust-analyzer-bin-9999.ebuild X-VCS-Directories: dev-util/rust-analyzer-bin/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: fbd97c7306eec311f6cc1beb2ac6d73a384639b8 X-VCS-Branch: master Date: Sun, 30 May 2021 14:47:10 +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: 86381aea-b721-4560-9e6f-d82dbc76b1f6 X-Archives-Hash: c281ff154e5caa51dbe370bd80e26ad1 commit: fbd97c7306eec311f6cc1beb2ac6d73a384639b8 Author: James Kalyan protonmail com> AuthorDate: Fri May 28 17:30:22 2021 +0000 Commit: Andrew Ammerlaan gentoo org> CommitDate: Fri May 28 17:31:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fbd97c73 dev-util/rust-analyzer-bin: add live binary release Signed-off-by: James Kalyan protonmail.com> dev-util/rust-analyzer-bin/Manifest | 1 + dev-util/rust-analyzer-bin/metadata.xml | 12 ++++++++++++ .../rust-analyzer-bin/rust-analyzer-bin-9999.ebuild | 19 +++++++++++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-util/rust-analyzer-bin/Manifest b/dev-util/rust-analyzer-bin/Manifest new file mode 100644 index 000000000..af372a7c9 --- /dev/null +++ b/dev-util/rust-analyzer-bin/Manifest @@ -0,0 +1 @@ +DIST rust-analyzer-linux.gz 11238720 BLAKE2B 70145477970d78d2dd68ddf332040aa7bc653bbaf3d8942a5df6c44589cdeb98a580bf6385bc1c91b06681027f494c69a89ba7c9dfe3ee24634c79e81c09a262 SHA512 5b8f49a878b67f75250c61cfaaf7bf401f87debdb131a4a1bb6026747d906031c934abe6fc8687222a2736cbcf2c862a130bca3f73828849e2b5e7a8fda47ea5 diff --git a/dev-util/rust-analyzer-bin/metadata.xml b/dev-util/rust-analyzer-bin/metadata.xml new file mode 100644 index 000000000..e2fc8785a --- /dev/null +++ b/dev-util/rust-analyzer-bin/metadata.xml @@ -0,0 +1,12 @@ + + + + + rust-analyzer/rust-analyzer + https://github.com/rust-analyzer/rust-analyzer/issues + + + contrib_x@protonmail.com + James Kalyan + + diff --git a/dev-util/rust-analyzer-bin/rust-analyzer-bin-9999.ebuild b/dev-util/rust-analyzer-bin/rust-analyzer-bin-9999.ebuild new file mode 100644 index 000000000..23d87932d --- /dev/null +++ b/dev-util/rust-analyzer-bin/rust-analyzer-bin-9999.ebuild @@ -0,0 +1,19 @@ +# 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/latest/download/rust-analyzer-linux.gz" + +LICENSE="Apache-2.0" +SLOT="0" +PROPERTIES="live" + +S=${WORKDIR} + +src_install() { + newbin rust-analyzer-linux rust-analyzer + elog "Make sure to add your desired rust toolchain (e.g. with rustup) for rust-analyzer to work correctly" +}