mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 02:18:59 +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 ```
40 lines
947 B
JSON
40 lines
947 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "c7237c216387119d00fe5d113c6c666f1572b2f0",
|
|
"version-string": "7.5.0",
|
|
"port-version": 2
|
|
},
|
|
{
|
|
"git-tree": "1afbbcf0d6d85963a334b8ae8e95b4fe16a9ff5b",
|
|
"version-string": "7.5.0",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "0d003408ab69f77a4ca2c02de115087c87a46b27",
|
|
"version-string": "7.5.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "dc198546c1a39fc3a26f7fae34f1ca97afa94f32",
|
|
"version-string": "7.4.0",
|
|
"port-version": 3
|
|
},
|
|
{
|
|
"git-tree": "646db5b2c13e7a7a45048373edc27efcfd348dd9",
|
|
"version-string": "7.4.0",
|
|
"port-version": 2
|
|
},
|
|
{
|
|
"git-tree": "9735f1411a8eb5954d588eb13162b3b07f35726e",
|
|
"version-string": "7.4.0",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "4ffd2ac8cc350cd08652297a4959d172c1d45d6a",
|
|
"version-string": "7.4.0",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|