mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
6b5ab0b4ab
a/btrfs-progs-6.8-x86_64-1.txz: Upgraded. a/gpm-1.20.7-x86_64-10.txz: Rebuilt. Clean up the compile fix patch omitting the Emacs Lisp file. Clean up and apply the weak-wgetch patch. Build using the option --without-curses. Thanks to qunying. a/util-linux-2.40-x86_64-1.txz: Upgraded. This release fixes a vulnerability where the wall command did not filter escape sequences from command line arguments, allowing unprivileged users to put arbitrary text on other users terminals. For more information, see: https://www.cve.org/CVERecord?id=CVE-2024-28085 (* Security fix *) d/rust-1.77.1-x86_64-1.txz: Upgraded. l/fluidsynth-2.3.5-x86_64-1.txz: Upgraded. l/protobuf-26.1-x86_64-1.txz: Upgraded. l/python-build-1.2.1-x86_64-1.txz: Upgraded. n/samba-4.20.0-x86_64-1.txz: Upgraded. x/mesa-24.0.4-x86_64-1.txz: Upgraded. xap/seamonkey-2.53.18.2-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.18.2 (* Security fix *)
35 lines
1.6 KiB
INI
35 lines
1.6 KiB
INI
# Source code (repacked to .tar.lz):
|
|
VERSION=1.77.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=2024-02-08
|
|
BOOTSTRAP_VERSION=1.76.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
|