vcpkg/versions/a-/akali.json

45 lines
1.0 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "5e97f0348cd1def4c594fda413436a01609923ec",
"version": "1.43",
"port-version": 0
},
{
"git-tree": "44ab167f077406e598eb19f7e48f10b638bc1547",
"version-string": "1.42",
"port-version": 3
},
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": "1b94b1623b0778525e405410cee7d6d069ac56ca",
"version-string": "1.42",
"port-version": 2
},
{
"git-tree": "29f022ed905404ee53af3197de0f01afb22c15dd",
"version-string": "1.42",
"port-version": 1
},
{
"git-tree": "853f2563be7dfce5e0d8cd341b6d7bb0bc168dc3",
"version-string": "1.42",
"port-version": 0
},
{
"git-tree": "1ad229b03a2a137effc57a038a0483d0bcf923b2",
"version-string": "1.41",
"port-version": 1
},
{
"git-tree": "0308674259f709ce412a0a960fd014cffecdfd08",
"version-string": "1.41",
"port-version": 0
},
{
"git-tree": "4234ffec7e9a98ba5950636e8930c29b52f4e03d",
"version-string": "1.39",
"port-version": 0
}
]
}