vcpkg/versions/l-/live555.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

85 lines
2.2 KiB
JSON

{
"versions": [
{
"git-tree": "7d349d264f7be8a8802b521fddaa5ad047b48720",
"version-string": "latest",
"port-version": 2
},
{
"git-tree": "4bf91c8f1e61a268699d63b10f1951f1cd679a99",
"version-string": "latest-1",
"port-version": 0
},
{
"git-tree": "0c01290d6580e32b036086cbc41904f3779cfcee",
"version-string": "latest",
"port-version": 0
},
{
"git-tree": "61b213cf64ba77eb2786e705c6b17bc12faadeca",
"version-string": "2019.03.06",
"port-version": 0
},
{
"git-tree": "b01af9e8ef482c82cece0e702aab86dc9dfdf71b",
"version-string": "latest",
"port-version": 0
},
{
"git-tree": "7edd083ff7f35c87216958fe3f8616a2491f7aa3",
"version-string": "2018.08.05",
"port-version": 0
},
{
"git-tree": "31564cfcf28ec81553fa7f0628e52c519257c754",
"version-string": "2018.07.07-1",
"port-version": 0
},
{
"git-tree": "50ac47546ff0a0ad190f128237a857a1f5786e3f",
"version-string": "2018.07.07",
"port-version": 0
},
{
"git-tree": "ab2f4409a37935217e0a5db85ce679a8623bd7ef",
"version-string": "2018.07.01",
"port-version": 0
},
{
"git-tree": "53fde25d361fd0c97a6839471aef925b720c1891",
"version-string": "2018.02.28",
"port-version": 0
},
{
"git-tree": "eea0d7b760daa14510ad15948101905dbb24ea98",
"version-string": "2018.02.18",
"port-version": 0
},
{
"git-tree": "e3ecf8709660e06e789ff22d442eb159ab469eb9",
"version-string": "2018.01.29",
"port-version": 0
},
{
"git-tree": "450275fbeb22afe0ddf5f696d72a7a7b670ccb93",
"version-string": "2017.10.28",
"port-version": 0
},
{
"git-tree": "d324f940d8b95e858a0a8a59d00bd5d5f6c83cfd",
"version-string": "2017.09.12",
"port-version": 0
},
{
"git-tree": "232aa98521f1f1f7175a044560da742edfe4051d",
"version-string": "2017.06.04-1",
"port-version": 0
},
{
"git-tree": "4a61363ece685ec2c034a443119c8307fdd2092e",
"version-string": "2017.06.04",
"port-version": 0
}
]
}