mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
96d75d54bf
ap/inxi-3.3.36_1-noarch-1.txz: Upgraded. ap/nano-8.2-x86_64-1.txz: Upgraded. d/luajit-2.1.1725453128-x86_64-1.txz: Upgraded. d/rust-1.81.0-x86_64-1.txz: Upgraded. l/netpbm-11.07.01-x86_64-1.txz: Upgraded. l/python-cffi-1.17.1-x86_64-1.txz: Upgraded. l/python-glad2-2.0.7-x86_64-1.txz: Upgraded. l/wireplumber-0.5.6-x86_64-1.txz: Upgraded. n/iputils-20240905-x86_64-1.txz: Upgraded. x/igt-gpu-tools-1.29-x86_64-1.txz: Upgraded. x/libXi-1.8.2-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-128.2.0esr-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/128.2.0esr/releasenotes/ (* Security fix *)
35 lines
1.6 KiB
INI
35 lines
1.6 KiB
INI
# Source code (repacked to .tar.lz):
|
|
VERSION=1.81.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-08-08
|
|
BOOTSTRAP_VERSION=1.80.1
|
|
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
|