vcpkg/versions/w-/wil.json

85 lines
2.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
2023-08-26 03:09:52 +08:00
"git-tree": "ddb021c58bdc3c24a0440d2e6f808797cd698bf8",
"version-date": "2023-08-24",
"port-version": 0
},
{
"git-tree": "8e96d6798de6842dc009f957172841b8fcf711d7",
"version-date": "2023-04-11",
"port-version": 0
},
{
"git-tree": "15b6edcd080a9c2dab9a62a7d4a029b33b835f08",
"version-date": "2023-02-02",
"port-version": 0
},
{
"git-tree": "1481b7907b914288a49773105eeeabaa9b4a6385",
"version-date": "2022-09-23",
"port-version": 0
},
{
"git-tree": "c918f3ae742f41c096f5758afd5af98fe7a194b5",
"version-date": "2021-12-25",
"port-version": 0
},
{
"git-tree": "287e04f5640f1793bdb27bc477dea1ca0e727961",
"version-date": "2021-08-03",
"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": "fe6538eb3c7260ca155c82808519426a280e42e5",
"version-string": "2021-08-03",
"port-version": 1
},
{
"git-tree": "cb04005b6c8503a0da843fc8f356748e0a0d3994",
"version-string": "2021-08-03",
"port-version": 0
},
{
"git-tree": "1085a9ee690f6718715b28396f5250ad67d6f828",
"version-string": "2021-02-04",
"port-version": 0
},
{
"git-tree": "48d7b90ae1c7d5f223caad5330a293463f470860",
"version-string": "2020-05-19",
"port-version": 1
},
{
"git-tree": "c592af57ce68d842a099b9533eb6a0b8f4aeddbe",
"version-string": "2020-05-19",
"port-version": 0
},
{
"git-tree": "6fc902885dd7217f576fd9d15a4e719e2a362416",
"version-string": "2019-11-07",
"port-version": 0
},
{
"git-tree": "e327535dff44b80591354a3ca152b451f2fc1391",
"version-string": "2019-07-16",
"port-version": 0
},
{
"git-tree": "2d4beb5a5c638983e5ea15da718adab37c1e11f4",
"version-string": "2019-07-09",
"port-version": 0
},
{
"git-tree": "5b69bc45e3d32c13cbafdf88fc70e455fa847473",
"version-string": "2019-06-10",
"port-version": 0
},
{
"git-tree": "f11a4f76cd1ad0ace37036a8e9468a3ce061ce22",
"version-string": "2019-05-08",
"port-version": 0
}
]
}