147 lines
5 KiB
Bash
147 lines
5 KiB
Bash
# Template file for 'rust'
|
|
pkgname=rust
|
|
version=1.18.0
|
|
revision=1
|
|
# NB. if you push any(!) new version, don't forget to put a build
|
|
# output of musl to https://repo.voidlinux.eu/distfiles/
|
|
wrksrc="rustc-${version}-src"
|
|
lib32disabled=yes
|
|
patch_args="-Np1"
|
|
build_style=configure
|
|
make_build_args="dist VERBOSE=1"
|
|
only_for_archs="i686 x86_64 x86_64-musl"
|
|
hostmakedepends="cmake curl pkg-config python"
|
|
makedepends="libffi-devel llvm3.9 ncurses-devel zlib-devel"
|
|
short_desc="Safe, concurrent, practical systems language"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
homepage="http://www.rust-lang.org/"
|
|
license="MIT, Apache-2.0"
|
|
distfiles="https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"
|
|
checksum=d2dc36e99b9e2269488b2bcddde43c234e6bde03edf70cba82a027ff49c36111
|
|
|
|
case "$XBPS_MACHINE" in
|
|
x86_64-musl)
|
|
hostmakedepends+=" libcurl libgit2"
|
|
distfiles+="
|
|
https://repo.voidlinux.eu/distfiles/rustc-1.17.0-x86_64-unknown-linux-musl.tar.gz
|
|
https://repo.voidlinux.eu/distfiles/rust-std-1.17.0-x86_64-unknown-linux-musl.tar.gz
|
|
https://repo.voidlinux.eu/distfiles/cargo-0.17.0-x86_64-unknown-linux-musl.tar.gz"
|
|
checksum+="
|
|
b9202eb468568c528e3e817c7f230e12215030c6cefaffccd7fc22a10356cc38
|
|
f1c6b1a6ca28a4e2018457afe3ff51404bac37881639ad683cbe8f6d9f0632a2
|
|
0150d5b249fa66a5d2515e6beb27aa6dfb25301bb50522fab7c2445bb7ecdd09"
|
|
;;
|
|
x86_64)
|
|
# extract from src/stage0.txt
|
|
distfiles+="
|
|
https://static.rust-lang.org/dist/2017-04-27/rustc-1.17.0-x86_64-unknown-linux-gnu.tar.gz
|
|
https://static.rust-lang.org/dist/2017-04-27/rust-std-1.17.0-x86_64-unknown-linux-gnu.tar.gz
|
|
https://s3.amazonaws.com/rust-lang-ci/cargo-builds/6b05583d71f982bcad049b9fa094c637c062e751/cargo-nightly-x86_64-unknown-linux-gnu.tar.gz"
|
|
checksum+="
|
|
3eebd92512040baf3c0974c3ce61859646d8cf422cc515d724d857577da0dbd5
|
|
2902bb0da78208f441f1d983aeafcad01ea653d2e062a8192892868e2b41130d
|
|
d9e69d2b87dc0cf7fafe0e0eb64f82fe3414ef14fcb27f5eeff34df860e459d9"
|
|
;;
|
|
i686)
|
|
# extract from src/stage0.txt
|
|
distfiles+="
|
|
https://static.rust-lang.org/dist/2017-04-27/rustc-1.17.0-i686-unknown-linux-gnu.tar.gz
|
|
https://static.rust-lang.org/dist/2017-04-27/rust-std-1.17.0-i686-unknown-linux-gnu.tar.gz
|
|
https://s3.amazonaws.com/rust-lang-ci/cargo-builds/6b05583d71f982bcad049b9fa094c637c062e751/cargo-nightly-i686-unknown-linux-gnu.tar.gz"
|
|
checksum+="
|
|
9d3e3ff343f22b5288676b40d6749ebeabea863fa9e6009fbc5a018ede83c57c
|
|
3dbaa44a07b14e5af05633c5f1a7d6b0538c6f8fa404ee6d3f85714d4f2bf39b
|
|
863a4f92bbeec76257403fd571a90b90bd759ec8bcaddb7517fb89d40959e9e5"
|
|
;;
|
|
esac
|
|
|
|
post_extract() {
|
|
rm -rf src/llvm
|
|
|
|
mkdir -p stage0
|
|
cp -flr ../rustc-*/rustc/* stage0
|
|
cp -flr ../rust-std-*/rust-std-*/* stage0
|
|
cp -flr ../cargo-*/cargo/* stage0
|
|
|
|
# XXX: Cheat Rust build system so we can build rustc using different
|
|
# version of (prebuilt) stable rustc than preconfigured. It's hack-ish,
|
|
# but since we're basically rebuilding rustc with the same version,
|
|
# it's actually safe.
|
|
# Note: --enable-local-rebuild from #33787 didn't work, don't know why.
|
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
|
rustc_ver="$($wrksrc/stage0/bin/rustc --version | cut -f2 -d ' ')"
|
|
rustc_key="$(printf "$rustc_ver" | md5sum | cut -c1-8)"
|
|
sed -Ei \
|
|
-e "s/^(rustc):.*/\1: $rustc_ver-1970-01-01/" \
|
|
-e "s/^(rustc_key):.*/\1: $rustc_key/" \
|
|
src/stage0.txt
|
|
|
|
# Generate config for bootstrap.py to use our prebuilt rustc and cargo
|
|
# for bootstrapping instead of downloading snapshot from internet.
|
|
cat > config.toml <<EOF
|
|
[build]
|
|
cargo = "$wrksrc/stage0/bin/cargo"
|
|
rustc = "$wrksrc/stage0/bin/rustc"
|
|
EOF
|
|
|
|
sed -i /LD_LIBRARY_PATH/d src/bootstrap/bootstrap.py
|
|
}
|
|
|
|
pre_build() {
|
|
export CARGO_HOME="$wrksrc/.cargo"
|
|
export SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
|
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
|
export PATH="$wrksrc/stage0/bin:$PATH"
|
|
export MUSL_ROOT=/usr
|
|
export RUST_BACKTRACE=1
|
|
}
|
|
|
|
do_configure() {
|
|
local _triplet
|
|
case $XBPS_TARGET_MACHINE in
|
|
i686) _triplet=i686-unknown-linux-gnu;;
|
|
x86_64) _triplet=x86_64-unknown-linux-gnu;;
|
|
x86_64-musl) _triplet=x86_64-unknown-linux-musl;;
|
|
*) _triplet=$XBPS_TARGET_MACHINE;;
|
|
esac
|
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
|
configure_args="
|
|
--prefix=/usr
|
|
--host=${_triplet}
|
|
--build=${_triplet}
|
|
--release-channel=stable
|
|
--disable-rpath
|
|
--enable-ccache
|
|
--llvm-root=/usr
|
|
--enable-local-rust
|
|
--local-rust-root=$wrksrc/stage0
|
|
"
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
configure_args+="--musl-root=/usr --disable-jemalloc"
|
|
;;
|
|
esac
|
|
./configure $configure_args
|
|
|
|
}
|
|
do_install() {
|
|
vmkdir usr
|
|
tar xf build/dist/rustc-*-*-*.tar.gz -C "$DESTDIR/usr" --strip-components=2 --exclude=manifest.in
|
|
tar xf build/dist/rust-std-*-*-*.tar.gz -C "$DESTDIR/usr/lib" --strip-components=3 --exclude=manifest.in
|
|
tar xf build/dist/rust-docs-*-*-*.tar.gz -C "$DESTDIR/usr" --strip-components=2 --exclude=manifest.in
|
|
|
|
vlicense COPYRIGHT
|
|
vlicense LICENSE-APACHE
|
|
vlicense LICENSE-MIT
|
|
|
|
cd ${DESTDIR}/usr/lib
|
|
ln -sf rustlib/*/lib/*.so . # symlinks instead of copies
|
|
}
|
|
|
|
rust-doc_package() {
|
|
short_desc+=" - documentation"
|
|
noarch=yes
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|