vcpkg/versions/e-/evpp.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

55 lines
1.3 KiB
JSON

{
"versions": [
{
"git-tree": "b312644fb2498483feb3114cef2c8afaa44f45ed",
"version-string": "0.7.0",
"port-version": 5
},
{
"git-tree": "f460fd6d64355ccd3ed62d95e79485161aafba85",
"version-string": "0.7.0",
"port-version": 4
},
{
"git-tree": "7c904d1be94626ab05c89e7c5933a47201e43df1",
"version-string": "0.7.0-3",
"port-version": 0
},
{
"git-tree": "3bc50223ad9b30e894381b064c7ba993da989eca",
"version-string": "0.7.0-2",
"port-version": 0
},
{
"git-tree": "10cf6e09e690d2c55e36007fa37b330a2fdcf14f",
"version-string": "0.7.0-1",
"port-version": 0
},
{
"git-tree": "485bb830fca08799ba9b190aaaf4ca037a2d957a",
"version-string": "0.7.0",
"port-version": 0
},
{
"git-tree": "68c5c0899b17a9e9250ed4123e098aef0b6adace",
"version-string": "0.6.1-2",
"port-version": 0
},
{
"git-tree": "d8ccbe116f8f3330e529c0956689db40495ef816",
"version-string": "0.6.1-1",
"port-version": 0
},
{
"git-tree": "5853a9c8c20656a6663c8b730756a13a58bac480",
"version-string": "0.6.1",
"port-version": 0
},
{
"git-tree": "dad9af676427555291736c096d859d075052128f",
"version-string": "0.5.0",
"port-version": 0
}
]
}