vcpkg/versions/a-/asmjit.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

65 lines
1.7 KiB
JSON

{
"versions": [
{
"git-tree": "beb9e328e4d8c0575319af439ec4f810cf0bfa40",
"version-string": "2020-09-14",
"port-version": 1
},
{
"git-tree": "ce18730abf423893475a9addc5c55cea38964e0b",
"version-string": "2020-09-14",
"port-version": 0
},
{
"git-tree": "fa0c36ba15b48959ab5a2df3463299e1d2473b6f",
"version-string": "2020-07-22",
"port-version": 0
},
{
"git-tree": "39200e33a095d15021817855a9fefa990ab7d2e4",
"version-string": "2020-05-08",
"port-version": 0
},
{
"git-tree": "5bca13a7f4b836d2374bda5fa0efffd111605173",
"version-string": "2020-02-08",
"port-version": 0
},
{
"git-tree": "6d945eeaa2d16fee0d06c8aa24fc68ea311ce972",
"version-string": "2020-01-20",
"port-version": 0
},
{
"git-tree": "36ac008bddeab18b7a6624d32650ebbebcd48542",
"version-string": "2019-07-11",
"port-version": 0
},
{
"git-tree": "c8f517fbc415e6e0025d4f75f3bc94bc08552f6b",
"version-string": "2019-03-29",
"port-version": 0
},
{
"git-tree": "d69f0c00009f2dfabf734adbc695f200feae82d9",
"version-string": "2019-01-30",
"port-version": 0
},
{
"git-tree": "d880c763130f58ffe017d06af086668cfd0c03f4",
"version-string": "2018-12-14",
"port-version": 0
},
{
"git-tree": "40297c743469da0422db8bebed32b15aa2e6de19",
"version-string": "2018-11-08",
"port-version": 0
},
{
"git-tree": "ab02180a87128ab2f2cee98de3c7ed8ed0ff4fbc",
"version-string": "673dcefaa048c5f5a2bf8b85daf8f7b9978d018a",
"port-version": 0
}
]
}