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

70 lines
1.7 KiB
JSON

{
"versions": [
{
"git-tree": "39e51839b2f67b03e0f72bf862dc44ad72bcc804",
"version-string": "5.15.2",
"port-version": 1
},
{
"git-tree": "e8fed15c2b941a90c62729ed0ec87d09a65088f6",
"version-string": "5.15.2",
"port-version": 0
},
{
"git-tree": "9c133f361a037ee2d29a0f13528cc56e19b52b8a",
"version-string": "5.15.1",
"port-version": 0
},
{
"git-tree": "dcf3a917962939ff0df7d11ee9d3960985b8263a",
"version-string": "5.15.0",
"port-version": 0
},
{
"git-tree": "2fd38b01119591ad52bd2c7636aed32880780542",
"version-string": "5.12.8",
"port-version": 0
},
{
"git-tree": "ed5df36e7f544021b554a83f1a9c4b81fdab81b0",
"version-string": "5.12.7",
"port-version": 0
},
{
"git-tree": "48b279541b2635c95924258ce7766ba6cc33ed53",
"version-string": "5.12.5-2",
"port-version": 0
},
{
"git-tree": "198c44972338fdfbe014616d54de315f80caca92",
"version-string": "5.12.5-1",
"port-version": 0
},
{
"git-tree": "d1db68848d77b317227ca942715454bc038be879",
"version-string": "5.12.5",
"port-version": 0
},
{
"git-tree": "b61dbf9266dbdc98d779935d86aeaca9c09fe845",
"version-string": "5.12.4",
"port-version": 0
},
{
"git-tree": "b6c956030a671892b755446ec2762323159a2fa9",
"version-string": "5.12.3-1",
"port-version": 0
},
{
"git-tree": "39d252c95a5b0dc81ff704932ea246a85ea27b3e",
"version-string": "5.12.3",
"port-version": 0
},
{
"git-tree": "e94ed60db636303c6f0ace5860267c7abf1a0ef2",
"version-string": "5.12.1",
"port-version": 0
}
]
}