development/bazel: Updated for version 5.3.0.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Isaac Yu 2022-08-27 21:23:18 -07:00 committed by Willy Sudiarto Raharjo
parent eeee722d7f
commit 4c97c363b8
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
2 changed files with 7 additions and 5 deletions

View File

@ -25,7 +25,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=bazel
VERSION=${VERSION:-5.2.0}
VERSION=${VERSION:-5.3.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -102,7 +102,9 @@ mkdir -p $PKG/usr/share/bash-completion/completions/bazel
mkdir -p $PKG/usr/share/zsh/site-functions/_bazel
mkdir -p $PKG/opt/bazel
# Move the bazel binary (It alone is 33MB).
# Move the bazel binary (It alone is 33MB).
# /usr/bin/bazel should not be stripped - otherwise, bazel becomes unusable:
# https://github.com/bazelbuild/bazel/issues/600
mv $TMP/$PRGNAM-$VERSION/output/bazel $PKG/usr/bin
# Copy scripts

View File

@ -1,8 +1,8 @@
PRGNAM="bazel"
VERSION="5.2.0"
VERSION="5.3.0"
HOMEPAGE="https://bazel.build/"
DOWNLOAD="https://github.com/bazelbuild/bazel/releases/download/5.2.0/bazel-5.2.0-dist.zip"
MD5SUM="1cac2d87e592743c5ceec4883ae448e4"
DOWNLOAD="https://github.com/bazelbuild/bazel/releases/download/5.3.0/bazel-5.3.0-dist.zip"
MD5SUM="b65a120239e1ce6938b63863fb3ed6bb"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="zulu-openjdk11"