vcpkg/versions/o-/openvpn3.json

55 lines
1.3 KiB
JSON
Raw Normal View History

{
"versions": [
2024-09-09 03:04:08 +08:00
{
"git-tree": "33c2d9bf4e949b0ddd3779a93c4339a3eab65e67",
"version": "3.10",
"port-version": 1
},
{
"git-tree": "f24948a1abcd067f9d1063088f83afa5e2b4270f",
"version": "3.10",
"port-version": 0
},
{
"git-tree": "97a26dd437bb027004b075333db96473652ca1fd",
"version": "3.7.0",
"port-version": 2
},
{
"git-tree": "352f972ff2ff0cfb7305f779253f322ba72e14f5",
"version": "3.7.0",
"port-version": 1
},
{
"git-tree": "901a710e937496a572cdb5b64d2401c18919ffde",
"version": "3.7.0",
"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": "bf20f11ad1fb64e74ebcfda5a3b3c19b8e4770ae",
"version-string": "3.4.1",
"port-version": 2
},
{
"git-tree": "4b177cc0bde1f1f8c6ca22ab10d7ab92657c8d3f",
"version-string": "3.4.1-1",
"port-version": 0
},
{
"git-tree": "c677eebd904de277e0681d785e96994c63e5e287",
"version-string": "3.4.1",
"port-version": 0
},
{
"git-tree": "96f4bddb5d4bbeb620b476a947a429f71e80494b",
"version-string": "2018-03-21-1",
"port-version": 0
},
{
"git-tree": "047ed9c907cc3114ad31e5d17a2080a75eb190df",
"version-string": "2018-03-21",
"port-version": 0
}
]
}