vcpkg/versions/q-/qt5-websockets.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": "0ca77dc0c75bd411f1d1e51257c761e775ca341d",
"version-string": "5.15.2",
"port-version": 1
},
{
"git-tree": "dda1270f825f0a962a46a2320eb0c07ab3792fe3",
"version-string": "5.15.2",
"port-version": 0
},
{
"git-tree": "b9e183d1921cbdd06d712feb0dc810901fec6352",
"version-string": "5.15.1",
"port-version": 0
},
{
"git-tree": "f5a19676b1b6db3239b048d5b1cad7a5a9fb8791",
"version-string": "5.15.0",
"port-version": 0
},
{
"git-tree": "3bc78c8102e24d18b9f5a0aaeeac481696202a9a",
"version-string": "5.12.8",
"port-version": 0
},
{
"git-tree": "aa33d4a6ac44a4ef3501fe31c05d1007cd1c2387",
"version-string": "5.12.7",
"port-version": 0
},
{
"git-tree": "9b7a16d04060df3fc6d1e14d1c25f19c862a7969",
"version-string": "5.12.5",
"port-version": 0
},
{
"git-tree": "328d696192f6e6e52514d13534f253170529e11c",
"version-string": "5.12.4",
"port-version": 0
},
{
"git-tree": "26d587abf239a6d37914ad0f70457b0b1e0f8c5d",
"version-string": "5.12.3-1",
"port-version": 0
},
{
"git-tree": "9ee4b15384ceaa5acc59296c308ae48698c437b3",
"version-string": "5.12.3",
"port-version": 0
},
{
"git-tree": "95a2734f619d0d54670cff1a71189f5b9c738bfe",
"version-string": "5.12.1",
"port-version": 0
},
{
"git-tree": "6d558d0c7a0a90ee59997236a92ade88905a5099",
"version-string": "5.12.0",
"port-version": 0
},
{
"git-tree": "93cdbcc5012048444f5cd8fcc89f62aa29172c7b",
"version-string": "5.11.2",
"port-version": 0
},
{
"git-tree": "70de9e4b12e7feeee33c3134e351f95656f8659e",
"version-string": "5.11.1",
"port-version": 0
},
{
"git-tree": "7762e8790ba6077c45fa1f4964880a3eac90e4c6",
"version-string": "5.9.2-0",
"port-version": 0
}
]
}