mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-04 08:05:34 +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
963 B
JSON
40 lines
963 B
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "9c39284ebf51443f0dc6c3291bdb7cdca973a9d2",
|
|
"version-string": "1.2.235",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "43967cb5db0fb8ca318d04639a77ae89026605b6",
|
|
"version-string": "1.2.235",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "d3a95f16ff5d0f5e92e8be76e2b453027e575604",
|
|
"version-string": "1.2.137",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "072f67a6ea4457b5982120c0459b688ccb2776e2",
|
|
"version-string": "1.2.68-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "995a0daa36f0dbcf66e12903bee9c8b7fc00f32f",
|
|
"version-string": "1.2.68",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "e491adb9e3d6aaf77e73404669006604161f6c52",
|
|
"version-string": "1.0.38-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "6e307fdd591ebac7a67f8fd239b6c54835159fd1",
|
|
"version-string": "1.0.38-1",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|