vcpkg/versions/o-/openscap.json

60 lines
1.4 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "fdb8954725485a8b874a7947b02a4af8a4eed468",
"version": "1.4.0",
"port-version": 1
},
2024-08-17 16:41:01 +08:00
{
"git-tree": "854ccfd3c08afae1dbf963c9c18b5cea7c5f4ae5",
"version": "1.4.0",
"port-version": 0
},
{
"git-tree": "82c5fa2487fc5377950c5ad49bf9a3902cea36fd",
"version": "1.3.7",
"port-version": 3
},
{
"git-tree": "5317006070f414abe07df69cea20ee7a7ebfc1d4",
"version": "1.3.7",
"port-version": 2
},
{
"git-tree": "da537eeaaeb13c275a44fac02d7262875e5c29f4",
"version": "1.3.7",
"port-version": 1
},
{
"git-tree": "453f57565bf1882caf7355c14c079725153cd844",
"version": "1.3.7",
"port-version": 0
},
{
"git-tree": "e19b3163cda0978696c4a2b6fc6db92800051398",
"version": "1.3.1",
"port-version": 4
},
{
"git-tree": "6f96365cae0ee049b58b5863a0d59ca32782a9fa",
"version": "1.3.1",
"port-version": 3
},
{
"git-tree": "cbc6ed45cdfd68efd53ee939bed2440e2971730f",
"version": "1.3.1",
"port-version": 2
},
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": "ecbc2e72085ae6324948b52314de3b7e701376a5",
"version-string": "1.3.1",
"port-version": 1
},
{
"git-tree": "9c249b02fd6825acc7534912b280f31b941260bd",
"version-string": "1.3.1",
"port-version": 0
}
]
}