development/zulu-openjdk8: Updated for version 8.0.312

Signed-off-by: Gustavo Brondani Schenkel <gustavo.schenkel@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Gustavo B. Schenkel 2021-08-19 02:40:20 -03:00 committed by Willy Sudiarto Raharjo
parent 7ad48d846f
commit 122ac9bed1
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with 21 additions and 23 deletions

View File

@ -14,6 +14,6 @@ zulu-openjdk8: Java components needed to build and run Java SE applications. Zul
zulu-openjdk8: has been verified by passing all tests in the Java SE 8 version of zulu-openjdk8: has been verified by passing all tests in the Java SE 8 version of
zulu-openjdk8: the OpenJDK Community Technology Compatibility Kit (TCK). zulu-openjdk8: the OpenJDK Community Technology Compatibility Kit (TCK).
zulu-openjdk8: zulu-openjdk8:
zulu-openjdk8: http://zulu.org/ zulu-openjdk8: https://www.azul.com/downloads/
zulu-openjdk8: zulu-openjdk8:
zulu-openjdk8: zulu-openjdk8:

View File

@ -25,26 +25,19 @@
cd $(dirname $0) ; CWD=$(pwd) cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=zulu-openjdk8 PRGNAM=zulu-openjdk8
VERSION=${VERSION:-8.0.232} VERSION=${VERSION:-8.0.312}
ZULUVERSION=${ZULUVERSION:-8.42.0.23} ZULUVERSION=${ZULUVERSION:-8.58.0.13}
BUILD=${BUILD:-1} BUILD=${BUILD:-1}
TAG=${TAG:-_SBo} TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz} PKGTYPE=${PKGTYPE:-tgz}
# The name of azul's zulu openjdk source archive has the syntax below : if [ -z "$ARCH" ]; then
# case "$( uname -m )" in
# zulu<ZULU_VERSION>-jdk<JDK_VERSION>-linux_x64 i?86) ARCH=i686 ;;
# x86_64) ARCH=x64 ;;
# Note: The archive's name is also the name of the top directory found esac
# in this archive. fi
#
SRCNAM=zulu${ZULUVERSION}-ca-jdk${VERSION}-linux_x64
ARCH=${ARCH:-$(uname -m)}
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0 exit 0
@ -54,7 +47,10 @@ TMP=${TMP:-/tmp/SBo}
PKG=${TMP}/package-${PRGNAM} PKG=${TMP}/package-${PRGNAM}
OUTPUT=${OUTPUT:-/tmp} OUTPUT=${OUTPUT:-/tmp}
if [ "${ARCH}" = "x86_64" ] ; then if [ "$ARCH" = "i686" ]; then
LIB_ARCH=i686
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x64" ]; then
LIB_ARCH=amd64 LIB_ARCH=amd64
LIBDIRSUFFIX="64" LIBDIRSUFFIX="64"
else else
@ -62,6 +58,8 @@ else
exit 1 exit 1
fi fi
SRCNAM=zulu${ZULUVERSION}-ca-jdk${VERSION}-linux_$ARCH
set -e set -e
rm -rf $PKG rm -rf $PKG

View File

@ -1,10 +1,10 @@
PRGNAM="zulu-openjdk8" PRGNAM="zulu-openjdk8"
VERSION="8.0.232" VERSION="8.0.312"
HOMEPAGE="http://zulu.org" HOMEPAGE="https://www.azul.com/download"
DOWNLOAD="UNSUPPORTED" DOWNLOAD="https://cdn.azul.com/zulu/bin/zulu8.58.0.13-ca-jdk8.0.312-linux_i686.tar.gz"
MD5SUM="" MD5SUM="f159e209bfea659582ee5c66d46e5a78"
DOWNLOAD_x86_64="https://cdn.azul.com/zulu/bin/zulu8.42.0.23-ca-jdk8.0.232-linux_x64.tar.gz" DOWNLOAD_x86_64="https://cdn.azul.com/zulu/bin/zulu8.58.0.13-ca-jdk8.0.312-linux_x64.tar.gz"
MD5SUM_x86_64="755a1e9b77f76d4a6012e4d104a59200" MD5SUM_x86_64="db82cf071e9bb6943e76761a93079f36"
REQUIRES="" REQUIRES=""
MAINTAINER="Sébastien Ballet" MAINTAINER="Sébastien Ballet"
EMAIL="slacker6896@gmail.com" EMAIL="slacker6896@gmail.com"