vcpkg/versions/g-/gsl.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": "4754262f449ca9f2d46d597c6b1da89504b7ac08",
"version-string": "2.6",
"port-version": 2
},
{
"git-tree": "da6e274c9febfeb37b716f136cbf43225c55d997",
"version-string": "2.6",
"port-version": 1
},
{
"git-tree": "a102b1a49d711cdf9b8cfe4bc1e06836dc2c2423",
"version-string": "2.6",
"port-version": 0
},
{
"git-tree": "c6689303d23d4842b8e05790ebf2d1c0461437b1",
"version-string": "2.4-5",
"port-version": 0
},
{
"git-tree": "a9ffe7894b0178b9882932547b1762f8f254fe1a",
"version-string": "2.4-4",
"port-version": 0
},
{
"git-tree": "3c7e304f8df732b5e1c0917bc3d2c46671416382",
"version-string": "2.4-3",
"port-version": 0
},
{
"git-tree": "2b64b4b83e13130bce0662cf2db9a5e74029b537",
"version-string": "2.4-2",
"port-version": 0
},
{
"git-tree": "076b7fb7f496e8786cf0d86580f15ff0f83d85a1",
"version-string": "2.4-1",
"port-version": 0
},
{
"git-tree": "b96222d7cfea143d249b116d125f32827c39ffc6",
"version-string": "2.3-2",
"port-version": 0
},
{
"git-tree": "84f3ee603381282005bdd2858e21f57c2462dedd",
"version-string": "2.3-1",
"port-version": 0
},
{
"git-tree": "801c2bb3d96697ff371628d492715c0766faed24",
"version-string": "2.3",
"port-version": 0
},
{
"git-tree": "5fb729245794cb443bc51644ec131f1e5938c0e4",
"version-string": "20170425-8b320e3f5d016f953e55dfc7ec8694c1349d3fe4",
"port-version": 0
},
{
"git-tree": "b7972852cc97a2565472489d6ad30fd7d3f1c977",
"version-string": "0-fd5ad87bf",
"port-version": 0
}
]
}