vcpkg/versions/z-/zydis.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "88c0a32f293fa4ee48ce2fa89369c9fdceff200f",
"version-semver": "3.2.1",
"port-version": 3
},
2022-10-21 03:52:57 +08:00
{
"git-tree": "6f44467c0fc5c106acd0846b22a6c0d3691c10de",
"version-semver": "3.2.1",
"port-version": 2
},
{
"git-tree": "a021ff1e31fecf096d68bb9cc9aa30121f3dd0bc",
"version-semver": "3.2.1",
"port-version": 1
},
{
"git-tree": "ea22eba12ef8bd109c21b3684abe6513070e122f",
"version-semver": "3.2.1",
"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": "1377782663be41b89898db78843a8e35417f90e9",
"version-string": "3.1.0",
"port-version": 2
},
{
"git-tree": "a27e395ffb6b0c8329228b3df9c3af8fd19c1b44",
"version-string": "3.1.0-1",
"port-version": 0
},
{
"git-tree": "1b0270a633fe432a70244f2f810bdb59c90d2bc8",
"version-string": "3.1.0",
"port-version": 0
},
{
"git-tree": "e089469cf7e5a019171b1cc8507ab402b1e713e8",
"version-string": "2.0.3",
"port-version": 0
}
]
}