vcpkg/versions/s-/superlu.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "8187a877fbae6bdc54d5922753a1d67141576be0",
"version": "6.0.0",
"port-version": 0
},
{
"git-tree": "bcc27a8221ab0323b537025944ebc20ae56c36ac",
"version": "5.3.0",
"port-version": 1
},
{
"git-tree": "70b5d8ecd8bdca0344fc176833037b95b116219e",
"version": "5.3.0",
"port-version": 0
},
{
"git-tree": "6b8a53560265803d6b0b5b284b88abf0ae48650d",
"version-date": "2020-01-07",
"port-version": 6
},
{
"git-tree": "5bee1e0197c0e768c6ee8b9acdf815b4d46b5978",
"version-date": "2020-01-07",
"port-version": 5
},
{
"git-tree": "88c6ebaf1337aa31cf3afec8250fd7ee1b990b6e",
"version-string": "2020-01-07",
"port-version": 4
},
Bulk convert control files. (#19986) ``` function Convert-Control { Param($full) .\vcpkg.exe format-manifest $full $root = $full.Substring(0, $full.Length - 7) # CONTROL $new = $root + 'vcpkg.json' $content = Get-Content -Raw $new $asJson = ConvertFrom-Json $content -AsHashtable -Depth 100 $oldVersion = $asJson['port-version'] if ($null -eq $oldVersion) { $oldVersionFull = $asJson['version-string'] Write-Host "Got version $oldVersionFull" $match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$') if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) { $newFullVersion = [string]$match.Groups[1].Value $oldVersion = [int]$match.Groups[2].Value Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion" $newVersion = $oldVersion + 1 $asJson['version-string'] = $newFullVersion Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion" } else { Write-Host "No previous version for $full -- setting 1" $newVersion = 1 } } else { $newVersion = [int]$oldVersion + 1 Write-Host "New version for $full : $newVersion" } $asJson['port-version'] = $newVersion $content = ConvertTo-Json $asJson -Depth 100 Set-Content -Path $new -Value $content .\vcpkg.exe format-manifest $new } Get-ChildItem ports\CONTROL -Recurse | Foreach-Object { Convert-Control $_.FullName } git commit -am "this message" .\vcpkg.exe x-add-version -all git commit -a --amend ```
2021-09-09 16:24:04 +08:00
{
"git-tree": "610cdc3479021b9cf5608147a656469c0a8e7bf7",
"version-string": "2020-01-07",
"port-version": 3
},
{
"git-tree": "1899f59286e7b43ea4501c3bb20754ae728d1040",
"version-string": "2020-01-07",
"port-version": 2
},
{
"git-tree": "544d6373d779c00f07cbcb040b20d582af3451bf",
"version-string": "2020-01-07",
"port-version": 0
}
]
}