vcpkg/versions/c-/check.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

45 lines
1.1 KiB
JSON

{
"versions": [
{
"git-tree": "889eae1f6ba0c9809e6718e6b15143b65dc6394f",
"version-string": "0.15.2",
"port-version": 1
},
{
"git-tree": "5495ef66bb5b37ceabf5ddd8b7ee534f1475f3c9",
"version-string": "0.15.2",
"port-version": 0
},
{
"git-tree": "76067a985b85fd4a0223634beb2f3bbb347128c1",
"version-string": "0.14.0",
"port-version": 0
},
{
"git-tree": "ff6d53690d3f8cd7cd75844fdc95de8589947047",
"version-string": "0.13.0-2",
"port-version": 0
},
{
"git-tree": "a6737ac83c44221927230e0765a1c8f73ad65db5",
"version-string": "0.13.0-1",
"port-version": 0
},
{
"git-tree": "768d50c53e9d0546aa8fd12d18cd167f8704dd5b",
"version-string": "0.13.0",
"port-version": 0
},
{
"git-tree": "0a5b1f033d538cfee6676bcc97f0f803b1596cba",
"version-string": "0.12.0-2",
"port-version": 0
},
{
"git-tree": "cdbd554ab0647106628943194c888286191b4419",
"version-string": "0.12.0-1",
"port-version": 0
}
]
}