vcpkg/versions/s-/sdl2-ttf.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

55 lines
1.3 KiB
JSON

{
"versions": [
{
"git-tree": "888938a2d639aaa04b3e79d2ea451a87b616541c",
"version-string": "2.0.15",
"port-version": 4
},
{
"git-tree": "669c213867cc020c758a2154f8d9fdb468f4c824",
"version-string": "2.0.15-3",
"port-version": 0
},
{
"git-tree": "74a840d700fd6e64c180446bf4d117c06f09681d",
"version-string": "2.0.15-2",
"port-version": 0
},
{
"git-tree": "4ffd44bf567f529552c2368bec0a93e67f050688",
"version-string": "2.0.15-1",
"port-version": 0
},
{
"git-tree": "d58f7a0a2d4e03effcd1072cd93bc1e7f52aa59f",
"version-string": "2.0.15",
"port-version": 0
},
{
"git-tree": "cd147ea3a6b7e21ebf0d33e304625de0216ec31e",
"version-string": "2.0.14-4",
"port-version": 0
},
{
"git-tree": "d43da97f40ddabd4477b7b8abfb499815a1e3cdf",
"version-string": "2.0.14-3",
"port-version": 0
},
{
"git-tree": "1559671d1e1503582f4ff5056c6c61a5553dc854",
"version-string": "2.0.14-2",
"port-version": 0
},
{
"git-tree": "1f77b18bd32dc1b3821d605b783acd0279bcaeab",
"version-string": "2.0.14-1",
"port-version": 0
},
{
"git-tree": "11bc4b4b4652236f59aad3b9c093423f6c1c3c51",
"version-string": "2.0.14",
"port-version": 0
}
]
}