vcpkg/versions/s-/status-code.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "40d6b3bdc23cdb7de14e9f07eb229d0124b9c550",
"version-date": "2023-01-27",
"port-version": 2
},
{
"git-tree": "e920c8de8cd88a6a9f9a4d1c378c21a36759123b",
"version-date": "2023-01-27",
"port-version": 1
},
{
"git-tree": "0242a08fe7d2d12bcfcbdefe919bc9afabfdc5fd",
"version-date": "2023-01-27",
"port-version": 0
},
{
"git-tree": "b6862c7199dafad1c85c5fabb09a4842c3fa1fa3",
"version-date": "2022-09-08",
"port-version": 0
},
{
"git-tree": "acf45fde7be9ba87dd72d79d3d8f79bc639e8530",
"version-string": "1.0.0-20220104",
"port-version": 0
},
{
"git-tree": "c71af3efa61ec9c5bbb91287b610bcc561e95a47",
"version-string": "1.0.0-20211208",
"port-version": 1
},
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": "3acdd69c0d01a5041a2549a21a1d0d367efa7d53",
"version-string": "1.0.0-ab3cd821",
"port-version": 1
},
{
"git-tree": "a140621d67b58b39b6f3ab49cc0c4f1456e5a29f",
"version-string": "1.0.0-ab3cd821",
"port-version": 0
}
]
}