vcpkg/versions/q-/qt5-charts.json
Billy O'Neal b295670e4b
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 01:24:04 -07:00

85 lines
2.1 KiB
JSON

{
"versions": [
{
"git-tree": "d51381395f58fbcf7b9488c2e49708522d968ffb",
"version-string": "5.15.2",
"port-version": 1
},
{
"git-tree": "a9ad7200153301c998c296ce7f33968057c0ed55",
"version-string": "5.15.2",
"port-version": 0
},
{
"git-tree": "7fdaac31ee19bf6044c57b38a7a2eac4e59f5612",
"version-string": "5.15.1",
"port-version": 0
},
{
"git-tree": "4e9add84cc70580303d7bef69060b9cff187f482",
"version-string": "5.15.0",
"port-version": 0
},
{
"git-tree": "becb0a109c41644be24804fa8bef1ebde4ac4572",
"version-string": "5.12.8",
"port-version": 0
},
{
"git-tree": "feac1e76b4c7479e07ec7fa41e2ae288d9ecf378",
"version-string": "5.12.7",
"port-version": 0
},
{
"git-tree": "0d2dbfc467ddf22f55adba6b25c38a33019e1882",
"version-string": "5.12.5-1",
"port-version": 0
},
{
"git-tree": "20cbc59d7e2b8f7d3b5f4c921534fd31963fd699",
"version-string": "5.12.5",
"port-version": 0
},
{
"git-tree": "858671d10d7c54d501f5b57d66f4316dae3cf4c2",
"version-string": "5.12.4",
"port-version": 0
},
{
"git-tree": "7f24d3633b59fe70dac2e487089666bea6b81af2",
"version-string": "5.12.3-1",
"port-version": 0
},
{
"git-tree": "519ac005433509c920d8f33dc17295a0a43f0278",
"version-string": "5.12.3",
"port-version": 0
},
{
"git-tree": "7fbe5e5b5bd4351f2fa237673920dbb19ae40c33",
"version-string": "5.12.1",
"port-version": 0
},
{
"git-tree": "fdb8256923810375165103f746d0dc103488d33f",
"version-string": "5.12.0",
"port-version": 0
},
{
"git-tree": "b0e6783a8fcc2655bc2135870721adf766355da8",
"version-string": "5.11.2",
"port-version": 0
},
{
"git-tree": "10a0e97ae7bf9d5da8651f4fcde3d23177338b02",
"version-string": "5.11.1",
"port-version": 0
},
{
"git-tree": "15b9c3b580cd89f312ae95431b632340d26761fa",
"version-string": "5.9.2-0",
"port-version": 0
}
]
}