vcpkg/versions/c-/clblas.json

40 lines
934 B
JSON
Raw Normal View History

{
"versions": [
2022-10-06 06:06:50 +08:00
{
"git-tree": "68caca1b774b1896768237791456b8962aa28d54",
"version": "2.12",
"port-version": 7
},
2022-01-06 12:22:40 +08:00
{
"git-tree": "a94b503ed4a4a74fa316ac65c363968092a0b026",
"version": "2.12",
"port-version": 6
},
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": "0972ab18d9864a174d8c9acb7cf1add27c6a4ce2",
"version-string": "2.12",
"port-version": 5
},
{
"git-tree": "e4744af3eaf0b0d24b2c60b7c3f85565e399961e",
"version-string": "2.12-4",
"port-version": 0
},
{
"git-tree": "ca8bf8d9213393fce5ae7757dc422f056a780ffa",
"version-string": "2.12-3",
"port-version": 0
},
{
"git-tree": "877ea154609214d86f41c69ff6239671338c533d",
"version-string": "2.12-2",
"port-version": 0
},
{
"git-tree": "121d625c8b7962c34f4cd5b8414f6518b39b5526",
"version-string": "2.12-1",
"port-version": 0
}
]
}