206 lines
6.6 KiB
Bash
206 lines
6.6 KiB
Bash
# Template file for 'rust'
|
|
pkgname=rust
|
|
version=1.29.2
|
|
revision=1
|
|
_rust_dist_version=1.28.0
|
|
_cargo_dist_version=0.30.0
|
|
# NB. if you push any(!) new version, don't forget to put a build
|
|
# output of musl to https://alpha.de.repo.voidlinux.org/distfiles/
|
|
wrksrc="rustc-${version}-src"
|
|
lib32disabled=yes
|
|
patch_args="-Np1"
|
|
build_style=configure
|
|
make_build_args="dist VERBOSE=1"
|
|
hostmakedepends="cmake curl pkg-config python"
|
|
makedepends="libffi-devel llvm ncurses-devel libxml2-devel zlib-devel"
|
|
depends="rust-std"
|
|
short_desc="Safe, concurrent, practical systems language"
|
|
maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|
homepage="https://www.rust-lang.org/"
|
|
license="MIT, Apache-2.0"
|
|
distfiles="https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"
|
|
checksum=5088e796aa2e47478cdf41e7243fc5443fafab0a7c70a11423e57c80c04167c9
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" cargo llvm"
|
|
|
|
# These are required for building the buildhost's stage0/1
|
|
hostmakedepends+=" libffi-devel libxml2-devel
|
|
ncurses-devel zlib-devel"
|
|
else
|
|
case "$XBPS_MACHINE" in
|
|
x86_64-musl)
|
|
hostmakedepends+=" libcurl libgit2"
|
|
distfiles+="
|
|
https://alpha.de.repo.voidlinux.org/distfiles/rustc-${_rust_dist_version}-x86_64-unknown-linux-musl.tar.xz
|
|
https://alpha.de.repo.voidlinux.org/distfiles/rust-std-${_rust_dist_version}-x86_64-unknown-linux-musl.tar.xz
|
|
https://alpha.de.repo.voidlinux.org/distfiles/cargo-${_cargo_dist_version}-x86_64-unknown-linux-musl.tar.gz"
|
|
checksum+="
|
|
1c54d595b0a1f3e283e453ff142800b3fdfb20dc2e45ceb71317693d2a278362
|
|
17d52f198877228788f012acf7b3ccbcbf9240553d42502b6816a3431806d9e1
|
|
e9344cbf3db669383cb3492d12bcd42d9130665f577be9ad4d2028011c7b1fae"
|
|
;;
|
|
x86_64)
|
|
# extract from src/stage0.txt
|
|
distfiles+="
|
|
https://static.rust-lang.org/dist/rustc-${_rust_dist_version}-x86_64-unknown-linux-gnu.tar.gz
|
|
https://static.rust-lang.org/dist/rust-std-${_rust_dist_version}-x86_64-unknown-linux-gnu.tar.gz
|
|
https://static.rust-lang.org/dist/cargo-${_cargo_dist_version}-x86_64-unknown-linux-gnu.tar.xz"
|
|
checksum+="
|
|
008bb3d714544bc991594b29a98a154441914c4771007130361bbadfb54143d0
|
|
c5aed4c7ef362b5754526d26acaccdc9300942fd12e5cc67cc56fc89576a9dab
|
|
cb7c63c166baa42ab0be08429e29fa59fc7108efd17ca512462b2645b1655a7f"
|
|
;;
|
|
i686)
|
|
# extract from src/stage0.txt
|
|
distfiles+="
|
|
https://static.rust-lang.org/dist/rustc-${_rust_dist_version}-i686-unknown-linux-gnu.tar.gz
|
|
https://static.rust-lang.org/dist/rust-std-${_rust_dist_version}-i686-unknown-linux-gnu.tar.gz
|
|
https://static.rust-lang.org/dist/cargo-${_cargo_dist_version}-i686-unknown-linux-gnu.tar.xz"
|
|
checksum+="
|
|
30fa399934c90024275a08aa8992e76e98e04f152fc65b8aad3ca1fe231db39e
|
|
fbf71c10787fa1cd4fbde0a1ef6805fa4978705c809959f48917bb7c5b5b6d61
|
|
43a5754d13fa0436b33c48b1f562b4198d6930efad3dc36284b88289ff20d74d"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
# In rust terminology 'build' is the build host ($CBUILD) and `target`
|
|
# and `host` are the triplets that are supposed to run the built binaries
|
|
# ($CTARGET)
|
|
case $XBPS_MACHINE in
|
|
*-musl) _build_triplet=${XBPS_MACHINE%-musl}-unknown-linux-musl;;
|
|
*) _build_triplet=${XBPS_MACHINE}-unknown-linux-gnu;;
|
|
esac
|
|
|
|
# Use the targets from `rustc --print target-list` here!
|
|
case $XBPS_TARGET_MACHINE in
|
|
i686) _host_triplet=i686-unknown-linux-gnu;;
|
|
x86_64) _host_triplet=x86_64-unknown-linux-gnu;;
|
|
x86_64-musl) _host_triplet=x86_64-unknown-linux-musl;;
|
|
armv6l) _host_triplet=arm-unknown-linux-gnueabihf;;
|
|
armv6l-musl) _host_triplet=arm-unknown-linux-musleabihf;;
|
|
armv7l) _host_triplet=armv7-unknown-linux-gnueabihf;;
|
|
armv7l-musl) _host_triplet=armv7-unknown-linux-musleabihf;;
|
|
aarch64) _host_triplet=aarch64-unknown-linux-gnu;;
|
|
aarch64-musl) _host_triplet=aarch64-unknown-linux-musl;;
|
|
*) broken="Please add your triplet to the rust template!";;
|
|
esac
|
|
|
|
post_extract() {
|
|
rm -rf src/llvm
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
mkdir -p stage0
|
|
cp -bflr ../rustc-*/rustc/* stage0
|
|
cp -bflr ../rust-std-*/rust-std-*/* stage0
|
|
case "$XBPS_MACHINE" in
|
|
*-musl) cp -bflr ../cargo stage0/bin;;
|
|
*)
|
|
rm ../cargo-*/cargo/manifest.in
|
|
cp -flr ../cargo-*/cargo/* stage0
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
sed -i /LD_LIBRARY_PATH/d src/bootstrap/bootstrap.py
|
|
}
|
|
|
|
do_configure() {
|
|
export LD_LIBRARY_PATH="$wrksrc/stage0/lib"
|
|
|
|
configure_args="
|
|
--prefix=/usr
|
|
--host=${_host_triplet}
|
|
--target=${_host_triplet}
|
|
--build=${_build_triplet}
|
|
--disable-full-bootstrap
|
|
--release-channel=stable
|
|
--disable-rpath
|
|
--disable-docs
|
|
--disable-codegen-tests
|
|
--llvm-root=/usr
|
|
--set=target.${_build_triplet}.llvm-config=/usr/bin/llvm-config
|
|
"
|
|
|
|
# Disable jemalloc for now. It increases the size of small programs
|
|
# significantly (hello world without jemalloc 130KB vs with jemalloc
|
|
# 300KB) and provides worse performance in some cases.
|
|
configure_args+=" --disable-jemalloc"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
configure_args+="
|
|
--local-rust-root=/usr
|
|
--enable-local-rebuild
|
|
"
|
|
|
|
# Set the appropriate values for the native compilation tools
|
|
configure_args+="
|
|
--set=target.${_build_triplet}.cc=${CC_host}
|
|
--set=target.${_build_triplet}.cxx=${CXX_host}
|
|
--set=target.${_build_triplet}.ar=${AR_host}
|
|
--set=target.${_build_triplet}.linker=${CC_host}
|
|
"
|
|
|
|
# Set 'llvm-config' for the cross target (host) so that we don't build
|
|
# LLVM for it again.
|
|
configure_args+="
|
|
--set=target.${_host_triplet}.llvm-config="/usr/bin/llvm-config"
|
|
"
|
|
else
|
|
configure_args+=" --local-rust-root=$wrksrc/stage0"
|
|
fi
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
configure_args+=" --set=target.${_host_triplet}.musl-root=/usr"
|
|
;;
|
|
esac
|
|
|
|
./configure $configure_args
|
|
}
|
|
|
|
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
|
|
export RUSTFLAGS="-C linker=${CC}"
|
|
}
|
|
|
|
# Set the correct CFLAGS for the build host, we have to compile libbacktrace
|
|
# for it during stage1. Otherwise it attemps to use CFLAGS, which are the CFLAGS
|
|
# of the cross host.
|
|
do_build() {
|
|
env CFLAGS_${_build_triplet}="${CFLAGS_host}" make ${makejobs} ${make_build_args}
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr
|
|
tar xf build/dist/rustc-${version}-${_host_triplet}.tar.gz -C "$DESTDIR/usr" --strip-components=2 --exclude=manifest.in
|
|
tar xf build/dist/rust-std-${version}-${_host_triplet}.tar.gz -C "$DESTDIR/usr/lib" --strip-components=3 --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
|
|
}
|
|
}
|
|
|
|
rust-std_package() {
|
|
short_desc+=" - standard library"
|
|
pkg_install() {
|
|
vmove usr/lib/rustlib
|
|
}
|
|
}
|