mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 11:49:04 +08:00
b295670e4b
``` 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 ```
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "8fae15039cc6567f087011f916a1dea07da520cf",
|
|
"version-string": "2.3.1",
|
|
"port-version": 3
|
|
},
|
|
{
|
|
"git-tree": "cda65d327fffdc14a09dee0bdcdf79d3bdad9edc",
|
|
"version-string": "2.3.1",
|
|
"port-version": 2
|
|
},
|
|
{
|
|
"git-tree": "1644070fc7960a66d96e9c3df603b81821a36f7b",
|
|
"version-string": "2.3.1",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "9caa318891b41f75fd4771938804d51b56afd346",
|
|
"version-string": "2.3.1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "41172855edfa7a82acc81cd7b520003338ab9b0f",
|
|
"version-string": "2.2.1-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "113779bfd35081b1ff56ce32fc299116824b499c",
|
|
"version-string": "2.2.1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "899a284737474a84ce97d5ea4ef22c7a21dcee42",
|
|
"version-string": "2.2.0-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "cce9089b982e496a790e423e3c17292ebf78cdca",
|
|
"version-string": "2.2.0-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "7b8010bcdba05f02aa1c8bf9e90454715289f53b",
|
|
"version-string": "2.2.0-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "948d9bf03fc33ea156def505696fd7767ef7b953",
|
|
"version-string": "2.2.0-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "2c8f184f9681218f6505ac00dff590e5cf51e6c0",
|
|
"version-string": "2.2.0",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|