summaryrefslogtreecommitdiff
path: root/dev-util/rust-analyzer/rust-analyzer-20220718.ebuild
blob: 481307be1c7823a82dba3b980b4c8c7ede66a19c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

CRATES="
"

inherit cargox git-r3

if [[ "${PV}" == *9999* ]]; then
	EGIT_REPO_URI="https://github.com/rust-analyzer/rust-analyzer"
else
	KEYWORDS="~amd64"
	EGIT_COMMIT="${PV:0:4}-${PV:4:2}-${PV:6:2}"
	EGIT_REPO_URI="https://github.com/rust-analyzer/rust-analyzer"
	SRC_URI="https://github.com/rust-analyzer/rust-analyzer/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz $(cargox_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="live"
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() {
	git-r3_src_unpack
	cargox_live_src_unpack
}

src_test() {
	# Requires out of source git repo.
	cargox_src_test -- --skip "tidy::check_merge_commits"
}

src_install() {
	cargox_src_install --path "./crates/rust-analyzer"
}