vcpkg/versions/x-/xxhash.json

70 lines
1.7 KiB
JSON
Raw Normal View History

{
"versions": [
2023-07-25 01:57:01 +08:00
{
"git-tree": "4ebfe9c5b439ecc2f91beb32e6dbb7549dff29e4",
"version": "0.8.2",
"port-version": 0
},
{
"git-tree": "8c45988bd467674cb21961646a9379645a235ba5",
"version": "0.8.1",
"port-version": 2
},
2021-12-07 13:10:49 +08:00
{
"git-tree": "895a0039b3cd40c7f66725608d07dc851e0d54b6",
"version": "0.8.1",
"port-version": 1
},
{
"git-tree": "69e750b7b17d837d2d7e41385c7f339e7e23f65c",
"version": "0.8.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": "427341c7e75df558fc7fe5ff69340387877bddf8",
"version-string": "0.8.0",
"port-version": 2
},
{
"git-tree": "b0513b38c64783f4c9fe001b995f62a10f2e6d8c",
"version-string": "0.8.0",
"port-version": 1
},
{
"git-tree": "bf43ef4c3cf428cfc5c89e07008321caec66e923",
"version-string": "0.8.0",
"port-version": 0
},
{
"git-tree": "318c3d88579895b6b288694282494bb6ab366de2",
"version-string": "0.7.0",
"port-version": 0
},
{
"git-tree": "bab43952d557d7d33f36c79cb2644035eb7a939d",
"version-string": "0.6.4-1",
"port-version": 0
},
{
"git-tree": "313f9b028310d91dea6bbed71ef881640dc59891",
"version-string": "0.6.4",
"port-version": 0
},
{
"git-tree": "bf8862a937ee1da793008dd671553e183e3a4e0f",
"version-string": "0.6.3-1",
"port-version": 0
},
{
"git-tree": "882693b8deea7d882395c29b0649008940ad7999",
"version-string": "0.6.3",
"port-version": 0
},
{
"git-tree": "21ced86901edd80f5dd31cdadda0017c86785095",
"version-string": "0.6.2",
"port-version": 0
}
]
}