Repacked rust toolchain and source in lzip file format Added mozilla-nss to base Updated base section build list
92 lines
No EOL
3.9 KiB
Text
92 lines
No EOL
3.9 KiB
Text
# Maintainer: PktSurf <smlinux@pktsurf.in>
|
|
app=rust
|
|
version=1.79.0
|
|
build=1sml
|
|
homepage="https://rust-lang.org"
|
|
download="https://static.rust-lang.org/dist/rustc-$version-src.tar.xz"
|
|
desc="A safe, concurrent, practical language"
|
|
requires="gcc-libs bash llvm clang gdb"
|
|
# We don't want .rlib files to be removed
|
|
preservestaticlibs=1
|
|
|
|
prepbuilddir() {
|
|
arch="$HOSTTYPE"
|
|
export arch
|
|
mkandenterbuilddir
|
|
rm -rf rustc-$version-src
|
|
|
|
tar xf $srcdir/rustc-$version-src.tar.?z*
|
|
cd rustc-$version-src
|
|
fixbuilddirpermissions
|
|
|
|
# If a rust toolchain does not already exist, extract and install one of the provided ready-to-use toolchains
|
|
if [ ! -x /usr/bin/rustc ] ; then
|
|
# Create a temporary directory that will house a prebuilt architecture-specific rust toolchain provided by rust developers for bootstrapping
|
|
mkdir -p temp-toolchain
|
|
cd temp-toolchain
|
|
|
|
# Extract the toolchain into it
|
|
tar xf $srcdir/$app-$version-$arch-unknown-linux-musl.tar.?z
|
|
cd $app-$version-$arch-unknown-linux-musl
|
|
|
|
# Now install the toolchain
|
|
./install.sh --prefix=/usr || true
|
|
|
|
# Go back to the temporary build directory
|
|
cd ../../
|
|
fi
|
|
|
|
applypatch $srcdir/alpine-move-py-scripts-to-share.patch
|
|
applypatch $srcdir/do-not-install-libunwind-source.patch
|
|
applypatch $srcdir/gcc-eh-libunwind.patch
|
|
applypatch $srcdir/musl-fix-linux_musl_base.patch
|
|
applypatch $srcdir/need-rpath.patch
|
|
applypatch $srcdir/need-ssp_nonshared.patch
|
|
applypatch $srcdir/no-export-ld-library-path.patch
|
|
applypatch $srcdir/revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch
|
|
|
|
clear_vendor_checksums() {
|
|
sed -i 's/\("files":{\)[^}]*/\1/' vendor/$1/.cargo-checksum.json
|
|
}
|
|
|
|
clear_vendor_checksums openssl-src-111.28.1+1.1.1w
|
|
|
|
# We use our system's LLVM. Discard rust's own bundled LLVM directory
|
|
#rm -Rf src/llvm-project/
|
|
|
|
cp $srcdir/config.toml .
|
|
}
|
|
|
|
build() {
|
|
export RUST_BACKTRACE=1
|
|
export OPENSSL_NO_VENDOR=1
|
|
|
|
unset MAKEFLAGS
|
|
python3 ./x.py dist -v -j4
|
|
DESTDIR="$pkg" python3 ./x.py install
|
|
|
|
cp LICENSE* COPYRIGHT $pkgdocs/
|
|
|
|
find $pkg/usr/lib -name "*.so" -exec chmod 755 "{}" \+
|
|
|
|
if [[ -x /usr/bin/rustc ]] && [[ -d temp-toolchain ]]; then
|
|
# Remove the temporary toolchain
|
|
cd temp-toolchain/$app-$version-$arch-unknown-linux-musl
|
|
./install.sh --uninstall --prefix=/usr
|
|
fi
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
d7751c9a6cd55fcec75249d725fffd9d010bce1d80fd141afbeb8d01e080efdc2c1dfc8bc84f5df41e02dcb109e23dce11f8e7e5f701d4bc988ea879c6b06942 rust-1.79.0-x86_64-unknown-linux-musl.tar.lz
|
|
83e6bfc1874f70f6b228e606ef1c02e0feb933c206e4b270f3c35f33eb26052037a4eb842850f574890bce8250ed5b3cfaa00c0b7f3aa055616f47509f893b03 rustc-1.79.0-src.tar.lz
|
|
9de9d7ad05584e3cafddedcac409a4605a1d67e82260220deb3efd965603ee3148062b081c0cd736e50d82daad3a723fb6a7493fdf4dddfe36288645425a7946 alpine-move-py-scripts-to-share.patch
|
|
0d9e5ee4ebf647d3c44dc59b8991d330f2eb0cfa788768c5c9c5f5b57327c3a46b26e93641753a32335d0e3e76a0ab95bb6ad8279913b0c76c752624b139c5c1 do-not-install-libunwind-source.patch
|
|
cfdb3499fa6b3dea5ff7d3fd266ab0e34571fd48fa17c5e0f1467b8896087979555209dd256c50d357fdca1859feade9bf4c8f7b5cf003a16891350d0a34d00b gcc-eh-libunwind.patch
|
|
a32f3a9bcab771cce6be2ad936cd4edad3bb638f38da02e79c29cfed967eb0edcdf47ae892bbdd2959cebb5c74dee3fcc752dc2405f761d5c8ecc0021abb24a0 musl-fix-linux_musl_base.patch
|
|
f3051a7d67cf7937867d50a3169d391718d1d8a33f69066f08020df45e131076a811e9b9429e448460ff129bb2ebbf429b3cb5a4d05e188dace18f576a33562c need-rpath.patch
|
|
c5a94cc3518f3dbefb2011d1c4267530062843262133332cff96db2e779d7f9b57bdab336c50b927b1c84855db4fa1ab8eb62098286746c8dcf50a779ce0202b need-ssp_nonshared.patch
|
|
0688d21b59aa47867cf2a307bf997a996f14435a2931cdbbddcfe52c899f00d2676cdc67aeff2c4fbbc220fdb21d8405ec206e96aece93904a6541ba7438f649 no-export-ld-library-path.patch
|
|
74c0d14a68c2d7355f15ec3704d387556ad337e4991831e94951906d17aeb60387d20586a63cf6cdc62b46c60e1874340a250196ec2b3e75c268af1c41fae7e9 revert-rustc_codegen_ssa-use-try_canonicalize-in-rpath.patch
|
|
" |