mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 07:29: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 ```
30 lines
677 B
JSON
30 lines
677 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "bd15852b2fb7471ef3eb99bb1fc827627f9643f8",
|
|
"version-string": "4.3",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "98c3e72c357331f07d1d0a15b22900018aa7087d",
|
|
"version-string": "4.3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "0530780cada8626fb796739c9f65202bddedf802",
|
|
"version-string": "4.2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "322cb23762872eddf30568997c7aee3315f70bbf",
|
|
"version-string": "4.0-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "35e3bc2179899cc51d030a96f43be0c1d84de3bc",
|
|
"version-string": "4.0-2",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|