mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
adcf8dd382
a/procps-ng-4.0.4-x86_64-1.txz: Upgraded. a/shadow-4.14.4-x86_64-1.txz: Upgraded. ap/man-pages-6.06-noarch-1.txz: Upgraded. ap/vim-9.1.0098-x86_64-1.txz: Upgraded. d/libgccjit-13.2.0-x86_64-1.txz: Added. If we can ship GCC's D and Modula-2 support, then we can ship this. We'll probably find a use for it. ;-) Thanks to Didier Spaier for hints on the build script. d/mercurial-6.6.3-x86_64-1.txz: Upgraded. d/rust-1.76.0-x86_64-1.txz: Upgraded. l/gegl-0.4.48-x86_64-1.txz: Upgraded. l/openexr-3.2.2-x86_64-1.txz: Upgraded. l/pango-1.51.2-x86_64-1.txz: Upgraded. l/python-calver-2022.6.26-x86_64-1.txz: Added. Needed for python-trove-classifiers. Thanks to lucabon. n/openvpn-2.6.9-x86_64-1.txz: Upgraded. xap/vim-gvim-9.1.0098-x86_64-1.txz: Upgraded. extra/rust-for-mozilla/rust-1.70.0-x86_64-4.txz: Added. Let's move this here since it's lagging behind the latest Rust.
35 lines
1.6 KiB
INI
35 lines
1.6 KiB
INI
# Source code (repacked to .tar.lz):
|
|
VERSION=1.76.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.json in the Rust sources.
|
|
exit 0
|
|
|
|
BOOTSTRAP_DATE=2023-12-28
|
|
BOOTSTRAP_VERSION=1.75.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
|