Package Details: graal-bin 19.3.0-1

Git Clone URL: https://aur.archlinux.org/graal-bin.git (read-only, click to copy)
Package Base: graal-bin
Description: Virtual package for backwards compatibility; please directly install jdk8-graalvm-bin instead
Upstream URL: https://www.graalvm.org/
Licenses: custom
Conflicts: graal
Provides: graal
Submitter: lucaswerkmeister
Maintainer: lucaswerkmeister
Last Packager: lucaswerkmeister
Votes: 18
Popularity: 0.000000
First Submitted: 2018-05-02 22:30 (UTC)
Last Updated: 2019-11-27 09:59 (UTC)

Dependencies (2)

Required by (1)

Sources (0)

Pinned Comments

lucaswerkmeister commented on 2019-11-25 00:24 (UTC)

Okay, the GraalVM 19.3.0 update should be done. This is now a virtual package, please explicitly install jdk8-graalvm-bin instead – or jdk11-graalvm-bin (or both). The same goes for all sibling packages (FastR, TruffleRuby, GraalPython, native-image) – the old packages have been retained and depend on the jdk8 version of the new package now, but please install the jdk8 and/or jdk11 packages explicitly, I’ll remove the old names eventually.

Latest Comments

« First ‹ Previous 1 2 3 4

lucaswerkmeister commented on 2018-06-15 09:36 (UTC)

Okay, finally updated. (Sorry it took so long – I was having some unrelated makepkg problems.)

lucaswerkmeister commented on 2018-06-07 08:55 (UTC)

Thanks for the patch @char101, that makes my life a bit simpler :) I’d like to credit you as the git author of the commit to update PKGBUILD, should I use any particular name or email address?

char101 commented on 2018-06-07 04:37 (UTC) (edited on 2018-06-07 04:37 (UTC) by char101)

rc2 is available

diff --git a/PKGBUILD b/PKGBUILD
index 8bb6b3b..2113e01 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@

 pkgname_=graal
 pkgname=${pkgname_}-bin
-pkgver_=1.0.0-rc1
+pkgver_=1.0.0-rc2
 pkgver=${pkgver_/-/_}
 pkgrel=1
 pkgdesc='Universal virtual machine for running applications written in a variety of languages (JVM-based, LLVM-based, or other)'
@@ -17,11 +17,11 @@ provides=('java-environment=8' "$pkgname_")
 conflicts=("$pkgname_")
 install="$pkgname.install"
 source=("https://github.com/oracle/$pkgname_/releases/download/vm-${pkgver_}/graalvm-ce-${pkgver_}-linux-amd64.tar.gz")
-sha256sums=('08474e5b934e44f515df6c0449289b20b26990a9fc45fe0a58901d181117e009')
+sha256sums=('3f0175db4271a230777e21cf5ecc718a1e19bc7c4d2669af6b6c69605a21ff94')

 package() {
-    cd "${pkgname_}vm-${pkgver_}"
+    cd "${pkgname_}vm-ce-${pkgver_}"
     mkdir -p "$pkgdir/usr/lib/jvm/java-8-graal/"
     cp -a -t "$pkgdir/usr/lib/jvm/java-8-graal/" *
-    install -Dm644 GraalCE_license_3rd_party_license.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+    install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/"
 }