mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 22:39:07 +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
967 B
JSON
40 lines
967 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "38bd9d397f3ba4e227f09a36ecb0af034f5f0c98",
|
|
"version-string": "1.12.10",
|
|
"port-version": 8
|
|
},
|
|
{
|
|
"git-tree": "8b4976feec333064ba50d96cfa8458afeb01783c",
|
|
"version-string": "1.12.10",
|
|
"port-version": 7
|
|
},
|
|
{
|
|
"git-tree": "158a498ff4af7528dff7ee004306dce22185614d",
|
|
"version-string": "1.12.10",
|
|
"port-version": 6
|
|
},
|
|
{
|
|
"git-tree": "4c5e66ee76c9fb2085dbddf9a2385b36692922f7",
|
|
"version-string": "1.12.10-5",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "961bb91b13917046cc3bfb186b6bf337ce05e3aa",
|
|
"version-string": "1.12.10-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "d52359ab326c4e66c077370c0d3577be4d7600ac",
|
|
"version-string": "1.12.10-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "1e332ae8d98b3fab07d5d10323bf90d9760a1828",
|
|
"version-string": "1.12.10",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|