vcpkg/versions/l-/leptonica.json

100 lines
2.5 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "99f96a421ac16fea60363be5488c10b19d6018d4",
"version": "1.84.1",
"port-version": 1
},
[leptonica] update to 1.84.1 (#35984) <!-- 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/35941 The contents in the patch have been merged in upstream, so I remove them. No feature needs 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.~~ - [x] 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-22 14:33:32 +08:00
{
"git-tree": "a9c4f4bd6602bf8870169e982d345b686691ba58",
"version": "1.84.1",
"port-version": 0
},
2023-02-01 10:04:06 +08:00
{
"git-tree": "90d009f9febb130cbecc48c89cdc309563f85621",
"version": "1.83.1",
"port-version": 0
},
{
"git-tree": "d69fc1cdb4cfb42aa1b6e608418f313fbbb3f9ab",
"version": "1.82.0",
"port-version": 0
},
[OpenCV] upgrade to v4.5.5 (#22801) * [OpenCV4] update to v4.5.5 * [OpenCV] bump version * [gstreamer] fix build for opencv * fix references * [vcpkg-tool-meson] fix nuget packaging * fix references * [gstreamer] fix references * [ogre] update vcpkg tools * fix references * [OpenCV4] fixes from CI runs * fix references * [OpenCV4] force python module also in debug builds * fix references * [harfbuzz] fix cmake config * harfbuzz fixes * fix references * [OpenCV4] remove unnecessary lines from patches * fix references * fix references * [harfbuzz] bump version * [harfbuzz] fix for single config builds * fix references * freetype fixes * fix references * fix ogre references * fix references, again * python when building static windows opencv libraries is unsupported * fix references * fix * refs * use required when necessary * fix references * do not use config for hdf5, use internal module * fix references * use proper spelling for freetype config cmake * fix references * [OpenCV] restore versions after merge * fix references * [leptonica] fix building * fix references * do not require package in optional features * £fix references * fix python feat * update version * update version * [ffmpeg] remove opengl feat on arm64-windows * format manifest * fix references * fix cuda/nvidia features compatibility matrix * fix manifest * fix * fix * fix references * fix references, again * move CONTROL to manifest * [gstreamer] bump versions * fix references Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
2022-02-24 03:57:13 +08:00
{
"git-tree": "677775654e1914afaf5791361e9de3fac4762edc",
"version": "1.81.1",
"port-version": 1
},
{
"git-tree": "215a8a32b41e1561998ac840c3c35404707186a2",
"version": "1.81.1",
"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": "5068586428e64792c526ff7192b26ca96f27a673",
"version-string": "1.80.0",
"port-version": 3
},
{
"git-tree": "620a94070633a9f786e0052d848c16632bd307b5",
"version-string": "1.80.0",
"port-version": 2
},
{
"git-tree": "27c2329af94e2199b49c1d01da4136fe0891105f",
"version-string": "1.80.0",
"port-version": 1
},
{
"git-tree": "9ed8135c6708327c0e5515bf2b3c175f113d3802",
"version-string": "1.80.0",
"port-version": 0
},
{
"git-tree": "0ddf0c5660376a7b0ae1c641e71ed8c348f4996f",
"version-string": "1.78.0-1",
"port-version": 0
},
{
"git-tree": "64bbacef132cc5a87b5a490cff4d27db3455311b",
"version-string": "1.78.0",
"port-version": 0
},
{
"git-tree": "78a927b8258976486692ac5badb19de106cab81c",
"version-string": "1.76.0-1",
"port-version": 0
},
{
"git-tree": "6030d672c4f2f06353227902a3fa0fc1129f0e6e",
"version-string": "1.76.0",
"port-version": 0
},
{
"git-tree": "8157e86a51d1b004e1db007e30ae865241c75ff5",
"version-string": "1.74.4-5",
"port-version": 0
},
{
"git-tree": "1ffd3aac6861f39d94248c3f40736d74820f8d28",
"version-string": "1.74.4-3",
"port-version": 0
},
{
"git-tree": "6be9502011cb80993014849fdb2ebf2b59d0d8b3",
"version-string": "1.74.4-2",
"port-version": 0
},
{
"git-tree": "166acbf4ed05ce08247d3194b30684a4c5d27937",
"version-string": "1.74.4-1",
"port-version": 0
},
{
"git-tree": "67be31d07999377c75fda2b1208c749261294667",
"version-string": "1.74.4",
"port-version": 0
}
]
}