vcpkg/versions/c-/clp.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

50 lines
1.2 KiB
JSON

{
"versions": [
{
"git-tree": "ba7ecebb114207f66009451eb56f4d778f46ef91",
"version-string": "1.17.6",
"port-version": 1
},
{
"git-tree": "a0176c86ad90803b7bbf0327edbbfc8c48d4407e",
"version-string": "1.17.6",
"port-version": 0
},
{
"git-tree": "46976cb32fcdc6d89e76591f1c82f7004baeac1b",
"version-string": "1.17.5",
"port-version": 0
},
{
"git-tree": "9ced0062a007a5831bd6374bdccc2bd51c33287e",
"version-string": "1.17.3",
"port-version": 0
},
{
"git-tree": "0f46d76811ffad1a4b2b3f835a058aebeccde0de",
"version-string": "1.17.2-2",
"port-version": 0
},
{
"git-tree": "0484f61cd4d1962b0c346ca6e3fc4f35cf32bff1",
"version-string": "1.17.2-1",
"port-version": 0
},
{
"git-tree": "000fc62fa341573f5cd780d3ce52a2f0d173a4eb",
"version-string": "1.17.2",
"port-version": 0
},
{
"git-tree": "f696708a0c8ec58bb76de608ccd9de42b87449e0",
"version-string": "1.16.11-1",
"port-version": 0
},
{
"git-tree": "f91480cbc57442e18fc1ce033283cc6d2be87bfd",
"version-string": "1.16.11-0",
"port-version": 0
}
]
}