mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 19:29:08 +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": "6a6752681c05802deba72f718805a5b7ca9c4d3e",
|
|
"version-string": "alias",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "1dd73203e70438024236fa43f7454d160a16a8ce",
|
|
"version-string": "alias",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "3c9504519183c5f848c946e65d8b6761cc5d8ad3",
|
|
"version-string": "1.1.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "20ac26bad7571f81d5e20e880e9f1ce94251ea0e",
|
|
"version-string": "0.9.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "814f5c7ede4b9d303d857d6ba96141f2543065e1",
|
|
"version-string": "0.7.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "6577b1af95d86b562a53427d4a0f4a15adbf2023",
|
|
"version-string": "0.5.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "cb7a117efead8e2411205ef913dbb8e113e55829",
|
|
"version-string": "0.3.0",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|