-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Oliver Weiler
committed
May 30, 2024
1 parent
a8345a6
commit d304ed1
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
src/main/scala/io/sdkman/changelogs/JExtractMigrations.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
} | ||
} | ||
} |