vcpkg/versions/q-/quickfix.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "08f8b2eb6b5493a1faae9707021fe1d287ed6fa5",
"version": "1.15.1",
"port-version": 9
},
{
"git-tree": "a8cdc0c05fb161bb28059f93d8dc05ea60d4c118",
"version": "1.15.1",
"port-version": 8
},
{
"git-tree": "73e9e7e7bcc08f6f0f491d68cd2ff93f5571353f",
"version": "1.15.1",
"port-version": 7
},
{
"git-tree": "a9ec8c3d5dfd310a3f5d5c54bebc6030b4cad0c6",
"version": "1.15.1",
"port-version": 6
},
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": "d374a1da06a6765ceeb510d6b65afd8ee97194ad",
"version-string": "1.15.1",
"port-version": 5
},
{
"git-tree": "bff808505ccbbce1357d1998e69fe4813e21177d",
"version-string": "1.15.1-4",
"port-version": 0
},
{
"git-tree": "ad83e53295095f49ece0f08d5d519068567ccfff",
"version-string": "1.15.1-3",
"port-version": 0
},
{
"git-tree": "5c6b4024c833ce5fe546811f4cb2e0729df397aa",
"version-string": "1.15.1-1",
"port-version": 0
},
{
"git-tree": "925d15651a46667fadbc93686ddc7ceb415be83d",
"version-string": "1.15.1",
"port-version": 0
}
]
}