vcpkg/versions/p-/ppconsul.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
939 B
JSON

{
"versions": [
{
"git-tree": "8c7383164dcbe93141eb683eeeb362381ebbd4cd",
"version-string": "0.5",
"port-version": 2
},
{
"git-tree": "8d87f4681edc04101293dceede444307d3b3e4da",
"version-string": "0.5-1",
"port-version": 0
},
{
"git-tree": "d73d0eccdded9b4d4e17a0e06e9fdaa48fe8bd88",
"version-string": "0.5",
"port-version": 0
},
{
"git-tree": "b102c1f7fb7563dab481fbb4e82a63170e784608",
"version-string": "0.4-1",
"port-version": 0
},
{
"git-tree": "2dfb691c0d203d99ae04525884e47f1bd150ba36",
"version-string": "0.4",
"port-version": 0
},
{
"git-tree": "655faaaa2419231047daafa3fd94e23ad1801820",
"version-string": "0.3-1",
"port-version": 0
},
{
"git-tree": "3414a1308998fdd15ff0251bef046bd8f560cd4e",
"version-string": "0.3",
"port-version": 0
}
]
}