vcpkg/versions/g-/gmmlib.json

55 lines
1.3 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "7f7e953649b6c9b189ade0aa39fb4ac5689322c3",
"version": "22.3.17",
"port-version": 0
},
2023-10-03 10:50:44 +08:00
{
"git-tree": "04bd253bdd2f2e7e02b69feb0d72854fd663d3fb",
"version": "22.3.12",
"port-version": 0
},
2022-01-26 14:31:46 +08:00
{
"git-tree": "d7dbf37aa324f038b12f99d697da82299d3ec9a0",
"version": "21.3.2",
"port-version": 1
},
{
"git-tree": "5b69783d8bdff160371ecc494af42d6ec8d8ffa0",
"version": "21.3.2",
"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": "1d1a120fb9b513b005575b6324b9eaa13d900192",
"version-string": "20.3.1",
"port-version": 1
},
{
"git-tree": "7fc340ea71bdc0798d55f0e3df2069ae215a6acb",
"version-string": "20.3.1",
"port-version": 0
},
{
"git-tree": "8a28386de58cb8db047ede0708253c9a939686e6",
"version-string": "19.4.1",
"port-version": 0
},
{
"git-tree": "409c2b96c8cce05ed597b657a550a42952cf638c",
"version-string": "19.2.3",
"port-version": 0
},
{
"git-tree": "5972c055111a757915149270d9bb13ba94bb76f3",
"version-string": "19.1.2",
"port-version": 0
},
{
"git-tree": "5847a84461844b252f4eee7a15211614ec5fcc5e",
"version-string": "18.3.pre2-1",
"port-version": 0
}
]
}