development/eclipse-cpp: Updated for version 4.12.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
This commit is contained in:
Andrew Clemons 2019-06-23 16:19:33 +12:00 committed by Willy Sudiarto Raharjo
parent 3d32d7ea5a
commit 43721ccb61
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 6 additions and 9 deletions

View file

@ -1,14 +1,11 @@
config() {
NEW="$1"
OLD="$(dirname $NEW)/$(basename $NEW .new)"
# If there's no config file by that name, mv it over:
if [ ! -r $OLD ]; then
mv $NEW $OLD
elif [ "$(cat $OLD|md5sum)" = "$(cat $NEW|md5sum)" ]; then
# toss the redundant copy
elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
rm $NEW
fi
# Otherwise, we leave the .new copy for the admin to consider...
}
if [ -x /usr/bin/update-desktop-database ]; then

View file

@ -27,8 +27,8 @@
# This script is just a binary repackaging.
PRGNAM=eclipse-cpp
VERSION=${VERSION:-201903}
SRCVERSION=${SRCVERSION:-2019-03-R}
VERSION=${VERSION:-4.12}
SRCVERSION=${SRCVERSION:-2019-06-R}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}

View file

@ -1,10 +1,10 @@
PRGNAM="eclipse-cpp"
VERSION="201903"
VERSION="4.12"
HOMEPAGE="http://www.eclipse.org"
DOWNLOAD="UNSUPPORTED"
MD5SUM=""
DOWNLOAD_x86_64="http://download.eclipse.org/technology/epp/downloads/release/2019-03/R/eclipse-cpp-2019-03-R-linux-gtk-x86_64.tar.gz"
MD5SUM_x86_64="87ecc2410a4175ab0f016811f433664c"
DOWNLOAD_x86_64="http://download.eclipse.org/technology/epp/downloads/release/2019-06/R/eclipse-cpp-2019-06-R-linux-gtk-x86_64.tar.gz"
MD5SUM_x86_64="6eccf433b04e55d51685228e856d63ed"
REQUIRES="jdk webkit2gtk"
MAINTAINER="Andrew Clemons"
EMAIL="andrew.clemons@gmail.com"