openjdk*: fix update check

This commit is contained in:
classabbyamp 2022-08-01 22:37:16 -04:00
parent b391af3f6f
commit 6c10876853
No known key found for this signature in database
GPG Key ID: 6BE0755918A4C7F5
7 changed files with 22 additions and 1 deletions

View File

@ -0,0 +1,3 @@
site="https://github.com/openjdk/jdk10u/tags"
pattern='jdk-\K10\.[\d.+]+(?=\.)'
version="${version//p/+}"

View File

@ -0,0 +1,2 @@
site="https://github.com/openjdk/jdk12u/tags"
pattern='jdk-\K12\.[\d.+]+(?=\.)'

View File

@ -0,0 +1,4 @@
site="https://github.com/openjdk/jdk13u/tags"
pattern='jdk-\K13\.[\d.+]+(?=\.)'
# don't need to update the bootstrap package
ignore="*"

View File

@ -0,0 +1,4 @@
site="https://github.com/openjdk/jdk14u/tags"
pattern='jdk-\K14\.[\d.+]+(?=\.)'
# don't need to update the bootstrap package
ignore="*"

View File

@ -0,0 +1,4 @@
site="https://github.com/openjdk/jdk15u/tags"
pattern='jdk-\K15\.[\d.+]+(?=\.)'
# don't need to update the bootstrap package
ignore="*"

View File

@ -0,0 +1,4 @@
site="https://github.com/openjdk/jdk16u/tags"
pattern='jdk-\K16\.[\d.+]+(?=\.)'
# don't need to update the bootstrap package
ignore="*"

View File

@ -1 +1 @@
pattern='jdk-\K17\.[\d.+]+'
pattern='jdk-\K17\.[\d.+]+(?=\.)'