Skip to content

Commit f4048b8

Browse files
author
Florian Cramer
committed
temurin-25: Make sure the manifests match those of previous LTS versions (ScoopInstaller#560)
1 parent 5f50499 commit f4048b8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

bucket/temurin25-jdk.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "Eclipse Temurin is a runtime provided by Eclipse Adoptium for general use across the Java ecosystem",
33
"homepage": "https://adoptium.net",
4-
"version": "25.0.0-36.0.LTS",
4+
"version": "25.0.0-36.0",
55
"license": "GPL-2.0-only WITH Classpath-exception-2.0",
66
"architecture": {
77
"64bit": {
@@ -17,7 +17,7 @@
1717
"checkver": {
1818
"url": "https://api.adoptium.net/v3/assets/feature_releases/25/ga?jvm_impl=hotspot&heap_size=normal&os=windows&architecture=x64&image_type=jdk&project=jdk&vendor=eclipse&page_size=1&sort_order=DESC",
1919
"script": [
20-
"$ver = (json_path $page $..version_data.semver).replace('+', '-')",
20+
"$ver = (json_path $page $..version_data.semver).replace('+', '-').replace('.LTS', '')",
2121
"$link = (json_path $page $..release_link).replace('%2B', '+')",
2222
"$name = json_path $page $..binaries[0].package.name",
2323
"Write-Output \"$ver $link $name\""
@@ -33,7 +33,7 @@
3333
},
3434
"hash": {
3535
"url": "$url.sha256.txt",
36-
"regex": "^([a-fA-F0-9]+)\\s"
36+
"find": "^([a-fA-F0-9]+)\\s"
3737
},
3838
"extract_dir": "$matchTag"
3939
}

bucket/temurin25-jre.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "Eclipse Temurin is a runtime provided by Eclipse Adoptium for general use across the Java ecosystem",
33
"homepage": "https://adoptium.net",
4-
"version": "25.0.0-36.0.LTS",
4+
"version": "25.0.0-36.0",
55
"license": "GPL-2.0-only WITH Classpath-exception-2.0",
66
"architecture": {
77
"64bit": {
@@ -17,7 +17,7 @@
1717
"checkver": {
1818
"url": "https://api.adoptium.net/v3/assets/feature_releases/25/ga?jvm_impl=hotspot&heap_size=normal&os=windows&architecture=x64&image_type=jre&project=jdk&vendor=eclipse&page_size=1&sort_order=DESC",
1919
"script": [
20-
"$ver = (json_path $page $..version_data.semver).replace('+', '-')",
20+
"$ver = (json_path $page $..version_data.semver).replace('+', '-').replace('.LTS', '')",
2121
"$link = (json_path $page $..release_link).replace('%2B', '+')",
2222
"$name = json_path $page $..binaries[0].package.name",
2323
"Write-Output \"$ver $link $name\""
@@ -33,7 +33,7 @@
3333
},
3434
"hash": {
3535
"url": "$url.sha256.txt",
36-
"regex": "^([a-fA-F0-9]+)\\s"
36+
"find": "^([a-fA-F0-9]+)\\s"
3737
},
3838
"extract_dir": "$matchTag-jre"
3939
}

0 commit comments

Comments
 (0)