vcpkg/versions/l-/lapack.json

50 lines
1.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "7c892b58c70ebc7d83444c4e727272cad40e28c2",
"version-date": "2022-02-22",
"port-version": 2
},
{
"git-tree": "5897ee099a5aa43bcb50c0d5a19cda3a9ed6a50c",
"version-date": "2022-02-22",
"port-version": 1
},
{
"git-tree": "3a9c5b51e3480db058719db223df981e0e679819",
"version-date": "2022-02-22",
"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": "e52f9dc39357e3e7224273a21c0efaf275f15ae6",
"version-string": "3",
"port-version": 2
},
{
"git-tree": "e3e10603a14f3b981ce689ba768d42a1a2ec07d4",
"version-string": "3",
"port-version": 1
},
{
"git-tree": "896c35b926db44f52f66d98b01f5334022920f42",
"version-string": "3",
"port-version": 0
},
{
"git-tree": "29cecd95e65e5355b3b29abba1bb9ad4bb9bcae2",
"version-string": "2",
"port-version": 0
},
{
"git-tree": "a46b6d68236ab2531fa28cb5f1c9a0905d51763e",
"version-string": "1",
"port-version": 0
},
{
"git-tree": "8f3d3da82ca7ed0cdaadf76cb5166210da69ef40",
"version-string": "0",
"port-version": 0
}
]
}