vcpkg/versions/q-/qt5-scxml.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

80 lines
2.0 KiB
JSON

{
"versions": [
{
"git-tree": "657fa8e20641b75338667e14b696127b252fcfd5",
"version-string": "5.15.2",
"port-version": 1
},
{
"git-tree": "78995a7e46afeac5fb6e5e5dfdc40a327f7dd9fe",
"version-string": "5.15.2",
"port-version": 0
},
{
"git-tree": "88b3fdf6dae974fd1257b9ab6dbdb657080c2233",
"version-string": "5.15.1",
"port-version": 0
},
{
"git-tree": "4abaa321aeffb998e695e0480c3a2284dbac77ab",
"version-string": "5.15.0",
"port-version": 0
},
{
"git-tree": "204e4b6d12184d439962aa8c7f318a26393d1adc",
"version-string": "5.12.8",
"port-version": 0
},
{
"git-tree": "18d79e799f3c80391c34ce458e05879ff18370c7",
"version-string": "5.12.7",
"port-version": 0
},
{
"git-tree": "f6184783322633f3d75b146186b956e3fcbe0c15",
"version-string": "5.12.5",
"port-version": 0
},
{
"git-tree": "647520900a1bcd8ced59dde81573157a5a28c9e5",
"version-string": "5.12.4",
"port-version": 0
},
{
"git-tree": "6efbedba5a9b080861eea789dd4cb70358da3538",
"version-string": "5.12.3-1",
"port-version": 0
},
{
"git-tree": "353480b2680af0a7bb884cce7299667d030b97e5",
"version-string": "5.12.3",
"port-version": 0
},
{
"git-tree": "791270de8f04665a985473b036f7e4be4730dfae",
"version-string": "5.12.1",
"port-version": 0
},
{
"git-tree": "658ca9b272f0079e9ca0656a8cd789e7f9a5872a",
"version-string": "5.12.0",
"port-version": 0
},
{
"git-tree": "3d9036b01f4a7138d985edb69564391e4758998d",
"version-string": "5.11.2",
"port-version": 0
},
{
"git-tree": "626f46a39f8d6be547a73fea915f73ab1fb00d11",
"version-string": "5.11.1",
"port-version": 0
},
{
"git-tree": "844ab80b553f709005070168dd55f0e92b5a7445",
"version-string": "5.9.2-0",
"port-version": 0
}
]
}