vcpkg/versions/t-/tcl.json

55 lines
1.4 KiB
JSON
Raw Normal View History

{
"versions": [
2023-08-26 03:10:30 +08:00
{
"git-tree": "e825eeb13189650d5919608370935891a5cba218",
"version-string": "core-9-0-a1",
"port-version": 6
},
2021-11-30 09:01:51 +08:00
{
"git-tree": "cb31c47230370021b4bee86bf0d711e70ff546f4",
"version-string": "core-9-0-a1",
"port-version": 5
},
2021-11-09 12:42:39 +08:00
{
"git-tree": "ce21246b8ebf7e3ec20c2c8ea3abc5bbacea363e",
"version-string": "core-9-0-a1",
"port-version": 4
},
{
"git-tree": "178e263715acedbd584a7390566df8f6e75e5a9c",
"version-string": "core-9-0-a1",
"port-version": 3
},
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": "b1307e2d115e01cedde54662115ff363e46b6fe5",
"version-string": "core-9-0-a1",
"port-version": 2
},
{
"git-tree": "91acff42f01d650b56bc6a8377bca8c93f9e7408",
"version-string": "core-9-0-a1",
"port-version": 1
},
{
"git-tree": "914cf3e943b2379dad1a63f05c3f0e9f107b7b1d",
"version-string": "core-9-0-a1",
"port-version": 0
},
{
"git-tree": "65c61411b419e4a62f80d85b0f9c16db30188c71",
"version-string": "8.6.10-3",
"port-version": 0
},
{
"git-tree": "7a6e3e3fb3cd7abff045319ea6693fb35bf00d7c",
"version-string": "8.6.10-2",
"port-version": 0
},
{
"git-tree": "7d0a483ed75781d1e21412e915556bdfabc54c94",
"version-string": "8.6.5",
"port-version": 0
}
]
}