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

60 lines
1.5 KiB
JSON

{
"versions": [
{
"git-tree": "0fab754f152f45627bbebb4629e2f508eeccb690",
"version-string": "2.0.5",
"port-version": 2
},
{
"git-tree": "681e1dd7fc4ef251e55c2befa8e4872a97a81eba",
"version-string": "2.0.5",
"port-version": 1
},
{
"git-tree": "d70dd9f203f2050c2dc6e706b5c8c027918aa71b",
"version-string": "2.0.5",
"port-version": 0
},
{
"git-tree": "d98cf43f0150c6c3aa01e1a5dbf4440272ef95b7",
"version-string": "2.0.4-1",
"port-version": 0
},
{
"git-tree": "c7cbfec355276cf917d924389a1e3d07a3b10f13",
"version-string": "2.0.4",
"port-version": 0
},
{
"git-tree": "98213e135859b8bd4611b6a93c327f3103481fa8",
"version-string": "REL_2_0_3",
"port-version": 0
},
{
"git-tree": "e70a06e2f944efb03f6578d2d7c491cd30f71e22",
"version-string": "REL_2_0_1",
"port-version": 0
},
{
"git-tree": "2e20cb61c1a03f51815c689b33c85f286e8f1b0b",
"version-string": "REL_2_0_0-RC2",
"port-version": 0
},
{
"git-tree": "5ecfcec9c096c4c4c4085cbc396a4e3e589e6b5e",
"version-string": "REL_1_2_1-RC2-1",
"port-version": 0
},
{
"git-tree": "7506fa6baeac0038729fb3f0d585310e2f01ef05",
"version-string": "REL_1_2_1-RC2",
"port-version": 0
},
{
"git-tree": "927571090ea155e68b9dcca88c1d6a0f2f37c68e",
"version-string": "1.1.3-RC7",
"port-version": 0
}
]
}