vcpkg/versions/o-/ode.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

40 lines
959 B
JSON

{
"versions": [
{
"git-tree": "1b4c24af36c99cf547f0a2026062a91d1d78f90a",
"version-string": "0.16.1",
"port-version": 1
},
{
"git-tree": "b8276cb76d86e838d84606657d6f37d5cde4a814",
"version-string": "0.16.1",
"port-version": 0
},
{
"git-tree": "622b0c4b552b3d5a3fc6a923ca98a37cc63ef11c",
"version-string": "0.16",
"port-version": 0
},
{
"git-tree": "5e7e422b0fe6d25030996079c87674d79c9bfb48",
"version-string": "0.15.1-3",
"port-version": 0
},
{
"git-tree": "4b628152d3e7a0fffc8f1423dae943dfec093c80",
"version-string": "0.15.1-2",
"port-version": 0
},
{
"git-tree": "be21a2b289a50a1f25817444841b59c7a70df4e8",
"version-string": "0.15.1-1",
"port-version": 0
},
{
"git-tree": "72650f9d4fd9298f4e4c1025300fd176be2fcbb6",
"version-string": "0.15.1 ",
"port-version": 0
}
]
}