vcpkg/versions/s-/snappy.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

45 lines
1.1 KiB
JSON

{
"versions": [
{
"git-tree": "c1afd7c780a1ca8befbc3fbde0262d073afeee35",
"version-string": "1.1.8",
"port-version": 1
},
{
"git-tree": "2d47bf3d6ebccc84da5b32fadd900cf9b4b21fb7",
"version-string": "1.1.8",
"port-version": 0
},
{
"git-tree": "ea3027d934db1c7fee2243ea840152e503191f00",
"version-string": "1.1.7-2",
"port-version": 0
},
{
"git-tree": "646c81e0905949d49e7a1798d769a64345075060",
"version-string": "1.1.7-1",
"port-version": 0
},
{
"git-tree": "4650713df2896afa9f710048bcc3a9f95a1fc081",
"version-string": "1.1.7",
"port-version": 0
},
{
"git-tree": "fdab2eba86df0a616391163b40b420ffbd5c09ef",
"version-string": "1.1.6-be6dc3d",
"port-version": 0
},
{
"git-tree": "92e5482a901b1c3ba9c2a557029c475d263c817f",
"version-string": "1.1.4-1",
"port-version": 0
},
{
"git-tree": "c221837526a4596ce67d3023a28db60f80d4f0e7",
"version-string": "1.1.4",
"port-version": 0
}
]
}