mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:49:01 +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 ```
35 lines
823 B
JSON
35 lines
823 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "0ced62e7a268f8442b2e808df7b094afe8998c38",
|
|
"version-string": "4.3.1",
|
|
"port-version": 5
|
|
},
|
|
{
|
|
"git-tree": "4c72c8aa2b715c813c70850c504385afa6566fb1",
|
|
"version-string": "4.3.1-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "6ca1bb571746cc86c33cb8c6e12d1ecb1cd61519",
|
|
"version-string": "4.3.1-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "29287e22870cc0a7d1de3f0e48a447142de2e69b",
|
|
"version-string": "4.3.1-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "c891201e16769ffb710da9a9451fe1a43932d361",
|
|
"version-string": "4.3.1-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "8a438060232d3745e251174691a68771ba52b7cb",
|
|
"version-string": "4.3.1",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|