Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

openjdk17-graalvm: no longer supported #26262

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions java/openjdk17-graalvm/Portfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

Check warning on line 1 in java/openjdk17-graalvm/Portfile

View workflow job for this annotation

GitHub Actions / macos-13

port test openjdk17-graalvm-native-image: Warning: openjdk17-graalvm-native-image is configured to build for the architecture(s) 'x86_64', but did not install any Mach-O files.

Check warning on line 1 in java/openjdk17-graalvm/Portfile

View workflow job for this annotation

GitHub Actions / macos-12

port test openjdk17-graalvm-native-image: Warning: openjdk17-graalvm-native-image is configured to build for the architecture(s) 'x86_64', but did not install any Mach-O files.

Check warning on line 1 in java/openjdk17-graalvm/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test openjdk17-graalvm-native-image: Warning: openjdk17-graalvm-native-image is configured to build for the architecture(s) 'arm64', but did not install any Mach-O files.

Check warning on line 1 in java/openjdk17-graalvm/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port test openjdk17-graalvm-native-image: Warning: openjdk17-graalvm-native-image is configured to build for the architecture(s) 'arm64', but did not install any Mach-O files.

PortSystem 1.0

name openjdk17-graalvm
set feature 17
name openjdk${feature}-graalvm
categories java devel
maintainers {breun.nl:nils @breun} openmaintainer
maintainers nomaintainer
platforms {darwin any}
# This port uses prebuilt binaries; 'NoMirror' makes sure MacPorts doesn't mirror/distribute these third-party binaries
license GPL-2 NoMirror
Expand All @@ -14,7 +15,7 @@
# https://github.com/graalvm/graalvm-ce-builds/releases
supported_archs x86_64 arm64

version 17.0.9
version ${feature}.0.9
set build 9
revision 0
epoch 1
Expand All @@ -32,9 +33,10 @@
set jdk ${jvms}/${name}

if {${subport} eq ${name}} {
description GraalVM Community Edition based on OpenJDK 17
description GraalVM Community Edition based on OpenJDK ${feature}
long_description GraalVM is a universal virtual machine for running applications written in JavaScript, Python, Ruby, R,\
JVM-based languages like Java, Scala, Groovy, Kotlin, Clojure, and LLVM-based languages such as C and C++.
JVM-based languages like Java, Scala, Groovy, Kotlin, Clojure, and LLVM-based languages such as C and C++.\
Version ${feature} of GraalVM Community Edition is no longer getting updates, so consider upgrading to a maintained version.

if {${configure.build_arch} eq "x86_64"} {
distname graalvm-community-jdk-${version}_macos-x64_bin
Expand Down
Loading