Skip to content

Commit

Permalink
feat: Add jextract candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
helpermethod committed May 30, 2024
1 parent a8345a6 commit d304ed1
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/main/scala/io/sdkman/changelogs/JExtractMigrations.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
package io.sdkman.changelogs

import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
import com.mongodb.client.MongoDatabase

@ChangeLog(order = "087")
class JExtractMigrations {

@ChangeSet(
order = "001",
id = "001_add_jextract_candidate",
author = "helpermethod"
)
def migration001(implicit db: MongoDatabase) =
Candidate(
candidate = "jextract",
name = "Jextract",
description =
"jextract is a tool which mechanically generates Java bindings from a native library headers.",
websiteUrl = "https://jdk.java.net/jextract/"
).insert()

@ChangeSet(
order = "002",
id = "002_add_jextract_22-jextract+5-33",
author = "helpermethod"
)
def migration002(implicit db: MongoDatabase): Unit = {
List(
(Linux64, "linux-x64"),
(MacARM64, "macos-aarch64"),
(MacOSX, "macos-x64"),
(Windows, "windows-x64")
).map {
case (platform, platformIdentifier) =>
Version(
candidate = "jextract",
version = "22-jextract+5-33",
url =
s"https://download.java.net/java/early_access/jextract/22/5/openjdk-22-jextract+5-33_${platformIdentifier}_bin.tar.gz",
platform = platform
).validate()
.insert()
}
}
}

0 comments on commit d304ed1

Please sign in to comment.