vcpkg/versions/c-/clockutils.json

40 строки
1.1 KiB
JSON
Исходник Обычный вид История

{
"versions": [
{
"git-tree": "08f337ddf39f1cda9dd6431374cdb0ee748745da",
"version": "1.1.1",
"port-version": 1
},
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 11:24:04 +03:00
{
"git-tree": "1fb64c4ec3d5aced719df16f96e79be4bb64cee7",
"version-string": "1.1.1-3651f232c27074c4ceead169e223edf5f00247c5",
"port-version": 4
},
{
"git-tree": "cea253009dc17e485177d45dd2b67334db8fc7b4",
"version-string": "1.1.1-3651f232c27074c4ceead169e223edf5f00247c5-3",
"port-version": 0
},
{
"git-tree": "1099670eb247ce26881c2d121ccdb13ede01a7ba",
"version-string": "1.1.1-3651f232c27074c4ceead169e223edf5f00247c5-2",
"port-version": 0
},
{
"git-tree": "162495da5f294284be07957fde8eedf158c9ce5c",
"version-string": "1.1.1-3651f232c27074c4ceead169e223edf5f00247c5-1",
"port-version": 0
},
{
"git-tree": "23ad4618ca9fc9a5617b236ccca524b53dff0c0e",
"version-string": "1.1.1-3651f232c27074c4ceead169e223edf5f00247c5",
"port-version": 0
},
{
"git-tree": "9ebf14ea7f9be8ff5c2d749a66b0b3bf7654d227",
"version-string": "1.1.1",
"port-version": 0
}
]
}