From abf75d1be9b098490c22c9a7729e4099d30033eb Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Wed, 20 Jul 2022 11:44:41 -0400 Subject: dev-util/rust-analyzer: new package, add 20220718 --- .../rust-analyzer/rust-analyzer-20220718.ebuild | 50 ++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 dev-util/rust-analyzer/rust-analyzer-20220718.ebuild (limited to 'dev-util/rust-analyzer/rust-analyzer-20220718.ebuild') diff --git a/dev-util/rust-analyzer/rust-analyzer-20220718.ebuild b/dev-util/rust-analyzer/rust-analyzer-20220718.ebuild new file mode 100644 index 0000000..6764dd8 --- /dev/null +++ b/dev-util/rust-analyzer/rust-analyzer-20220718.ebuild @@ -0,0 +1,50 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +CRATES=" +" + +inherit cargo + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/rust-analyzer/rust-analyzer" +else + KEYWORDS="~amd64" + MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}" + SRC_URI="https://github.com/rust-analyzer/rust-analyzer/archive/${MY_PV}.tar.gz -> ${P}.tar.gz $(cargo_crate_uris)" +fi + +DESCRIPTION="An implementation of Language Server Protocol for the Rust programming language" +HOMEPAGE="https://rust-analyzer.github.io" + +LICENSE="0BSD Apache-2.0 Artistic-2 BSD Boost-1.0 CC0-1.0 ISC MIT Unlicense ZLIB" +RESTRICT="mirror" +SLOT="0" +IUSE="" + +DEPEND="|| ( >=dev-lang/rust-1.57.0[rust-src] >=dev-lang/rust-bin-1.57.0[rust-src] )" +RDEPEND="${DEPEND}" + +QA_FLAGS_IGNORED="usr/bin/rust-analyzer" + +src_unpack() { + if [[ "${PV}" == *9999* ]]; then + git-r3_src_unpack + cargo_live_src_unpack + else + cargo_src_unpack + mv -T "${PN}-${MY_PV}" "${P}" || die + fi +} + +src_test() { + # Requires out of source git repo. + cargo_src_test -- --skip "tidy::check_merge_commits" +} + +src_install() { + cargo_src_install --path "./crates/rust-analyzer" +} \ No newline at end of file -- cgit v1.2.3