vcpkg/versions/l-/libwebp.json

130 lines
3.2 KiB
JSON
Raw Normal View History

{
"versions": [
{
"git-tree": "6bce9ad4c595a817fb1f227661c5bc955b177754",
"version": "1.2.4",
"port-version": 0
},
{
"git-tree": "e2b9421b3093512c54494cf01a3fd6edb7424e02",
"version": "1.2.3",
"port-version": 0
},
{
"git-tree": "bf8ec989a234ddde96494e4e07d0ffd93df82151",
"version": "1.2.2",
"port-version": 0
},
{
"git-tree": "ca5a8b2ed264617e8a35d22e1e6ac18ebe99900f",
"version": "1.2.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": "4fcb5d97e464c046b1f4c1a81b7d23a9cb63a615",
"version-string": "1.1.0",
"port-version": 4
},
{
"git-tree": "7a3bfc774b61126901f0f9524de41ef864918f35",
"version-string": "1.1.0",
"port-version": 3
},
[ffmpeg] Add support for dav1d,fontconfig,freetype,fribidi,ilbc,modplug,opengl,openjpeg,libssh,tensorflow,tesseract,webp,libxml2 dependencies. (#15787) * [tesseract] Use vcpkg_fixup_pkgconfig. * [libxml2] Correct pkgconfig lib name. * [libwebp] Use vcpkg_fixup_pkgconfig. * [libssh] Export pkgconfig on windows. Also move to using git to get source. * [modplug] Export pkgconfig on windows. * [ffmpeg] Add support for fontconfig,freetype,fribidi,modplug,openjpeg,libssh,tesseract,libxml2 dependencies. * [openjpeg] Correct required static link libs in pkgconfig. * [modplug] Combine vcpkg_from_github using variable. * Update ports/libssh/CONTROL * Improve portfile.cmake * update version records. * [openjpeg] Update libs in pkgcfg. Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> * update version records * [libssh] Add pthread to pkgconfig when using mbedtls. * [libssh] Correct pthread naming on windows. * [fontconfig] Add libintl to pkgconfig on windows. * update version records * [ffmpeg] Fixup FindFFmpeg. * [ffmpeg] speex now supports non-windows. * [ffmpeg] Add feature libass. * [ffmpeg] Add dav1d feature. * [ffmpeg] Add feature ilbc. * [ffmpeg] Add tensorflow feature. * [ffmpeg] update version record. * [ffmpeg] Add CI feature test. * [ffmpeg] Limit features based on CI failures. * [ffmpeg] Update version record. * [ffmpeg] limit features based on ci.baseline. * [various ports] Update supports field. * [ffmpeg] Limit features more based on CI. * update version records. * [ffmpeg] Add detection of additional non target deps.. select_library_configurations_from_names currently detects the debug libs even for release builds as _IMPORT_PREFIX was not being set. * [aubio] Silence warning about FindFFMPEG. * [pangolin] Use vcpkg supplied FindFFMPEG. * update version files. * [ffnvcodec] Set as not supporting uwp. ffnvcodec will build under uwp as its a header only lib, but it can not be used as it requires dynamic dll loading. * [ffmpeg] Update feature all. * update version records * [tesseract] Wrap debug pkgcfg update. * [libssh,libxml2,openjpeg,fontconfig] Fix pkg-config for release only triplets. * [libssh] Correct port version after merge. * [ffmpeg] Fixup after merge. * Update version files. * [ffmpeg] Add opengl support. * [ffmpeg] Update package version. * [ffmpeg] Fix ffnvcodec support. * [ffmpeg] Fix x265 detection on osx. * [libvpx] Enable arm-uwp build. * [ffmpeg] Fixup x265 patch. * trigger sdl rebuild * [ffmpeg] Disable opengl on osx. * Revert "trigger sdl rebuild" This reverts commit 94065bfe8414259ad5a5576bd4ac0b7ab4b97c6b. * [ffmpeg] Disable failing features on osx. * Update ports/ffmpeg/FindFFMPEG.cmake.in Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com> * [ffmpeg] Add ass dependencies to FindFFmpeg. * Update ports/ffmpeg/FindFFMPEG.cmake.in Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com> * update version * [fontconfig] disable pthread/json as they are not needed for lib builds. Only used for tests. * [ffmpeg] Enable fontconfig on static+windows. * update versions * update versions. * Fix incorrectly included commits * revert pangolin commit Reverts most of 2543be2edf60bf38511c2d477bb17b617398a108 * update versions * Correct port version after merge. * update versions. * [ffmpeg] Fix cmake dependency detection on non-windows. * Revert "revert pangolin commit" This reverts commit f59bc5a53ea74fd9df17fc368886e9d1a80ac42f. * [ffmpeg] Fix dependency loading that does not define separate debug/release libs. * update versions. * [ffmpeg] set CMP0072 policy. * [wavpack] Fix cmake config export. * [ffmpeg] Add optional system dependent libraries. * update versions after merge. * update versions. Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com> Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com>
2021-04-08 01:06:55 +08:00
{
"git-tree": "8e1a0ef8ea8d864f10f3ad1604f3d0e920534ecd",
"version-string": "1.1.0",
"port-version": 2
},
{
"git-tree": "de60c0060bd08d336b79bf5676c28394e81bf1b8",
"version-string": "1.1.0",
"port-version": 1
},
{
"git-tree": "a05e0de81085231df86f6902aba1e0a364e2ca7b",
"version-string": "1.1.0",
"port-version": 0
},
{
"git-tree": "5066566c98bc1913b678347c4cbae0a6aff4cf2d",
"version-string": "1.0.3-1",
"port-version": 0
},
{
"git-tree": "6ff3a23b154fad821db2d8236bf9d0382f0229cf",
"version-string": "1.0.3",
"port-version": 0
},
{
"git-tree": "256b8e8b5d64cb6f66da47f1a361e5538d341023",
"version-string": "1.0.2-8",
"port-version": 0
},
{
"git-tree": "e346060df1b0a0a0678450a1e1bc54360a8d3c55",
"version-string": "1.0.2-7",
"port-version": 0
},
{
"git-tree": "0fd238a9eb84602ff73d675826c9160f2ac41719",
"version-string": "1.0.2-6",
"port-version": 0
},
{
"git-tree": "4e3bca81e2ee5d64a83916b1a5767eb92254dfb8",
"version-string": "1.0.2-4",
"port-version": 0
},
{
"git-tree": "3293ad38a00a161493070881adab3657ce52fa46",
"version-string": "1.0.2-3",
"port-version": 0
},
{
"git-tree": "e475e4b3c6b17dea10f1d5ebce8963e92aa8028b",
"version-string": "1.0.2-2",
"port-version": 0
},
{
"git-tree": "cd9eb2a1de5cbee5d08377eb3bd8bdcd1e449ffd",
"version-string": "1.0.2-1",
"port-version": 0
},
{
"git-tree": "0ea91cc24e12ecb8c3bdf133c11907e33b199d41",
"version-string": "0.6.1-2",
"port-version": 0
},
{
"git-tree": "17ed12a3c871c7132ac910da2c41e84ec85aeec6",
"version-string": "0.6.1-1",
"port-version": 0
},
{
"git-tree": "1a5ce7e9e8e49ee48ab6c1d502acb047908f8fe3",
"version-string": "0.6.1",
"port-version": 0
},
{
"git-tree": "43072c98ece4301042038510225369171c5c6b93",
"version-string": "0.6.0-2",
"port-version": 0
},
{
"git-tree": "e5168131d94eb8327e39a94405a92e446dcf2ab1",
"version-string": "0.6.0-1",
"port-version": 0
},
{
"git-tree": "b3198de0a1aceb9ddb6b6d74d1052f6f50121937",
"version-string": "0.5.1-1",
"port-version": 0
},
{
"git-tree": "0017292c90bd4a10f430bfd01a4e6c8d89b6cd50",
"version-string": "0.5.1",
"port-version": 0
}
]
}