mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:19:01 +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 ```
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "f3670208e9dc0b726c3c009e37f2398b7f2acca3",
|
|
"version-string": "5.1.0",
|
|
"port-version": 8
|
|
},
|
|
{
|
|
"git-tree": "b3ad4e99935fca4e79b5df63fb7a055686b4cf42",
|
|
"version-string": "5.1.0",
|
|
"port-version": 7
|
|
},
|
|
{
|
|
"git-tree": "d4ddb63ce08cbf4b68b13c30dff8e15079891fc5",
|
|
"version-string": "5.1.0-6",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "3d0e6109b7ee6c387ed8aceabc60ba9ab50f553d",
|
|
"version-string": "5.1.0-5",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "2399084f267f45cfce5d4c074cce41cfb3a25e11",
|
|
"version-string": "5.1.0-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "f8b89081de4ab5fe76770c16da184363f5ee4635",
|
|
"version-string": "5.1.0-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "9953e84f10ee672b75a23782cda06c44ae7eb8e6",
|
|
"version-string": "5.1.0-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "b1c5112b22a2aa3be648be48a372c221630298c1",
|
|
"version-string": "5.1.0-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "b3a13b3bd1dc0f1c47ccabb973523784d9f4d763",
|
|
"version-string": "5.1.0",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|