vcpkg/versions/c-/cgltf.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "2baab070728dce2d5193a80e1deb7c41caa041f1",
"version": "1.13",
"port-version": 0
},
{
"git-tree": "2b793ed9e4345b733ec3897b1fbed4e152b5fc4a",
"version": "1.11",
"port-version": 0
},
{
"git-tree": "3fc2cb13947f1e5bdabb4333fbc2a4f5ec3128f7",
"version": "1.10",
"port-version": 0
},
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": "835b27ec3e0694edf605a79e0e7322dccd69d82f",
"version-string": "1.8",
"port-version": 1
},
{
"git-tree": "27d089cd8ef3a46c94daa6e90c4c2689052fe3c0",
"version-string": "1.8",
"port-version": 0
},
{
"git-tree": "6816a8dcdaa549afb7c24cd9e815512500f683f3",
"version-string": "1.5",
"port-version": 0
},
{
"git-tree": "593e2a321bdd5461d5660a1ed9a405d487481bd1",
"version-string": "1.3",
"port-version": 0
},
{
"git-tree": "352d59c3e2861cbbaf37a008273c6f45a152573e",
"version-string": "1.2",
"port-version": 0
},
{
"git-tree": "802d7db81d92d4d79e78111b8254d328dd263988",
"version-string": "2019-04-30",
"port-version": 0
}
]
}