development/eclipse-java: Updated for version 4.27.

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

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andrew Clemons 2023-03-22 06:37:55 +09:00 committed by Willy Sudiarto Raharjo
parent 381b92bad6
commit 6984d7078d
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 10 additions and 8 deletions

View file

@ -29,8 +29,8 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=eclipse-java
VERSION=${VERSION:-4.26}
SRCVERSION=${SRCVERSION:-2022-12-R}
VERSION=${VERSION:-4.27}
SRCVERSION=${SRCVERSION:-2023-03-R}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -58,11 +58,11 @@ mkdir -p $TMP $PKG/opt/$PRGNAM $OUTPUT
cd $PKG/opt/$PRGNAM
# Untar source code tarball according with ARCH value
# ARCH can only be 'x86_64'
if [ "$ARCH" = "x86_64" ]; then
# ARCH can only be 'x86_64' or 'aarch64'
if [ "$ARCH" = "x86_64" ] || [ "$ARCH" = "aarch64" ] ; then
tar --strip-components=1 -xvf $CWD/$PRGNAM-$SRCVERSION-linux-gtk-$ARCH.tar.gz
else
printf "$ARCH is not supported...\n"
printf "%s is not supported...\n" "$ARCH"
exit 1
fi

View file

@ -1,10 +1,12 @@
PRGNAM="eclipse-java"
VERSION="4.26"
VERSION="4.27"
HOMEPAGE="https://www.eclipse.org"
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
DOWNLOAD_x86_64="https://download.eclipse.org/technology/epp/downloads/release/2022-12/R/eclipse-java-2022-12-R-linux-gtk-x86_64.tar.gz"
MD5SUM_x86_64="3d2818e49dda3fefd90bee730ed8c5f9"
DOWNLOAD_x86_64="https://download.eclipse.org/technology/epp/downloads/release/2023-03/R/eclipse-java-2023-03-R-linux-gtk-x86_64.tar.gz \
https://download.eclipse.org/technology/epp/downloads/release/2023-03/R/eclipse-java-2023-03-R-linux-gtk-aarch64.tar.gz"
MD5SUM_x86_64="701111f7d12a432c8a9e03220c49ea78 \
9e434728b7be184890641e4749fa916f"
REQUIRES=""
MAINTAINER="Andrew Clemons"
EMAIL="andrew.clemons@gmail.com"