vcpkg/versions/t-/tinyxml2.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

75 lines
1.8 KiB
JSON

{
"versions": [
{
"git-tree": "6c434072d7cd45db70c50b5553673f174b981eee",
"version-string": "8.0.0",
"port-version": 2
},
{
"git-tree": "5bc723c583463d1e50ff6dcf0131328759371eeb",
"version-string": "8.0.0-1",
"port-version": 0
},
{
"git-tree": "fee03c61d547a2afac222f6e9ccd9e266a068531",
"version-string": "8.0.0",
"port-version": 0
},
{
"git-tree": "7294b585da5d53fb20b5f00767c86af62821a91e",
"version-string": "7.1.0",
"port-version": 0
},
{
"git-tree": "3b793c2a1b8911f98c358d4f86b86f3394b9d10a",
"version-string": "7.0.1-2",
"port-version": 0
},
{
"git-tree": "ca5b2e3f1a1e071088a8cf6b2fb58476a1171ca1",
"version-string": "7.0.1-1",
"port-version": 0
},
{
"git-tree": "e3134ebc61721ea449ac15ab47b2b33363722b9d",
"version-string": "7.0.1",
"port-version": 0
},
{
"git-tree": "5e7b3d1960e7e830397f6960d8952cfd536f1341",
"version-string": "6.2.0",
"port-version": 0
},
{
"git-tree": "34a39f88bdbfe177229b575c910e3f193098f870",
"version-string": "6.0.0-2",
"port-version": 0
},
{
"git-tree": "583670cefca3baa80fffa6ecf06e8abc891161c8",
"version-string": "6.0.0",
"port-version": 0
},
{
"git-tree": "bf9714823b0580f1f637928445d8f8553a79467f",
"version-string": "5.0.1-1",
"port-version": 0
},
{
"git-tree": "62be736bc18bb970c8fd34ea78766fc507f78fff",
"version-string": "5.0.1",
"port-version": 0
},
{
"git-tree": "d422b09579699139da110a843e70650587a425b9",
"version-string": "5.0.0",
"port-version": 0
},
{
"git-tree": "02bbf6dbd7a928d06d631b75fa7b6b6c7c6d10e6",
"version-string": "3.0.0",
"port-version": 0
}
]
}