vcpkg/versions/o-/openmesh.json

55 lines
1.3 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "8df48dff71b98687732978a2fa7a44083d6c9cd3",
"version": "9.0",
"port-version": 1
},
{
"git-tree": "9f2b60dff004d2b426dc0872066f651f2db6f55e",
"version": "9.0",
"port-version": 0
},
{
"git-tree": "27929cc382c7b9cba46891aeed71e44fc5e2c31a",
"version-string": "8.1",
"port-version": 3
},
{
"git-tree": "19e385c7e6a18248b06db012c7ba0a68e98921a7",
"version-string": "8.1",
"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": "c243179bd63b698826adde0be25dae93a9afd26a",
"version-string": "8.1",
"port-version": 1
},
{
"git-tree": "efdc08a5f186ff804bdcca5df533835bbe27965e",
"version-string": "8.1",
"port-version": 0
},
{
"git-tree": "8f39b4d37ab3534d21ab651e7aa7a706c66c8a74",
"version-string": "8.0-1",
"port-version": 0
},
{
"git-tree": "0e9ba778560654e7b44f1039f4787d3b15be073e",
"version-string": "8.0",
"port-version": 0
},
{
"git-tree": "795ad45391ba09eee8931c7ce39ed0c17fdd6aad",
"version-string": "7.0",
"port-version": 0
},
{
"git-tree": "4afa90fd8a11c378f7b11ee6fa865639aeee9efa",
"version-string": "6.3",
"port-version": 0
}
]
}