vcpkg/versions/u-/usd.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "177f2af7397316cc1fa92a72ea8992f6acca8dfb",
"version-string": "20.08",
"port-version": 2
},
Bulk convert control files. (#19986) ``` 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 ```
2021-09-09 16:24:04 +08:00
{
"git-tree": "44bef511fe3c249b1579ab696b8bd7e82147b788",
"version-string": "20.08",
"port-version": 1
},
{
"git-tree": "31c9d55a54024d0bc130a9f8547d1c64d4a3aed4",
"version-string": "20.08",
"port-version": 0
},
{
"git-tree": "d0333a8dfc5842771b29038bd329b7d739b78cf0",
"version-string": "20.02-1",
"port-version": 0
},
{
"git-tree": "b06a9070475f30356cf7c8a428d3a7e94f2f64b7",
"version-string": "20.02",
"port-version": 0
},
{
"git-tree": "066df97d046736bf9a67838771d29f9e4941a3e2",
"version-string": "0.8.4-2",
"port-version": 0
},
{
"git-tree": "1561cdb122277a64391d434a0e4ba2d4a8fbfb0c",
"version-string": "0.8.4-1",
"port-version": 0
},
{
"git-tree": "e70b57bd851013def127438095532163283dd9bf",
"version-string": "0.8.4",
"port-version": 0
}
]
}