mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 11:41:36 +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 ```
60 lines
1.5 KiB
JSON
60 lines
1.5 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "40171bc92f5cead1423ede203de8ad2752cb16b8",
|
|
"version-string": "2.2.5",
|
|
"port-version": 5
|
|
},
|
|
{
|
|
"git-tree": "4b7ae023feb1082b88dfef98ddf7fe214e04f150",
|
|
"version-string": "2.2.5-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "81a734cda6ec896face24be96a430d97f1ab383f",
|
|
"version-string": "2.2.5-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "8b640bf33b8ba3766d7bc6db5a72a9f8a4ceea6b",
|
|
"version-string": "2.2.5-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "8bd87c35f834a67249de3660145b9de5777932e7",
|
|
"version-string": "2.2.5-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "e190b4414238d958e52f52f1a07ddbfd647c6a1d",
|
|
"version-string": "2.2.5",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "437ce4fdf79a521c14d9db4836dc172a3c223388",
|
|
"version-string": "2.2.4-5",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "c5107eab3c45f622c47dede23056274035d1192f",
|
|
"version-string": "2.2.4-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "b9f2b89639ad6eca239b1e545614a218cf691766",
|
|
"version-string": "2.2.4-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "e6469b934beac48e9dda641f09a865c8006f9562",
|
|
"version-string": "2.2.4-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "abad9ed708e0800249115e7a3cdfb3ca7bdaf487",
|
|
"version-string": "2.2.4-1",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|