vcpkg/versions/w-/winreg.json

115 lines
2.8 KiB
JSON
Raw Normal View History

{
"versions": [
2024-09-19 03:26:40 +08:00
{
"git-tree": "0fa2df0dae16abe346b4c7d2a5e00703456ef9c4",
"version": "6.3.0",
"port-version": 0
},
[WinReg] update to v6.2.0 (#36931) <!-- If your PR fixes issues, please note that here by adding "Fixes #NNNNNN." for each fixed issue on separate lines. --> Fixes https://github.com/microsoft/vcpkg/issues/36926 No feature need to be tested. <!-- If you are still working on the PR, open it as a Draft: https://github.blog/2019-02-14-introducing-draft-pull-requests/. --> - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. <!-- If this PR adds a new port, please uncomment and fill out this checklist: - [ ] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] The name of the port matches an existing name for this component on https://repology.org/ if possible, and/or is strongly associated with that component on search engines. - [ ] Optional dependencies are resolved in exactly one way. For example, if the component is built with CMake, all `find_package` calls are REQUIRED, are satisfied by `vcpkg.json`'s declared dependencies, or disabled with [CMAKE_DISABLE_FIND_PACKAGE_Xxx](https://cmake.org/cmake/help/latest/variable/CMAKE_DISABLE_FIND_PACKAGE_PackageName.html). - [ ] The versioning scheme in `vcpkg.json` matches what upstream says. - [ ] The license declaration in `vcpkg.json` matches what upstream says. - [ ] The installed as the "copyright" file matches what upstream says. - [ ] The source code of the component installed comes from an authoritative source. - [ ] The generated "usage text" is accurate. See [adding-usage](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/examples/adding-usage.md) for context. - [ ] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [ ] Only one version is in the new port's versions file. - [ ] Only one version is added to each modified port's versions file. END OF NEW PORT CHECKLIST (delete this line) -->
2024-02-24 06:56:52 +08:00
{
"git-tree": "58ee10b34f36c56aa5fb1876c0b70685dc6e0b09",
"version": "6.2.0",
"port-version": 0
},
{
"git-tree": "6acea55c34f2a89b2ed2d2b9a335e4f074dcbb40",
"version": "6.1.1",
"port-version": 0
},
{
"git-tree": "c2ca5ed4ead6f69d105bd677fc3acaeba4be8879",
"version": "6.1.0",
"port-version": 0
},
{
"git-tree": "d6faf66fd8bb6b7d12b74e2084cbf15f8628b531",
"version": "6.0.0",
"port-version": 0
},
{
"git-tree": "ec4168b0b4ceaece6ee9d24b5bcc8c4ed8897db7",
"version": "5.1.1",
"port-version": 0
},
{
"git-tree": "cdcb9cb9581869670509de4d2928b8821038d962",
"version": "5.1.0",
"port-version": 0
},
{
"git-tree": "a355bab9791bca02dc9ad9bc2b61f6ba72486a23",
"version": "5.0.1",
"port-version": 0
},
{
"git-tree": "a788126cfabb1299a7f43933fec7ced6074a7939",
"version": "5.0.0",
"port-version": 0
},
{
"git-tree": "303a59adfcedbd8c8acdc053ec6b1139d056ecae",
"version": "4.1.2",
"port-version": 1
},
{
"git-tree": "000a828ce0f4abd8b4732c7ca7e819e25e82144b",
"version": "4.1.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": "9aaa215768207c8c514a9a5f8be8e0ec6f5e8f02",
"version-string": "4.1.0",
"port-version": 1
},
{
"git-tree": "018dd4bf16d8a68e161eef8459458d2de47a125c",
"version-string": "4.1.0",
"port-version": 0
},
{
"git-tree": "6243560127ca086b89812f77a6635c8cd38fcdc4",
"version-string": "4.0.0",
"port-version": 0
},
{
"git-tree": "e8afef56a008634916bc97eb11ae79ba02c695c8",
"version-string": "3.1.0",
"port-version": 0
},
{
"git-tree": "aa109abb93ccccb6e16c83b7e7e323377094b49b",
"version-string": "3.0.1",
"port-version": 0
},
{
"git-tree": "2929abc521658db78cfb040189b3f9cab861e5b6",
"version-string": "2.4.0",
"port-version": 0
},
{
"git-tree": "a2a38e076c6733520ed2bc4486bb7c5ffa2b7cab",
"version-string": "2.2.3",
"port-version": 0
},
{
"git-tree": "4b4b7fde7bb3dc5fcd3087cbaa8cb9e9864254e7",
"version-string": "2.2.2",
"port-version": 0
},
{
"git-tree": "49452133f986be20d1d7719e33863c2369e1c899",
"version-string": "2.2.0",
"port-version": 0
},
{
"git-tree": "6319c821321e937278e2ffe232f1e401ca6f2674",
"version-string": "1.2.1-1",
"port-version": 0
},
{
"git-tree": "8a41891db9540f656840ad027a57d5131f96facb",
"version-string": "1.2.1",
"port-version": 0
}
]
}