Skip to content

Commit

Permalink
Merge pull request #15182 from rgacogne/ddist19-backport-15164
Browse files Browse the repository at this point in the history
dnsdist-1.9.x: Update Rust to 1.84.1 for our packages
  • Loading branch information
rgacogne authored Feb 20, 2025
2 parents 0126083 + ad99275 commit d813a67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions builder-support/helpers/install_rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ $# -ge 1 ]; then
fi

SITE=https://downloads.powerdns.com/rust
RUST_TARBALL=$RUST_VERSION.tar.gz
RUST_TARBALL=$RUST_VERSION.tar.xz

SHA256SUM_x86_64=$(jq -r .SHA256SUM_x86_64 < rust.json)
SHA256SUM_aarch64=$(jq -r .SHA256SUM_aarch64 < rust.json)
Expand All @@ -41,7 +41,8 @@ echo $0: Expecting hash $VALUE
curl -f -o $RUST_TARBALL $SITE/$RUST_TARBALL
# Line below should echo two spaces between digest and name
echo $VALUE" "$RUST_TARBALL | sha256sum -c -
tar -zxf $RUST_TARBALL
rm -rf $RUST_VERSION
tar -Jxf $RUST_TARBALL
cd $RUST_VERSION
./install.sh --prefix=/usr
cd ..
Expand Down
6 changes: 3 additions & 3 deletions builder-support/helpers/rust.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "1.78.0",
"version": "1.84.1",
"license": "MIT",
"publisher": "https://www.rust-lang.org/",
"SHA256SUM_x86_64": "1377999f189d328ec183676c0e69f21af16e450f8d67f10d1f6cf746951a1d64",
"SHA256SUM_aarch64": "a76e6b659e9948f2bbd9d1c99b45348c3729bac7003d5f5b7fb5cacddb2bfcc1"
"SHA256SUM_x86_64": "e4f3331794f1a32c56f837030912d80b5a3d9669f4b497c91611d65bd6ada97b",
"SHA256SUM_aarch64": "5a4549888504a1a2336d6f6210af945a2c772b487555c432fa1fa08ea72e5b6a"
}

0 comments on commit d813a67

Please sign in to comment.