vcpkg/versions/l-/libigl.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": "ced3bf6b1438690d7b1b3d1f0fa40eacbc78f1ca",
"version-string": "2.2.0",
"port-version": 6
},
{
"git-tree": "09f126e97a2f0d9e76a1109d6855bbdd4cab9c9d",
"version-string": "2.2.0",
"port-version": 5
},
{
"git-tree": "d150e0cc468dec8769382b413a5c477a0682f1fd",
"version-string": "2.2.0",
"port-version": 4
},
{
"git-tree": "b953afc0875516000dd3c3e694b0d1fc788b8e19",
"version-string": "2.2.0",
"port-version": 3
},
{
"git-tree": "d12ae1d471da6da7e58a58c05cd82cbd4374ca62",
"version-string": "2.2.0",
"port-version": 2
},
{
"git-tree": "c0371b4519f4787b8e60a0a01a4622cc4b4c4925",
"version-string": "2.2.0",
"port-version": 1
},
{
"git-tree": "3f26318d49690bb4825cf755f2938afd7c02677c",
"version-string": "2.2.0",
"port-version": 0
},
{
"git-tree": "c2417ed73b6fcc0d72265da85ff542c2cfd2d036",
"version-string": "2.1.0-2",
"port-version": 0
},
{
"git-tree": "9f66721b3dbaf06d6b21878377418d6147bd4cbc",
"version-string": "2.1.0-1",
"port-version": 0
}
]
}