vcpkg/versions/i-/inih.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.0 KiB
JSON

{
"versions": [
{
"git-tree": "de1d85a0ea62e95bd096ecff062115646742cf1e",
"version-string": "51",
"port-version": 1
},
{
"git-tree": "ca47d6341b0674f1473717bc8f6df7ce0922e8da",
"version-string": "51",
"port-version": 0
},
{
"git-tree": "4f1c00eb929f01703965877dc262cdaf967d2b35",
"version-string": "47",
"port-version": 0
},
{
"git-tree": "33d682392c4eb31eefa3d8788f1920509d0aa1aa",
"version-string": "45",
"port-version": 0
},
{
"git-tree": "90a92e5be19a788fcc7ce653e8caa0e22fdc7fb5",
"version-string": "44",
"port-version": 0
},
{
"git-tree": "e971c34f4334937d4382805ab24b6308c0b60495",
"version-string": "43",
"port-version": 0
},
{
"git-tree": "2225a5a48c72afbf0c5f8146691474aa121ff795",
"version-string": "42-1",
"port-version": 0
},
{
"git-tree": "7c1d8d5ec1ee664791e99ce714d946445e43aa38",
"version-string": "42",
"port-version": 0
}
]
}