blob: 955f561e70f43864b815ff8b944a2685bfebcfc2 (
plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 2020-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
CRATES="
"
inherit bash-completion-r1 cargo prefix
DESCRIPTION="Rust toolchain installer"
HOMEPAGE="https://rust-lang.github.io/rustup/"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/rust-lang/${PN}.git"
else
SRC_URI="https://github.com/rust-lang/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
${CARGO_CRATE_URIS}
https://dev.gentoo.org/~arthurzam/distfiles/dev-util/${PN}/${P}-crates.tar.xz
"
KEYWORDS="~amd64 ~arm64 ~ppc64"
fi
LICENSE="|| ( Apache-2.0 MIT )"
# Dependent crate licenses
LICENSE+=" Apache-2.0 BSD ISC MIT Unicode-DFS-2016"
SLOT="0"
# uses network
RESTRICT="test"
DEPEND="
app-arch/xz-utils
net-misc/curl:=[http2,ssl]
dev-libs/openssl:0=
"
RDEPEND="${DEPEND}"
# rust does not use *FLAGS from make.conf, silence portage warning
QA_FLAGS_IGNORED="usr/bin/rustup-init"
src_unpack() {
if [[ "${PV}" == 9999 ]]; then
git-r3_src_unpack
cargo_live_src_unpack
else
cargo_src_unpack
fi
}
src_configure() {
# modeled after ci/run.bash upstream
# reqwest-rustls-tls requires ring crate, which is not very portable.
local myfeatures=(
no-self-update
curl-backend
reqwest-backend
reqwest-default-tls
)
case ${ARCH} in
ppc* | mips* | riscv* | s390*)
;;
*) myfeatures+=( reqwest-rustls-tls )
;;
esac
cargo_src_configure --no-default-features
}
src_compile() {
export OPENSSL_NO_VENDOR=true
cargo_src_compile
}
src_install() {
cargo_src_install
einstalldocs
newbin "$(prefixify_ro "${FILESDIR}"/symlink_rustup.sh)" rustup-init-gentoo
ln -s "${ED}/usr/bin/rustup-init" rustup || die
./rustup completions bash rustup > "${T}/rustup" || die
./rustup completions zsh rustup > "${T}/_rustup" || die
dobashcomp "${T}/rustup"
insinto /usr/share/zsh/site-functions
doins "${T}/_rustup"
}
pkg_postinst() {
elog "No rustup toolchains installed by default"
elog "eselect activated system rust toolchain can be added to rustup by running"
elog "helper script installed as ${EPREFIX}/usr/bin/rustup-init-gentoo"
elog "it will create symlinks to system-installed rustup in home directory"
elog "and rustup updates will be managed by portage"
elog "please delete current rustup binaries from ~/.cargo/bin/ (if any)"
elog "before running rustup-init-gentoo"
}
|