mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
30ad57f5bd
a/aaa_libraries-15.0-x86_64-15.txz: Rebuilt. Upgraded: libzstd.so.1.5.2. a/kernel-firmware-20220119_0c6a7b3-noarch-1.txz: Upgraded. a/kernel-generic-5.15.16-x86_64-1.txz: Upgraded. a/kernel-huge-5.15.16-x86_64-1.txz: Upgraded. a/kernel-modules-5.15.16-x86_64-1.txz: Upgraded. ap/vim-8.2.4166-x86_64-1.txz: Upgraded. d/kernel-headers-5.15.16-x86-1.txz: Upgraded. d/rust-1.58.1-x86_64-1.txz: Upgraded. k/kernel-source-5.15.16-noarch-1.txz: Upgraded. l/qt5-5.15.3_20211130_014c375b-x86_64-2.txz: Rebuilt. Applied upstream patch: [PATCH] Move the wayland socket polling to a separate event thread. Thanks to LuckyCyborg. l/svgalib-1.9.25-x86_64-7.txz: Rebuilt. Don't try to use the (broken) assembly. Thanks to nobodino. l/zstd-1.5.2-x86_64-1.txz: Upgraded. x/ibus-m17n-1.4.9-x86_64-1.txz: Upgraded. xap/vim-gvim-8.2.4166-x86_64-1.txz: Upgraded. extra/php80/php80-8.0.15-x86_64-1.txz: Upgraded. extra/php81/php81-8.1.2-x86_64-1.txz: Upgraded. isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
35 lines
1.6 KiB
INI
35 lines
1.6 KiB
INI
# Source code (repacked to .tar.lz):
|
|
VERSION=1.58.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=2021-12-02
|
|
BOOTSTRAP_VERSION=1.57.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
|