1
0
Fork 0
mirror of git://slackware.nl/current.git synced 2025-01-17 18:12:36 +01:00
slackware-current/testing/source/rust/rust.url
Patrick J Volkerding 16d0eba8e3 Wed Sep 20 00:08:45 UTC 2023
a/gettext-0.22.1-x86_64-1.txz:  Upgraded.
a/kernel-firmware-20230918_3672cca-noarch-1.txz:  Upgraded.
a/kernel-generic-6.1.54-x86_64-1.txz:  Upgraded.
a/kernel-huge-6.1.54-x86_64-1.txz:  Upgraded.
a/kernel-modules-6.1.54-x86_64-1.txz:  Upgraded.
a/openssl-solibs-3.1.3-x86_64-1.txz:  Upgraded.
ap/ghostscript-10.02.0-x86_64-2.txz:  Rebuilt.
  [PATCH] PDF interpreter - fix PageList processing.
  Thanks to denydias.
d/gettext-tools-0.22.1-x86_64-1.txz:  Upgraded.
d/kernel-headers-6.1.54-x86-1.txz:  Upgraded.
k/kernel-source-6.1.54-noarch-1.txz:  Upgraded.
l/dconf-editor-45.0-x86_64-1.txz:  Upgraded.
l/harfbuzz-8.2.1-x86_64-1.txz:  Upgraded.
l/nodejs-20.7.0-x86_64-1.txz:  Upgraded.
n/openssl-3.1.3-x86_64-1.txz:  Upgraded.
  This update fixes bugs and a security issue that does not affect Linux:
  Fix POLY1305 MAC implementation corrupting XMM registers on Windows.
  For more information, see:
    https://www.cve.org/CVERecord?id=CVE-2023-4807
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
testing/packages/rust-1.72.1-x86_64-1.txz:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
2023-09-20 03:08:36 +02:00

35 lines
1.6 KiB
INI

# Source code (repacked to .tar.lz):
VERSION=1.72.1
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.json in the Rust sources.
exit 0
BOOTSTRAP_DATE=2023-07-13
BOOTSTRAP_VERSION=1.71.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