vcpkg/versions/p-/pegtl.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

65 lines
1.6 KiB
JSON

{
"versions": [
{
"git-tree": "2e4a20284dace72d0591ae48e03087333c857991",
"version-string": "3.2.0",
"port-version": 1
},
{
"git-tree": "e9d21ac506ea50664bb2c18b94f02faf3067fbc1",
"version-string": "3.2.0",
"port-version": 0
},
{
"git-tree": "d90ba3461a4253fee67f84ef2ca0232b21a4f24b",
"version-string": "3.1.0",
"port-version": 0
},
{
"git-tree": "23d4aa0b7c206ea3d4b6d32f74bb2a62e2855151",
"version-string": "2020-12-07",
"port-version": 0
},
{
"git-tree": "71d6cdd8c45bb7038a9701cd37358bfbc72c86b3",
"version-string": "3.0.0-pre-70971f4",
"port-version": 0
},
{
"git-tree": "76f73003993b31ddc2e13017c7255eb007626e41",
"version-string": "3.0.0-pre-83b6cdc",
"port-version": 0
},
{
"git-tree": "422e0eb2271db37b8bff94b1f4be79f4926b6b22",
"version-string": "3.0.0-pre-9d58962",
"port-version": 0
},
{
"git-tree": "9d2b98a3f97d8fae3538a7fd197cac3500b4c3e4",
"version-string": "3.0.0-pre-697aaa0",
"port-version": 0
},
{
"git-tree": "12b421a77d442668ddb00817a79d8e0c2605bed9",
"version-string": "3.0.0-pre",
"port-version": 0
},
{
"git-tree": "5995adbca591660d02a6a879f88347bed8076e04",
"version-string": "2.8.0",
"port-version": 0
},
{
"git-tree": "b4bacb9da64ab603810c366fc43ccdf474b9ef50",
"version-string": "2.7.1",
"port-version": 0
},
{
"git-tree": "33cefe6764e95e43f3176a0bd498c8ce69be4fe3",
"version-string": "2.6.0-1",
"port-version": 0
}
]
}