mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 00:39:00 +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 ```
80 lines
2.0 KiB
JSON
80 lines
2.0 KiB
JSON
{
|
|
"versions": [
|
|
{
|
|
"git-tree": "2211c53755bff618e685ac712f96ee381d2ba6a6",
|
|
"version-string": "1.6.0",
|
|
"port-version": 4
|
|
},
|
|
{
|
|
"git-tree": "2776355ea4b59dd06ec5b231c5080cd9b2157a16",
|
|
"version-string": "1.6.0",
|
|
"port-version": 3
|
|
},
|
|
{
|
|
"git-tree": "7cd5cd08571c3a463ea30e6b47a6e407301199fe",
|
|
"version-string": "1.6.0",
|
|
"port-version": 2
|
|
},
|
|
{
|
|
"git-tree": "413293d224293f65999b988ba07734ad78793405",
|
|
"version-string": "1.6.0",
|
|
"port-version": 1
|
|
},
|
|
{
|
|
"git-tree": "66eb337495fb9ac5d8cfdb96195b5d1c063088b6",
|
|
"version-string": "1.6.0",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "5c9bc07e3f09de7db58e47ea3e3ff85c54dde593",
|
|
"version-string": "1.4.2-10",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "4a29215fab2e4cb7994a00425986755f813cb21b",
|
|
"version-string": "1.4.2-9",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "1d3d0ee4657ddbd958cd116171e2f6b10cd969fa",
|
|
"version-string": "1.4.2-8",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "8dd91ef0f769529195818c1bddbdab3202026d84",
|
|
"version-string": "1.4.2-7",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "b6dec27e428ea7be87335d63e9201eeb55b1c3bc",
|
|
"version-string": "1.4.2-6",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "6752971ef7e155b673d55747f372dfb94047da0d",
|
|
"version-string": "1.4.2-4",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "1a2bbf7095fa8e9c60acf1d79571397d6c122270",
|
|
"version-string": "1.4.2-3",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "407880bac7bf6a12cc71e3884ae407cd59322970",
|
|
"version-string": "1.4.2-2",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "5d1936cbae72857694e2dd2a6c1ffa66cc93a094",
|
|
"version-string": "1.4.2-1",
|
|
"port-version": 0
|
|
},
|
|
{
|
|
"git-tree": "0b4e7e1425df33cf2f214fbcfe6405714c85035d",
|
|
"version-string": "1.4.2",
|
|
"port-version": 0
|
|
}
|
|
]
|
|
}
|