mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 12: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 ```
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "1ad13c203a854aeb411f66b4f8e083882d7415cd",
|
|
"version-string": "2.12.0",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "d451e8108a8ac3305fda61e441505d6244260329",
|
|
"version-string": "2.12.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "4eb08152bc0a1ba92fdff5844c3181efd7374765",
|
|
"version-string": "2.9.0-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "3fa16ba6900d9ddce5f2b5c7c807e1501bebe84f",
|
|
"version-string": "2.9.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "775839495211e69907a217fe3443897e4ddf0e16",
|
|
"version-string": "2.8.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "04e5bee0904e5e1277ca5287ffc591b6e06f6711",
|
|
"version-string": "2.7.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "84836e89d33907828ea8481de27d0e42842c2873",
|
|
"version-string": "2.5.2-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "ba146ce08b03e85b46ba478826e2d10386778817",
|
|
"version-string": "2.5.2-1",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|