vcpkg/versions/m-/magic-enum.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

75 lines
1.8 KiB
JSON

{
"versions": [
{
"git-tree": "1962d2e544199e80b56432fb1bd1e28c12cca3ad",
"version-string": "0.7.3",
"port-version": 1
},
{
"git-tree": "5ddbd41c3a32fa08982b2cf8eb7f3c13c77354d4",
"version-string": "0.7.3",
"port-version": 0
},
{
"git-tree": "237d596c8e4341629912912346075a1d9f65096b",
"version-string": "0.7.2",
"port-version": 0
},
{
"git-tree": "b216fb15c94a2693a2fe1f7fa350a8f13d11f53f",
"version-string": "0.7.1",
"port-version": 0
},
{
"git-tree": "22e4f23572623410198917e263553086bcdf05af",
"version-string": "0.7.0",
"port-version": 0
},
{
"git-tree": "5969ce706dd59741d9ae9eef263775b456cbf75b",
"version-string": "0.6.6",
"port-version": 0
},
{
"git-tree": "6a1a5fb4e28b1c21384e01e1ab465398714724fd",
"version-string": "0.6.5",
"port-version": 0
},
{
"git-tree": "5d3dc2a8e966b1673ce16dffcbdff234c240e15b",
"version-string": "0.6.4",
"port-version": 0
},
{
"git-tree": "3e75787af06b6b5e379fc8144da8ef26438a795e",
"version-string": "0.6.3-1",
"port-version": 0
},
{
"git-tree": "8e70ccbe2f7a69757557e0ec507bffea76c08aff",
"version-string": "0.6.3",
"port-version": 0
},
{
"git-tree": "7b9bf2459f62938a8c673abdfdd4d4ab40c01140",
"version-string": "0.6.2",
"port-version": 0
},
{
"git-tree": "e5b6e9d9490b85a012f6f5fb53c59861a682e3b4",
"version-string": "0.6.1",
"port-version": 0
},
{
"git-tree": "eb40f34e2c5067e78a1263fd17d37c9303ec5748",
"version-string": "0.6.0",
"port-version": 0
},
{
"git-tree": "5cc4286c69a528902c5bbab5398c7e5aec160c90",
"version-string": "2019-06-07",
"port-version": 0
}
]
}