vcpkg/versions/p-/polyhook2.json

120 lines
3.1 KiB
JSON
Raw Normal View History

{
"versions": [
[polyhook2] Update to 2024-02-08 (#37866) <!-- If your PR fixes issues, please note that here by adding "Fixes #NNNNNN." for each fixed issue on separate lines. --> <!-- 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. - [x] 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-04-09 23:26:54 +08:00
{
"git-tree": "2380bd82c3b07238558d4cfb7a2a38011b75faf5",
"version-date": "2024-02-08",
"port-version": 0
},
{
"git-tree": "00a3d485f743b08f8c407139e5e8210468f44573",
"version-date": "2023-08-11",
"port-version": 0
},
2023-08-24 02:55:48 +08:00
{
"git-tree": "def3f21d5fdcf75184eff747c70e7dcf5be18517",
"version-date": "2023-05-16",
"port-version": 2
},
{
"git-tree": "4d6b2480d856d0e6009923d176fb68392e201ac8",
"version-date": "2023-05-16",
"port-version": 1
},
{
"git-tree": "3e46e50c70de16dfea86f4a7a8ceea6d19b3c46b",
"version-date": "2023-05-16",
"port-version": 0
},
{
"git-tree": "61f26f962dfbb071aeb0f22c4cfe15e100c0524c",
"version-date": "2023-02-24",
"port-version": 0
},
{
"git-tree": "bd2324e09d967fab5a098f0c2d42682abf5b4113",
"version-date": "2022-03-01",
"port-version": 0
},
2022-02-23 03:48:04 +08:00
{
"git-tree": "106988bbbfbb0402ee0263e7d71753b4df830a5d",
"version-date": "2022-02-21",
"port-version": 0
},
{
"git-tree": "8ad15683e3f77fd7301903e9dab7aa57302f4e80",
"version-date": "2022-02-06",
"port-version": 0
},
{
"git-tree": "519f086961afed4ccad13eb8d56ac009221f1714",
"version-date": "2022-02-02",
"port-version": 0
},
{
"git-tree": "bae35bd5e732a2468beb53b4407668d515204514",
"version-date": "2021-05-09",
"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": "9b4af767d959bb37711e474327acba689127749c",
"version-string": "2021-05-09",
"port-version": 1
},
{
"git-tree": "a7b98cc69b89dfd9f776ef1b95f26d784fd3b82b",
"version-string": "2021-05-09",
"port-version": 0
},
{
"git-tree": "ed53517a6b3c746ae38fa66fc3f53e4a0995a3c7",
"version-string": "2021-01-08",
"port-version": 0
},
{
"git-tree": "b5584f0169f2455b61d60f8fd53c0d4e0fa2732f",
"version-string": "2020-09-22",
"port-version": 0
},
{
"git-tree": "5570afa11a3c704891576874a8f3c5b2f1420682",
"version-string": "2020-08-29",
"port-version": 0
},
{
"git-tree": "582062382c942f52c716b612b62d045300ed8d60",
"version-string": "2020-08-04",
"port-version": 0
},
{
"git-tree": "ea0293814778b470678a53fe04aa953bffa7e16e",
"version-string": "2020-07-01",
"port-version": 0
},
{
"git-tree": "cb20be3ef49ae4e063a9303cc14f500c165a1b08",
"version-string": "2020-06-02",
"port-version": 0
},
{
"git-tree": "fdc326330ba975c2114378381187bf180e359566",
"version-string": "2020-05-25",
"port-version": 0
},
{
"git-tree": "e747dc136e590035c296c2c9d20e28e6d34de4dd",
"version-string": "2020-02-17",
"port-version": 0
},
{
"git-tree": "02a89afa85894c3f8bcf50600367748fe277f859",
"version-string": "2020-02-03",
"port-version": 0
},
{
"git-tree": "a574ec9d108a30941e2f4c1cb90a3899c6a9d540",
"version-string": "2019-10-24",
"port-version": 0
}
]
}