1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-02-05 20:46:11 +01:00
slackware-current/source/d/rust/rust.url
Patrick J Volkerding 6b06093965 Sat Jan 11 22:49:38 UTC 2025
a/util-linux-2.40.2-x86_64-2.txz:  Rebuilt.
  Let's revert this until the mount issues are hopefully worked out with
  util-linux-2.40.4.
ap/vim-9.1.1006-x86_64-1.txz:  Upgraded.
d/cmake-3.31.4-x86_64-1.txz:  Upgraded.
d/git-2.48.0-x86_64-1.txz:  Upgraded.
d/rust-1.84.0-x86_64-1.txz:  Upgraded.
l/at-spi2-core-2.54.1-x86_64-1.txz:  Upgraded.
l/harfbuzz-10.2.0-x86_64-1.txz:  Upgraded.
l/openal-soft-1.24.2-x86_64-1.txz:  Upgraded.
xap/qalculate-qt-5.4.0-x86_64-1.txz:  Added.
  Fine. :-) Thanks to gmgf and sombragris.
xap/vim-gvim-9.1.1006-x86_64-1.txz:  Upgraded.
2025-01-12 00:38:52 +01:00

35 lines
1.6 KiB
INI

# Source code (repacked to .tar.lz):
VERSION=1.84.0
rm -f rustc-${VERSION}-src.tar.*
lftpget https://static.rust-lang.org/dist/rustc-${VERSION}-src.tar.gz
lftpget https://static.rust-lang.org/dist/rustc-${VERSION}-src.tar.gz.asc
if gpg --verify rustc-${VERSION}-src.tar.gz.asc ; then
rm -f rustc-${VERSION}-src.tar.gz.asc
gzip -d rustc-*tar.gz
plzip -9 -v rustc-*tar
else
echo "FATAL ERROR: Not recompressing since GPG signature failed."
exit 1
fi
# Please note that the bootstrap binary packages listed below might not be kept
# updated for later versions. The Rust compiler as shipped with Slackware
# should be able to compile the next released version of Rust.
#
# To find the expected date/versions for bootstrap binaries to be able to
# update the settings below, look at src/stage0 in the Rust sources.
exit 0
BOOTSTRAP_DATE=2024-11-28
BOOTSTRAP_VERSION=1.83.0
BOOTSTRAP_CARGO=$BOOTSTRAP_VERSION
# i686 bootstrap:
lftpget https://static.rust-lang.org/dist/${BOOTSTRAP_DATE}/cargo-${BOOTSTRAP_CARGO}-i686-unknown-linux-gnu.tar.xz
lftpget https://static.rust-lang.org/dist/${BOOTSTRAP_DATE}/rust-std-${BOOTSTRAP_VERSION}-i686-unknown-linux-gnu.tar.xz
lftpget https://static.rust-lang.org/dist/${BOOTSTRAP_DATE}/rustc-${BOOTSTRAP_VERSION}-i686-unknown-linux-gnu.tar.xz
# x86_64 bootstrap:
lftpget https://static.rust-lang.org/dist/${BOOTSTRAP_DATE}/cargo-${BOOTSTRAP_CARGO}-x86_64-unknown-linux-gnu.tar.xz
lftpget https://static.rust-lang.org/dist/${BOOTSTRAP_DATE}/rust-std-${BOOTSTRAP_VERSION}-x86_64-unknown-linux-gnu.tar.xz
lftpget https://static.rust-lang.org/dist/${BOOTSTRAP_DATE}/rustc-${BOOTSTRAP_VERSION}-x86_64-unknown-linux-gnu.tar.xz