vcpkg/versions/n-/nethost.json

35 lines
807 B
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "4e306025f6213b286479afaf20f15ab10c5a9d51",
"version": "8.0.0",
"port-version": 0
},
{
"git-tree": "d0dbe0f8de11978aea0148c9474377cdc8e88aaf",
"version": "7.0.0",
"port-version": 0
},
{
"git-tree": "267a7f140709e65c5d692a7f3add885021764c25",
"version": "6.0.5",
"port-version": 0
},
{
"git-tree": "5b1a7d98ce2c1520bbb370dfc2fcb8c3d704c300",
"version-date": "2019-12-21",
"port-version": 2
},
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": "15d7240f68194b95c97bdac0658a1ffce7015f34",
"version-string": "2019-12-21",
"port-version": 1
},
{
"git-tree": "ca0380ac4071317e01632a0af40ffacd2ab133fd",
"version-string": "2019-12-21",
"port-version": 0
}
]
}