Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ffmpeg] fix LGPL build, disable avisynthplus on static builds #18803

Merged

Conversation

mcmtroffaes
Copy link
Contributor

  • What does your PR fix?

    Building ffmpeg[core,all] currently results in a GPL build of ffmpeg because it pulls in postproc as a default feature, which is GPL licensed, and should not be included in this build. This patch ensures that the all feature no longer pulls in the default features, thereby again allowing a pure LGPL build as intended. I've also explicitly listed postproc under all-gpl rather than relying on the default feature list.

    Whilst at it, I also noticed that the avisynthplus feature is not functional on static builds. The library itself can be built statically since 3.7.0, however there are still some bugs with this build (which I've reported upstream), but even more importantly ffmpeg is not set up to link statically against it, and can only dynamically load the avisynthplus dll. So I think it's best to disable it for now until the bugs are ironed out and ffmpeg wants to support it statically if that ever happens.

  • Which triplets are supported/not supported? Have you updated the CI baseline?

    No changes.

  • Does your PR follow the maintainer guide?

    To the best of my ability, yes.

  • If you have added/updated a port: Have you run ./vcpkg x-add-version --all and committed the result?

    Yes.

@NancyLi1013 NancyLi1013 self-assigned this Jul 5, 2021
@NancyLi1013 NancyLi1013 added the category:port-bug The issue is with a library, which is something the port should already support label Jul 5, 2021
@NancyLi1013
Copy link
Contributor

Hi @mcmtroffaes

Thanks again for your fixing. So you have tested these features, right?

@mcmtroffaes
Copy link
Contributor Author

Yes I've tested these as usual, and in particular I checked the license of the core,all build. Before patch:

> .\vcpkg.exe install ffmpeg[core,all]:x64-windows
...
ffmpeg[all,ass,avcodec,avdevice,avfilter,avformat,avresample,bzip2,core,dav1d,fontconfig,freetype,fribidi,gpl,iconv,ilbc,lzma,modplug,mp3lame,nvcodec,opencl,opengl,openh264,openjpeg,opus,postproc,sdl2,snappy,soxr,speex,ssh,swresample,swscale,tensorflow,tesseract,theora,vorbis,vpx,webp,xml2,zlib]:x64-windows -> 4.4#6
...
> .\vcpkg.exe install ffmpeg[core,all-gpl]:x64-windows
ffmpeg[all,all-gpl,ass,avcodec,avdevice,avfilter,avformat,avisynthplus,avresample,bzip2,core,dav1d,fontconfig,freetype,fribidi,gpl,iconv,ilbc,lzma,modplug,mp3lame,nvcodec,opencl,opengl,openh264,openjpeg,opus,postproc,sdl2,snappy,soxr,speex,ssh,swresample,swscale,tensorflow,tesseract,theora,vorbis,vpx,webp,x264,x265,xml2,zlib]:x64-windows -> 4.4#6
...

Note the core,all pulling in gpl.

After patch:

> .\vcpkg.exe install ffmpeg[core,all]:x64-windows
...
ffmpeg[all,ass,avcodec,avdevice,avfilter,avformat,avresample,bzip2,core,dav1d,fontconfig,freetype,fribidi,iconv,ilbc,lzma,modplug,mp3lame,nvcodec,opencl,opengl,openh264,openjpeg,opus,sdl2,snappy,soxr,speex,ssh,swresample,swscale,tensorflow,tesseract,theora,vorbis,vpx,webp,xml2,zlib]:x64-windows -> 4.4#7
...
> .\vcpkg.exe install ffmpeg[core,all-gpl]:x64-windows
...
ffmpeg[all,all-gpl,ass,avcodec,avdevice,avfilter,avformat,avisynthplus,avresample,bzip2,core,dav1d,fontconfig,freetype,fribidi,gpl,iconv,ilbc,lzma,modplug,mp3lame,nvcodec,opencl,opengl,openh264,openjpeg,opus,postproc,sdl2,snappy,soxr,speex,ssh,swresample,swscale,tensorflow,tesseract,theora,vorbis,vpx,webp,x264,x265,xml2,zlib]:x64-windows -> 4.4#7
...

Note core,all no longer pulling in gpl, and the core,all-gpl is as before.

@NancyLi1013 NancyLi1013 added the info:reviewed Pull Request changes follow basic guidelines label Jul 5, 2021
@ras0219-msft ras0219-msft merged commit 7179350 into microsoft:master Jul 6, 2021
@ras0219-msft
Copy link
Contributor

This LGTM, thanks for the fix!

@mcmtroffaes mcmtroffaes deleted the feature/ffmpeg-fix-lgpl-build branch July 6, 2021 21:41
@mcmtroffaes
Copy link
Contributor Author

Great, thanks for merging!

@rubu
Copy link

rubu commented Jul 30, 2021

@mcmtroffaes not sure if I am missing something (like options when invoking vcpkg), but currently it seems to me that this breaks the FindFFMPEG.cmake file in the package, since it still contains

if(ON)
  FFMPEG_FIND(libpostproc   postproc   postprocess.h)
endif()

and thus fails. But I have no idea how to expose the features from build to that file to fix this if.

To elaborate, I simply did vcpkg install ffmpeg:x64-windows:
image
and it included postproc in the output but it was not actually built

@mcmtroffaes
Copy link
Contributor Author

@rubu Currently ffmpeg is at version 4.4 on vcpkg but your log shows 4.2 so your vcpkg must be rather outdated. I would think that updating your vcpkg to the latest master should fix your issue. The problem is that postproc depends on the gpl feature. I checked the json and this is correctly represented:

> ./vcpkg install ffmpeg:x64-windows
Computing installation plan...
The following packages will be rebuilt:
    ffmpeg[avcodec,avdevice,avfilter,avformat,core,gpl,postproc,swresample,swscale]:x64-windows -> 4.4#12

But indeed, if you try to build ffmpeg with --enable-postproc but without --enable-gpl, then indeed the ffmpeg configure script will refuse to build postproc (because it prioritizes the licensing option). This seems to be a bug on older versions of vcpkg.

@rubu
Copy link

rubu commented Aug 1, 2021

@mcmtroffaes thanks for the response, again, since I use vpckg rarely, I kind of thought that maybe I need to update the ports (but I couldn't explain why then I should have this change, if I am on an old port). Thanks for explaining.

dan-shaw pushed a commit that referenced this pull request Aug 4, 2021
* [json-link] package exists

* [vcpkg-tools] update nuget to 5.9.1 (#18447)

* [vcpkg_download_distfile] Add condition for padding the SHA (#18459)

* [open6254] Enable uwp support (#18390)

* open62541: Enable uwp support

* Update versions for open62541

* [aubio] Add ws2_32 to linkage (#18385)

* [aubio] Add ws2_32 to linkage

* Update version files

* [devil] Fix ilut header (#18384)

* [devil Fix ilut header

* Update baseline

* [libpq] Add Secur32.lib and openssl to libpq cmake wrapper (#18377)

* [libpq] add secur32.lib to wrapper

* version stuff

* add openssl fix.

* fix version stuff

* [ryml] [c4core] Update RapidYaml (ryml) to newer version (#18230)

* remove old port version

* fix versions yet again

Co-authored-by: Michael Goulding <Michael.Goulding@microsoft.com>

* [yyjson] Update to v0.3.0 (#18359)

* [yyjson] Update to 0.3.0

* [yyjson] vcpkg x-add-version yyjson

* [raylib] Fix MinGW build (#18362)

.

* [arrow] Update to 4.0.0 (#17975)

* Update arrow to 4.0.0

* Format

* Try fix thrift

* Update versions/ files

* Do not set ZSTD_ROOT

* Remove double quotes causing Windows problems

* Apply patches

* Remove LIB_DIR_OPTIONS

* Tweak zstd flags

* Update version hash

* Format

* Fail early on x86

* Update hash

* Fail early on arm, arm64

* Update hash

* Add expected failures to to scripts/ci.baseline.txt

* Exclude mallocs from default features

* Update hash

* Set default-features to false for aws-sdk-cpp

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Specify only x64 support in manifest

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Remove unneeded ci.baseline.txt entries

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Remove dataset from default-features

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update hash

* Remove zstd path args

* Update hash

Co-authored-by: Tanguy Fautre <tanguy@fautre.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* [minizip] Fix usage, fix minizipConfig.cmake (#18472)

* [minizip] Fix usage, fix minizipConfig.cmake

* update version record

* [windres-rc] Fix wrapper output (#17045)

* [ffmpeg] Warn/fail when selecting unsupported features. (#17153)

* [ffmpeg] Warn/fail when selecting unsupported features.

* Update ffmpeg.json

* Bump port-version

* Update ffmpeg.json

* [ffmpeg] Check for gpl/nonfree aswell as all option.

* avisynth now support static linking

* fixup typo

* Update ffmpeg.json

* Revert to fatal error on even when all is selected

* Update ffmpeg.json

* [ffmpeg] Disable openh264 on uwp

* update

* Update versions/f-/ffmpeg.json

* update

* Update ffmpeg.json

* update

* update

* Update

Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* [uwebsockets] update to 19.2.0 (#18525)

* [uwebsockets] update to <v19.2.0>

* update version

* [libass] fix fontconfig dependency in .pc file (#18516)

* [libass] fix fontconfig dependency in .pc file on x64-linux

* [libass] bump port version

* [libass] x-add-version

* [libgpg-error] Remove COPYING.LIB from lib folder (#18492)

* [libgpg-error] Remove COPYING.LIB from lib folder

* Update version files

* [flashlight-cuda] Fix installation (#18489)

* [flashlight-cuda] Fix installation

* Update version files

* [function2] Update to version 4.2.0 (#18487)

* [infoware] update to latest commit (#18486)

* update infoware to latest commit

* update deprecated functions

* remove redundant file cleanup

* add versioning

* [nameof] Update to 0.10.1 (#18574)

* [OpenCV] update to 4.5.2 (#18572)

* [OpenCV] update to 4.5.2

* update version refs

* [OpenCV4] fix qt integration

* fix refs

* [qt5-*] Make QT and dependents build on arm macos (#18567)

* [qt5-*] Make it build on ARM64 macos

* [qt5-base] update port version

* [pcre2] Update to 10.37 (#18547)

- New upstream version 10.37
- Drop patches (fixed upstream):
    pcre2-10.35_add_check_for_Intel_CET.patch
    pcre2-10.35_fix_postfix_for_debug_Windows_builds.patch
    pcre2-10.35_fix-space.patch
- Switch from CONTROL to vcpkg.json
    .\vcpkg format-manifest .\ports\pcre2\CONTROL

* [openblas] Fix the macro collision with Windows 10 SDK (#18530)

* [openblas] Fix the macro collision with Windows 10 SDK

* Update version files

* Update feature thread as threads in vcpkg.json

* Update versions/o-/openblas.json

* [pthreads] Fix debug dll look-up path (#18528)

* [gtest] Update to 1.11.0 (#18509)

* [gtest] Update to release version 1.11.0

* x-add-version

* Update ports/gtest/vcpkg.json

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* renewal of x-add-version.

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* [librttopo] Allow building for Android  (#18451)

* [librttopo] Allow building for android

* x-add-version

* Update versions/l-/librttopo.json

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* [Qt6] Update to 6.1.1 (#18320)

* [qt6] Update to 6.1.1

* version stuff

* fix empty dir

* update version

* fix casing in qtbase

* [libpq] add secure32.lib on windows

* add clang-cl fix

* version stuff

* fix flag removal by adding a space

* version stuff

* make qt6->Qt6 usage consistent since Qt6 refers to itself as Qt6 with uppercase Q

* fix libpq wrapper opensll linkage on linux

* use policy to fix dependent ports

* version stuff

* use upstream patch

* version stuff

* fix source location for clang-cl

* version stuff

* remove ws change

* version stuff

* [libspatialite] Fix building for android (#18452)

* [libspatialite] Fix building for android

* x-add-version

* Update versions/l-/libspatialite.json

* Update libspatialite.json

* [seal]Updated to version 3.6.6. Replaced CONTROL with manifest file. (#18457)

* Updated seal to version 3.6.6. Replaced CONTROL with manifest file.

* Changed version-string to version-semver.

* Updated versions/s-/seal.json.

* Added a missing CMake arguement.

* Updated versioning.

* Fixed hexl config file.

* Updated versioning.

* Fixed hexl not finding dependency.

* Updated versioning.

* [libcopp] Update to 1.4.1 (#18425)

* [dxut, fx11, directxmath] ports updated (#18431)

* [dxut] port updated for latest servicing

* update baseline

* Update to use latest DirectXMath

* Fix baseline

* fx11 metadata update

* Updated baseline

* Converted directxmath CONTROL to vcpkg.json

* Update baseline

* Apply suggestions from code review

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Code review feedback

* Update baseline

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* [uvatlas, spectra] ports updated (#18404)

* [uvatlas, spectra] ports updated

* Update versions

* Minor code review

* Update version

* Code review feedback

* Update baseline

* [jsoncons] Update to 0.165.0 (#18284)

* [jsoncons] Update to 0.165.0

* [jsoncons] Update to 0.165.0, update baseline

* [jsoncons] Added vcpkg_fixup_pkgconfig() to portfolio.cmake

* update version

Co-authored-by: Jonliu1993 <13720414433@163.com>

* [cpr] Update to 1.6.2 (#18386)

* [cpr] Update to 1.6.2

* Update version files

* Update patch

* Update verison files

* Update ports/cpr/portfile.cmake

* Update versions/c-/cpr.json

* Fix build error on uwp

* Update versions/c-/cpr.json

* Add condition for uwp patch

* Update versions/c-/cpr.json

* Update ports/cpr/portfile.cmake

* Update versions/c-/cpr.json

* [ CGAL] Update version to 5.2.2 (#18387)

* Update to CGAL 5.2.2

* x-add-version

* Reset port version to 0

* x-add-version

* Update versions/c-/cgal.json

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>

* [nanopb] update to 0.4.5 and add generator (#18241)

* [nanopb] update to 0.4.5 and add generator

* add versions

* fix python install?

* update version

* fix python? again

* version

* test python

* add version

* fix portfile

* version

* Update ports/nanopb/portfile.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Update ports/nanopb/portfile.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* update version

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Update VMs and pick up VS2019 16.10 (#18233)

* Cherry-pick https://github.com/microsoft/vcpkg/pull/15598

* Hook deploy-inteloneapi into create-vmss.ps1.

* Add script to resolve https://github.com/microsoft/vcpkg/issues/17521

* Move tls settings deployment to the front and respond to script triggering a reboot.

* Go back to provisioning an extra disk to workaround https://github.com/microsoft/vcpkg/issues/18379

* Disallow public access to blob storage and require TLS 1.2.

* Update Pools.

* Update tool to 2021-06-19

* [simage] Skip simage on uwp platforms as it appears broken by 16.10.

* [tensorflow-cc] Skip because changes in our MacOS hardware broke the port.

* [vcpkg.cmake] PREPEND CMAKE_FIND_ROOT_PATH (#17336)

* [vcpkg.cmake] PREPEND CMAKE_FIND_ROOT_PATH

* [vcpkg.cmake] make PREPEND optional (default off, option VCPKG_PREFER_VCPKG_LIBS)

* Apply suggestions from code review

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* Update scripts/buildsystems/vcpkg.cmake

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>

* [vcpkg-unstable] Update agent pool name

* [boringssl] update to newer commit (#18604)

* [boringssl] update to newer commit

* update version

* [vcpkg baseline][kf5* librsvg] Add DISABLE_PARALLEL_CONFIGURE (#18600)

* [kf5*] Add DISABLE_PARALLEL_CONFIGURE

* Update version files

* [librsvg] Add DISABLE_PARALLEL_CONFIGURE

* Update version files

* [benchmark] Update to 1.5.5 (#18595)

* update benchmark

* version stuff

* [nuspell] Update to version 5.0.0 (#18590)

* [nuspell] Update to version 5.0.0

* x-add-version nuspell

* [matplotplusplus] Fix usage (#18583)

* [matplotplusplus] Fix usage

* update version record

* Remove rename code

* update version

* [vcpkg baseline][ncurses] Fix gnu download link (#18579)

* [ncurses] Fix gnu download link

* update version record

* [magic-enum] Update to v0.7.3 (#18575)

* [magic-enum] Update to v0.7.3

* fix

* [libsmb2] New port (#18471)

* added libsmb2 port

* added version file

* updated baseline

* Ran command
./vcpkg x-add-version --all
 and then
./vcpkg format-manifest ports/libsmb2/vcpkg.json

* updated SHA based on result of "./vcpkg x-add-version libsmb2" and also added osx=fail to CI file in order to pass CI

* suggested changes made

* sha

* Update scripts/ci.baseline.txt

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update ports/libsmb2/vcpkg.json

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update ports/libsmb2/portfile.cmake

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* sha

* added missing "vcpkg_check_linkage(ONLY_STATIC_LIBRARY)"

* sha

* vcpkg_fixup_pkgconfig()

* sha

Co-authored-by: Tim <tim@fake.WHAT>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* [fluidsynth] update to 2.2.1 (#18524)

* [fluidsynth] update to 2.2.1

* update version

* delete vcpkg_fixup_pkgconfig

* update version

* [trantor] Update to 1.5.0 (#18534)

* [trantor] Update to 1.5.0

* Add vcpkg_fixup_pkgconfig()

* [libogg] Upgrade to 1.3.5 (#18546)

* [libogg] Upgrade to 1.3.5

* Upgrade to 1.3.5.
* Convert CONTROL to vcpkg.json
* Change homepage to https://www.xiph.org/ogg (as in README.md)
* Download from the main repo https://gitlab.xiph.org/xiph/ogg

* [libogg] Use version instead of version-string in manifest

* [libogg] Update libogg.json

* [fdk-aac] Update to version 2.0.2. (#18549)

* [fdkaac] Update to version 2.0.2.

* [fdk-aac] Remove unused files.

* Update fdk-aac.json

* Update ports/fdk-aac/portfile.cmake

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* test uwp|arm compilation.

* Update fdk-aac.json

* Convert to json.

* Update vcpkg.json

Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>

* [pcre] Update to 8.45 (#18550)

- New upstream version 8.45
  This is the final release of PCRE1
- Update patches:
  export-cmake-targets.patch
  pcre-8.45_suppress_cmake_and_compiler_warnings-errors.patch
- Add patch:
  pcre-8.45_fix_postfix_for_debug_Windows_builds.patch
- Remove deprecated SYSTEM_LIBRARIES from vcpkg_fixup_pkgconfig()
- Switch from CONTROL to vcpkg.json
    .\vcpkg format-manifest .\ports\pcre\CONTROL

* [gstreamer] create a new port (#17394)

* [gstreamer] create port with meson

* initial build config
* nodownload in vcpkg_configure_meson needs be removed

* [gstreamer] remove duplicated GL headers

* 1st check for deps in windows
* mac: fix regex for bison

* [gstreamer] more detailed options

* remove glib usage

Will use WIP changes in microsoft/vcpkg

* [gstreamer] build with glib port

* [gstreamer] extract plugins to features

* fix some config errors in windows
* fails to find z.lib. this should be zlib.lib

* [gstreamer] create patches to search 'zlib'

* update tool list

* [vcpkg meson] add path of GIT

* use append for LINKER_FLAGS

Allow injection of LINKER_FLAGS to vcpkg_configure_meson

* [gstreamer] update baseline and port SHA

* [gstreamer] zlib is required for Windows

* Revert "[vcpkg meson] add path of GIT"

This reverts commit 8a67fbd1d287fa769cf516b834981ea175463492.

* [gstreamer] make git visible in meson

* [gstreamer] fix platform expression

* [gstreamer] revert change of vcpkg_configure_meson

* [gstreamer] modify build.ninja after configure

* [gstreamer] drop unknown flag with vcpkg_replace_string

* [gstreamer] disable 'devtools' option

* [gstreamer] remove dylib

* [gstreamer] move dll,pdb after install

* [gstreamer] remove 'nls' feature

Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>

* [python3] Fix python3:x64-linux builds (#18405)

* Fix build

* Update vcpkg.json

* Fix build

Co-authored-by: Ankur Verma <ankurv@microsoft.com>
Co-authored-by: Ankur Verma <ankurv@nuc.hogwarts>

* CI Fixes from 2021-06-26 (#18664)

* CI Fixes from 2021-06-26

https://dev.azure.com/vcpkg/public/_build/results?buildId=55364&view=logs&j=0a61404f-5c45-5632-e83c-408b7fcca1d6&t=59cc5a87-398a-597b-cb3d-5842723775f1

PASSING, REMOVE FROM FAIL LIST: aubio:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: aubio:x64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: aubio:x86-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: caf:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: chartdir:x64-linux (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: coolprop:x64-linux (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: fdk-aac:arm-uwp (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: fdk-aac:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: fdk-aac:x64-uwp (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: fontconfig:x64-windows-static-md (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: google-cloud-cpp:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: gtkmm:x64-linux (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: libmagic:x64-windows-static (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: libmagic:x64-windows-static-md (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: libopusenc:x64-linux (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: lua:arm-uwp (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: lua:x64-uwp (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: matio:x64-linux (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: offscale-libetcd-cpp:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: proj4:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: z3:arm64-windows (.\scripts\ci.baseline.txt)
PASSING, REMOVE FROM FAIL LIST: zeromq:arm64-windows (.\scripts\ci.baseline.txt)

:)

REGRESSION: clipp:x86-windows. If expected, add clipp:x86-windows=fail to .\scripts\ci.baseline.txt.

>[DEBUG] Downloading https://vcpkgteststorage.blob.core.windows.net/osxpr20201017/4645fafe85a8099ea97b85e939747a12e9b3b92213b5b8207a9c277537377b77b5daebd88a4c090ea89cfff2937a9fc155da6e8b5558574d7129227c28826e1c?sv=2019-12-12&ss=b&srt=sco&sp=rwlac&se=2021-06-01T19:00:00Z&st=2021-02-02T21:14:48Z&spr=https&sig=5OqlHLAKxxH9%2F2G%2BwO4ngXiG%2Bd0ASB81PklNDOIAUUk%3D
>[DEBUG] Downloading https://github.com/muellan/clipp/archive/2c32b2f1f7cc530b1ec1f62c92f698643bb368db.tar.gz
>Error: Failed to download from mirror set:
>https://vcpkgteststorage.blob.core.windows.net/osxpr20201017/4645fafe85a8099ea97b85e939747a12e9b3b92213b5b8207a9c277537377b77b5daebd88a4c090ea89cfff2937a9fc155da6e8b5558574d7129227c28826e1c?sv=2019-12-12&ss=b&srt=sco&sp=rwlac&se=2021-06-01T19:00:00Z&st=2021-02-02T21:14:48Z&spr=https&sig=5OqlHLAKxxH9%2F2G%2BwO4ngXiG%2Bd0ASB81PklNDOIAUUk%3D: failed: status code 403
>https://github.com/muellan/clipp/archive/2c32b2f1f7cc530b1ec1f62c92f698643bb368db.tar.gz: failed: status code 502
>[DEBUG] C:\A\1\14\s\src\vcpkg\base\downloads.cpp(652)

Looks like a transient download failure. Might be something funky with artifact caching.

REGRESSION: liblas:arm64-windows. If expected, add liblas:arm64-windows=fail to .\scripts\ci.baseline.txt.

>fatal error C1189: #error:  The file liblas/detail/endian.hpp needs to be set up for your CPU type.

Probably was blocked by one of the many "passing" libs on arm64-windows. Skipped.

REGRESSION: libsbml:x64-windows-static. If expected, add libsbml:x64-windows-static=fail to .\scripts\ci.baseline.txt.

>[DEBUG] Downloading https://vcpkgteststorage.blob.core.windows.net/osxpr20201017/49dedaa2fcd2077e7389a8f940adf931d80aa7a8f9d57330328372d2ac8ebcaeb03a20524df2fe0f1c6933587904613754585076c46e6cb5d6f7a001f427185b?sv=2019-12-12&ss=b&srt=sco&sp=rwlac&se=2021-06-01T19:00:00Z&st=2021-02-02T21:14:48Z&spr=https&sig=5OqlHLAKxxH9%2F2G%2BwO4ngXiG%2Bd0ASB81PklNDOIAUUk%3D
>[DEBUG] Downloading https://sourceforge.net/projects/sbml/files/libsbml/5.18.0/stable/libSBML-5.18.0-core-plus-packages-src.tar.gz/download
>Error: Failed to download from mirror set:
>https://vcpkgteststorage.blob.core.windows.net/osxpr20201017/49dedaa2fcd2077e7389a8f940adf931d80aa7a8f9d57330328372d2ac8ebcaeb03a20524df2fe0f1c6933587904613754585076c46e6cb5d6f7a001f427185b?sv=2019-12-12&ss=b&srt=sco&sp=rwlac&se=2021-06-01T19:00:00Z&st=2021-02-02T21:14:48Z&spr=https&sig=5OqlHLAKxxH9%2F2G%2BwO4ngXiG%2Bd0ASB81PklNDOIAUUk%3D: failed: status code 403
>https://sourceforge.net/projects/sbml/files/libsbml/5.18.0/stable/libSBML-5.18.0-core-plus-packages-src.tar.gz/download: WinHttpReceiveResponse() failed: 12175
>
>[DEBUG] C:\A\1\14\s\src\vcpkg\base\downloads.cpp(652)
>[DEBUG] Exiting after 548953 us (542540 us)

Looks like a transient download failure. But 403 forbidden looks like artifact caching failure...

REGRESSION: luafilesystem:arm-uwp. If expected, add luafilesystem:arm-uwp=fail to .\scripts\ci.baseline.txt.
REGRESSION: luafilesystem:x64-uwp. If expected, add luafilesystem:x64-uwp=fail to .\scripts\ci.baseline.txt.
REGRESSION: luasocket:arm-uwp. If expected, add luasocket:arm-uwp=fail to .\scripts\ci.baseline.txt.
REGRESSION: luasocket:x64-uwp. If expected, add luasocket:x64-uwp=fail to .\scripts\ci.baseline.txt.

Were previously blocked by lua, marked as 'fail'.

REGRESSION: vcpkg-find-acquire-program:arm-uwp. If expected, add vcpkg-find-acquire-program:arm-uwp=fail to .\scripts\ci.baseline.txt.
REGRESSION: vcpkg-find-acquire-program:x64-windows-static. If expected, add vcpkg-find-acquire-program:x64-windows-static=fail to .\scripts\ci.baseline.txt.
REGRESSION: vcpkg-find-acquire-program:x64-windows. If expected, add vcpkg-find-acquire-program:x64-windows=fail to .\scripts\ci.baseline.txt.

These are almost certainly the same artifact caching transient.

* Aubio typo.

* [netcdf-c] Fix pc files; use features (#18120)

* Format manifest

* New port-version

* Quote filepath expressions

* Port to vcpkg-cmake ports

* Remove invalid nc-config file

* Fix pc files

* Use features

* Add feature 'tools'

* x-add-version

* Fix build with msys2 mingw

* Update git-tree

* [portaudio] Switch to vcpkg_from_github, minor format improvements (#18065)

* Add portaudio:: namespace

* Switch from vcpkg_from_git to vcpkg_from_github

* Convert portfile to unix line-endings

* Increase port-version of portaudio

* Update version hash of portaudio

* Remove namespace patch

Signed-off-by: Hendrik <git@h3ndrk.de>

* Update version hash of portaudio

* Fix indent issue

* Update the baseline version

* Fix the port version

* Fix baseline version

* Remove redundant tag in portfile

* Update version hash of portaudio

Co-authored-by: PhoebeHui <20694052+PhoebeHui@users.noreply.github.com>

* [sleef] create a new port (#18075)

* [sleef] create a new port

* [sleef] update baseline

* [sleef] update supports

* add more supported architectures to sleef

* [sleef] update ci.baseline.txt

* Revert "[sleef] update ci.baseline.txt"

This reverts commit 39685ae755048ebc4702ddfb659026f910ce885a.

* [sleef] disable (arm & windows)

The project's CI doesn't check it. Disable in support field.

* Update ports/sleef/vcpkg.json

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* [sleef] update git-tree SHA

Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update vcpkg tool to resolve leak of the asset cache token (#18720)

* [llvm] update to 12.0.0, enable zlib and libxml2 (#17302)

* [llvm] update to 12.0.0, enable zlib and libxml2

* [llvm] disable libxml2 by default, arm64-windows should be supported

* [llvm] try to fix build with ffi on Windows #17663

* [llvm] re-enable libxml2

* [llvm] fix formatting

* [llvm] overwrite version

* [mesa] update to v21.1.0

* [llvm] update ci.baseline

* [halide] update to the latest master commit

* [llvm] disable libxml2 port until complete PR #15390

* update versions

* [llvm] fix disabling of external libraries

* update version

* update ci.baseline

* update ci.baseline

* fix typo

* [llvm] fix libxml2 (depends on #17945)

* revert "[halide] update to the latest master commit"

* update versions

* [halide] fix zlib dependency for tools

* update versions

* [halide] update to official release v12.0.0

* update versions

* [halide] update to v12.0.1

* update version

* [mesa] remove llvm from defaults

* update version

* update ci.baseline

* [mesa] update to v21.1.2 and fix build with LLVM on Windows

* [llvm] allow to build libunwind project on Windows

* update versions

* [mesa] update ci.baseline.txt to disable x64-windows-static-md, may be fixed in the PR #18495

* [vcpkg internal] Update compiler test scripts to use asset caching.

* [mpg123] Upgrade to 1.28.0 (#18403)

* [mpg123] Upgrade to 1.28.0

* [libopenmpt] Upgrade to 2017-01-28-cf2390140-2

* [mpg123] Disable UWP port

* Fix libmpg123 UWP build

* Fix libout123 UWP build

* Fix libsyn123 UWP build

* Update ports/libopenmpt/CMakeLists.txt

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update ports/libopenmpt/CMakeLists.txt

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* [libopenmpt] Update libopenmpt.json

* [mpg123] Separate UWP patches

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* [vcpkg_configure_make] Fix mingw (cross) build issues (#18554)

* Set ENV{WINDRES} for mingw

* Fix passing of '${prefix}' for mingw cross builds

* [vcpkg] Add static triplet for arm-windows (#18300)

* [scripts] Add vcpkg_completions.zsh (#18274)

* Add vcpkg_completions.zsh

* Update scripts/vcpkg_completion.zsh

* [vcpkg baseline][simage] Update to 1.8.1 (#18645)

* [simage] Update to 1.8.1

* Format manifest and update version files

* Revert the changes for arm and uwp in ci.baseline.txt

* Update versions/s-/simage.json

* Update ports/simage/portfile.cmake

* Update ports/simage/portfile.cmake

* Update ports/simage/portfile.cmake

* Update versions/s-/simage.json

* Add options to packages

* Update versions/s-/simage.json

* Update portfile.cmake

* Update versions/s-/simage.json

* Update portfile.cmake

* Update versions/s-/simage.json

* [simage] Reorganize all features, add features

* Install tool simage-config on non-Windows

* fix typo

* Add supports field and update ci.baseline.txt

* Update versions/s-/simage.json

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>

* [curl] Fix linker flags in curl-config and libcurl.pc for osx (#17790)

* Fix exported framework linker flags for osx

* x-add-version

* Remove cmake version check

* Update git-tree

* [halide] Fix several issues with the Halide port after v12 (#18747)

* Fix several issues with the Halide port after v12

1. Use vcpkg-cmake and vcpkg-cmake-config ports
2. Fix usage file to point to relevant documentation
3. Remove OpenGL feature (Halide 12 dropped support)
4. Drop VCPKG_POLICY_EMPTY_PACKAGE
5. Set new Halide packaging variables for better vcpkg compliance.

* update versions

* [nettle] Remove from ci.baseline.txt (#18745)

* [nettle] Test on x64 windows

* Revert the changes for nettle

* [tbb] Remove ability to disable exception support in TBB runtime (#18740)

* After filing an issue with TBB (https://github.com/oneapi-src/oneTBB/issues/414), I found out that building the library with exceptions explicitly disabled as I had added support for had gone from not officially supported to more explicitly disallowed

* update tbb port-version

* run x-add-version

* [libressl] update to 3.3.3 (#18729)

Resolves #18682

* [asio] update to 1.18.2 (#18728)

* [asio] update to 1.18.2

* update versions

* [json-dto] Update to 0.2.13 (#18710)

* json_dto updated to 0.2.13.

* x-add-version for json-dto.

* [README_ko_KR.md] Fix typo for korean doc (#18673)

원도우 -> 윈도우

* [geographiclib] Update to version 1.52 (#18694)

* [geographiclib] Update to version 1.52

* run ./vcpkg x-add-version geographiclib

* ports/geographiclib/vcpkg.json: version-string -> version

* Another iteration with x-add-version

* [spdlog] Do not build examples (#18639)

* Don't build spdlog examples

* Update port version

* [drogon] Update to 1.7.1 (#18643)

* [socket-io-client] update to 3.0.0  (#18646)

* [socket-io-client] update to 3.0.0

* update version

* update patch file

* update version

* [morton-nd] Update to v4.0.0. (#18652)

* Update morton-nd to v4.0.0.

* Update baselines.

* [libdatachannel] Fix usage (#18621)

* [libdatachannel] Fix usage

* Update version files

* [fmt] Fix an easily avoidable compilation warning (#18622)

* Fix an unconditional #pragma warning breaking other compilers.

* Increase fmt version

* re-ran vcpkg x-add-version --all --overwrite-version, this time it produced a different result for some reason

* [sentry-native] Update to 0.4.10 (#18627)

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>

* [Vc] Update to 1.4.2 (#18601)

* [seal] Fixed cannot find SEAL. (#18596)

* Fixed cannot find seal.

* Updated versioning.

* [mongo-c-driver] Fix for custom VCPKG_BUILD_TYPE (#18569)

* Fix mongo-c-driver for custom VCPKG_BUILD_TYPE

* Update version

* Update ports/mongo-c-driver/portfile.cmake

* Update versions/m-/mongo-c-driver.json

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>

* [protobuf] Fixed protoc path (#18741)

* fixed protoc path

* bumped version

* [recast] Export unofficial target (#18671)

* [recast] Export unofficial target

* update version record

* Export INTERFACE_INCLUDE_DIRECTORIES

* Export more include dirs.

* Update versions/r-/recast.json

* [vcpkg] Expand Architecture list with escape chars (#18156)

* Expand Architecture list with escape chars

This expands the architecture lists with escape characters. When
building FAT binaries for macos using multiple architectures in the
values they need to be escaped otherwise they are passed on to CMake
incorrectly #14932

* Adding the architecture fix to vcpkg-cmake port
updating port vcpkg-cmake version

* updated version in baseline

* [ffmpeg] multi arch support (#18635)

* Expand Architecture list with escape chars

This expands the architecture lists with escape characters. When
building FAT binaries for macos using multiple architectures in the
values they need to be escaped otherwise they are passed on to CMake
incorrectly #14932

* Adding the architecture fix to vcpkg-cmake port
updating port vcpkg-cmake version

* updated version in baseline

* Allow building ffmpeg for multiple architectures on macOS

Since ffmpeg does _not_ support multi-arch builds due to their use of
autotools and config.h which then includes the wrong platform-dependent
functions, we must perform two separate builds and join them using lipo

* fixup! Allow building ffmpeg for multiple architectures on macOS

* fixup! Allow building ffmpeg for multiple architectures on macOS

Co-authored-by: Sander Cox <sander@paralleldimension.nl>
Co-authored-by: Martijn Otto <martijn@resolume.com>

* [libxml2] Fix target (#18714)

* fix LibXml2 target dependencies

* updated version files

* [bzip2] Update repository (#18705)

* [bzip2] Update repository

* Update version files

* [tgui] Fix feature tool dependency (#18724)

* [tgui] Fix feature tool dependency

* update version record

* [OpenSSL] support for "no-autoload-config" config option (#18389)

* [OpenSSL]: support for "no-autoload-config" config option

OpenSSL has "no-autoload-config" config option,
which disables automatic config loading:

  https://github.com/openssl/openssl/pull/5959

This patch allows to set above option via variable
in custom triplet:

  # build-openssl-no-autoload-config.cmake
  set(OPENSSL_NO_AUTOLOAD_CONFIG ON)

and use it like:

  vcpkg install --overlay-triplets=<path-to-triplets> \
    openssl:build-openssl-no-autoload-config

Signed-off-by: Lev Stipakov <lev@openvpn.net>

* [OpenSSL] bump version

Signed-off-by: Lev Stipakov <lev@openvpn.net>

* [rmlui] Add Rmlui library (#18409)

* Add RmlUi port

* Update versions

* Fix uwp build

* Update versions

* Add maintainers to manifest

* Update version

* Update ports/rmlui/portfile.cmake

Co-authored-by: Noam Chitayat <noam-c@users.noreply.github.com>

* - Update to RmlUi 4.1, fixes some issues with missing dependencies.
- Add robin-hood-hashing as dependency, replacing built-in copy.
- Only need FreeType core.
- Static library definition now replaced in-source.

* Fix config name

* Change source in current packages directory

* Use robin_hood.h included from vcpkg

* Move source modifications to robin_hood patch

* Fix path in patch

Co-authored-by: Noam Chitayat <noam-c@users.noreply.github.com>

* [cnl] Update to version 1.1.7 (#18439)

* [cnl] update to version 1.1.7

* Update baseline.json

* Update ports/cnl/CONTROL

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update ports/cnl/portfile.cmake

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update HEAD_REF to point to main

* Bump port-version

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Run vcpkg x-add-version cnl

* Update versions/c-/cnl.json

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update ports/cnl/CONTROL

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update versions/baseline.json

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update versions/c-/cnl.json

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Update git tree with vcpkg x-add-version

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* [vcpkg.cmake] fix X_VCPKG_APPLOCAL_DEPS_INSTALL (#18607)

* [vcpkg.cmake] fix X_VCPKG_APPLOCAL_DEPS_INSTALL

* Billy CR

* [klein] create a new port  (#18279)

* [klein] new port

* [klein] Replace version-string by version

* [klein] Add call to vcpkg_fixup_pkgconfig()

* [klein] Replace klein by ${PORT}

* [klein] Add patch to avoid using FetchContent

* [klein] Change version to version-date

* update version

* Apply suggestions from code review

Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* Update git-tree version

Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>

* [vcpkg baseline][cnl] Disable tests (#18767)

* [hdf5] Fix linking order in pc file (#18825)

* Fix link order in pc file

* x-add-version

* [catch2] Fix linux build in NTFS fs (#18814)

file(RENAME Camel lower) works fine when running vcpkg in
Windows Powershell with triplet x64-windows in NTFS fs.

file(RENAME Camel lower) does not work fine when running vcpkg in
WSL with triplet x64-linux in NTFS.

* [binarycaching.md] Improve Azure DevOps example (#18807)

Add a missing, but required task for Azure DevOps Pipelines, to automatically authenticate against the Artifacts registry.
This should help any vcpkg newcomer to integrate easily.

* [sdl2-mixer] Add fluidsynth feature  (#18826)

* [sdl2-mixer] Add fluidsynth feature

* [sdl2-mixer] Add fluidsynth feature

* [sdl2-mixer] Add fluidsynth feature

* Updated versions & fixed style

* Fixed version hash

* [paho-mqtt] update to 1.3.9 (#18765)

* [paho-mqtt] update to 1.3.9

* update version

* revert patch format

* update version

* [Qt6] Update to 6.1.2 (#18787)

* update qt to 6.1.2

* version stuff

* [ffmpeg] fix LGPL build, disable avisynthplus on static builds (#18803)

* [ffmpeg] do not pull in postproc for LGPL build

* [ffmpeg] disable avisynthplus on static builds (as it is not functional)

* [ffmpeg] bump port version

* [ffmpeg] x-add-version

* [google-cloud-cpp] update to latest release (v1.29.0) (#18759)

* [exiv2] update to 0.27.4 (#18750)

* [exiv2] update to 0.27.4

* update version

* [crow] update to v0.3+1 (#18706)

Signed-off-by: Luca Schlecker <luca.schlecker@hotmail.com>

* [irrlicht] Add OSX support (#18725)

* Fix Irrlicht compilation on OSX

* Update port description

* Update portfile instructions

* Update version

* Fix patch files

* Add missing cmake dependencies

* Remove obsolete comment

* Update version

* Remove OBJCXX language from project definition to prevent Windows builds from failing

* Update versions

* Code review tweaks

* Update version

* Update versions/i-/irrlicht.json

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>

* Fix qt5-3d build failure on OSX

* Update qt5-3d version

* Update port-version for qt5-3d

* Update version for qt5-3d

* [qt5-3d] Revert modification to previous version entry

Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Robert Schumacher <ras0219@outlook.com>

* [mapbox-wagyu] add new port (#18771)

* add wagyu

* add versions

* update hash

* update versions

* [ftxui] Add new port (fix #16327) (#18360)

* [ftxui] Add new port (fix #16327)

* [ftxui] x-add-version ftxui

* [ftxui] Drop UWP support

* [ftxui] Update to 2021-06-16

* [ftxui] Overwrite version

* [ftxui] Try to fix linux and macOS build

* [ftxui] Overwrite version

* [ftxui] Fail fast on UWP

* [ftxui] Clean version file

* [ftxui] Overwrite version

* [ftxui] Update to 2021-06-17

* [ftxui] Overwrite version

* [ftxui] Remove debug/share

* [ftxui] Overwrite version

* [ftxui] Quote paths

* [ftxui] Overwrite version

* [xlsxio] new port (#18438)

* add port: xlsxio

* vcpkg x-add-version xlsxio

* fix deps

* add vcpkg_fixup_pkgconfig()

* Apply suggestions from code review

To be consistent, `OUT_FEATURE_OPTIONS FEATURE_OPTIONS` in a new line, as in `vcpkg_from_git`.

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Update ports/xlsxio/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* format

* use date as version string

* vcpkg format-manifest

* Update ports/xlsxio/portfile.cmake

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* patch for dependency

* fix typo

* vcpkg x-add-version

* remove feature wide

* Update ports/xlsxio/vcpkg.json

deprecate libzip that's an alternative and imperfect

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update ports/xlsxio/vcpkg.json

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* Update versions/x-/xlsxio.json

Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>

* Remove x64-windows-cpp17 community triplet

Co-authored-by: abc <a@b.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* [boost-modular-build-helper] Fix boost build toolchain options not being used (#18529)

* Fix boost build toolchain options not being used

The issue was due to the options only being set for the gcc toolchain,
and then only for a specific version. On platforms defaulting to a
different toolchain (e.g. macOS) this didn't work at all.

Additionally, some missing flags were not propagated, in particular the
CMAKE_OSX_DEPLOYMENT_TARGET, CMAKE_OSX_SYSROOT and CMAKE_OSX_ARCHITECTURES

* [boost-modular-build-helper] Apply CR comments

Co-authored-by: Martijn Otto <git@martijnotto.nl>
Co-authored-by: Robert Schumacher <ras0219@outlook.com>

* [libzippp] Update to 4.1-1.8.0 (#18553)

Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>

* [proxywrapper] Remove proxywrapper package (#18692)

* Remove proxywrapper package

* [proxywrapper] Remove from baseline since there is no longer a tested version of the port

Co-authored-by: Robert Schumacher <ras0219@outlook.com>

* [glew] Improve messages for system opengl dependency (#18672)

* [glew] Fix the dependency

* Update baseline version

* Adress the review suggestions

* Update the baseline revision

* [socket-io-client]fix socket-io-client use  (#18768)

* update patch file

* update version

* [boost] update to 1.76.0 (#17335)

* [boost] update generator script for boost 1.76

* [boost] update ports to 1.76.0 (run generator)

* [boost] fix windows build?

* [quantlib] update and fix mac build

* [symengine] update and fix build

* [avro-cpp] update to latest master and fix windows build

* [folly] update to 2021.05.31.00

* [fbthrift, fizz, wangle] update to v2021.05.31.00 and fix build

* [proxygen] update to version 2021.05.31.00

* [fizz, proxygen, fbthrift] fix sodium target

* [proxygen] also works on macOS

* [quantlib] use fix from upstream to fix mac build

* [symengine] minimize patch file and fix deprecation warning

* [folly,proxygen,wangle,fizz,fbthrift] update to 2021.06.14.00

* [fbthrift] remove unnecessary dependency rsocket

I couldn't find any information that this dependency exists. The term is used in the code, but not in the context of a dependency

* [fizz,fbthrift] fix zlib dependency

* [fbthrift] pass required flex executable to cmake configure

* add version files

* [boost] generate-ports.ps1: Apply code review

* [boost] changes from new version of generate-ports script

* update version files

* [boost] generate-ports.ps1: Apply code review

* [cctag] Add new port (#16719)

* [cctag] add port

* [cctag] using version-semver

* [cctag] fix for multithreaded compilation

* [cctag] update ci.baseline

* [cctag] fix format json

* [cctag] fix version with semver

* [cctag] update version sha

* [cctag] v1.0.0-rc2

* [cctag] v1.0.0-rc3 with vcpkg_copy_tools(), much simpler

* [cctag] update port file

* [cctag] v1.0.0-rc4

* [cctag] update version file

* [cctag] v1.0.0

* [cctag] update version file v1.0.0

* [sleepy-discord] Add new port (#17604)

* New port sleepy-discord

* Add versions for Sleepy Discord

* SleepyDiscord: use website as homepage

* SleepyDiscord: Remove No newline at end git diff

* SleepyDiscord: format manifest

* SleepyDiscord: rerun x-add-version

* SleepyDiscord: add compression feature

* SleepyDiscord: Update version string

* SleepyDiscord: rerun x-add-version again

* SleepyDiscord: set version-date

* SleepyDiscord: rerun add-version

* SleepyDiscord: Add requested changes

* SleepyDiscord: run add version

* SleepyDiscord: update library

* SleepyDiscord: rerun x-add-version

* SleepyDiscord: copy config file to share folder

* SleepyDiscord: run add-version

* SleepyDiscord: Fix issue with parallel configuring

* SleepyDiscord: x-add-version

* SleepyDiscord: replace deprecated functions

* SleepyDiscord: x-add-version

* SleepyDiscord: Install config during configure

* SleepyDiscord: x-add-version

* [sleepy-discord] update: add Select Menus

* [sleepy-discord] run add-version

* [sleepy-discord] rerun add-verion

* Download khrplatform.h with vcpkg instead of gl3w_gen.py so that our downloader settings are used (#18858)

Alternative resolution of https://github.com/microsoft/vcpkg/pull/18846/

* [azure-core-cpp] Update to 1.1.0 (#18779)

* [azure-core-cpp] Update to 1.1.0
## 1.1.0 (2021-07-02)

### Bugs Fixed

- Fixed a memory leak issue in `Base64Encode()`. (A community contribution, courtesy of _[jorgen](https://github.com/jorgen)_)

### Other Changes

- Made internal-only changes to support the Azure Key Vault client library.

### Acknowledgments

Thank you to our developer community members who helped to make Azure Core better with their contributions to this release:

- Jorgen Lind _([GitHub](https://github.com/jorgen))_

* [azure-storage-common-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)

### Bug Fixes

- Fixed a memory leak issue while parsing XML.

* [azure-storage-blobs-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)

### Bug Fixes

- Fixed a bug where transactional MD5 hash was treated as blob MD5 hash when downloading partial blob.

* [azure-storage-files-datalake-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)

### Bug Fixes

- Fixed a bug where transactional MD5 hash was treated as blob MD5 hash when downloading partial blob.

* [azure-storage-files-shares-cpp] Update to 12.0.1
## 12.0.1 (2021-07-07)

No API changes since `12.0.0`.

* Remove curl version from vcpkg manifest

* Update version files

Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>

* [protopuf] Update to 2.1.0 (#18757)

* [protopuf] update to 2.1.0

* [protopuf] add version info

* [utf8proc] Export cmake targets (#18860)

* [utf8proc] Export cmake targets

* Update the baseline version

* [gli] upgrade the gli to latest (#18715)

* upgrade the gli to latest

* update the version of gli

* update the version of gli

* [gli] Revert patch, use date scheme

Co-authored-by: Robert Schumacher <roschuma@microsoft.com>

* [protozero] update to 1.7.0 (#18842)

* update protozero to 1.7.0

* update versions

* apply suggestions

* version

* [sentry-native] Update to 0.4.11 (#18856)

Signed-off-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>

* [ avcpp ] Update version (#18436)

* remove avcpp patch that was accepted upstream.

revert port version

* update versions

* [daw-json-link daw-utf-range daw-header-libraries] new port

* [daw-header-libraries daw-utf-range daw-json-link]: vcpkg_cmake_configure, vcpkg_cmake_install, vcpkg_cmake_config_fixup

* [daw-json-link daw-utf-range daw-header-libraries] vcpkg x-add-version

* Remove useless version file

* [daw-header-libraries daw-utf-8 daw-json-link] newest source

* [daw-header-libraries daw-utf-range daw-json-link] vcpkg x-add-version

* [daw-header-libraries daw-json-link daw-utf-range] doc: comment as header-only in portfile.cmake

* [daw-header-libraries daw-json-link daw-utf-range] --overwrite-version x-add-version

* Update versions/d-/daw-header-libraries.json

* Update versions/d-/daw-json-link.json

* Update versions/d-/daw-utf-range.json

Co-authored-by: Michael Heyman <Michael.Heyman@jhuapl.edu>
Co-authored-by: Alexander Neumann <30894796+Neumann-A@users.noreply.github.com>
Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Co-authored-by: Silvio Traversaro <silvio.traversaro@iit.it>
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
Co-authored-by: Michael Goulding <michael.goulding@live.com>
Co-authored-by: Michael Goulding <Michael.Goulding@microsoft.com>
Co-authored-by: myd7349 <myd7349@gmail.com>
Co-authored-by: Leonid Pospelov <pospelovlm@yandex.ru>
Co-authored-by: Ian Cook <ianmcook@gmail.com>
Co-authored-by: Tanguy Fautre <tanguy@fautre.com>
Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
Co-authored-by: Kai Pastor <dg0yt@darc.de>
Co-authored-by: Matthew Oliver <protogonoi@gmail.com>
Co-authored-by: Billy Robert ONeal III <bion@microsoft.com>
Co-authored-by: JonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>
Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com>
Co-authored-by: Gregor Jasny <gregor.jasny@logmein.com>
Co-authored-by: Ryan <ryan__mckenzie@hotmail.com>
Co-authored-by: Daniil Goncharov <neargye@gmail.com>
Co-authored-by: Stefano Sinigardi <stesinigardi@hotmail.com>
Co-authored-by: Lucius Q. User <31438459+Lucius-Q-User@users.noreply.github.com>
Co-authored-by: Wolfgang Stöggl <c72578@yahoo.de>
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Co-authored-by: SvenPStarFinanz <spa@starfinanz.de>
Co-authored-by: Matthias Kuhn <matthias@opengis.ch>
Co-authored-by: Wei Dai <wei.dai@microsoft.com>
Co-authored-by: WenTao Ou <admin@owent.net>
Co-authored-by: Chuck Walbourn <walbourn@users.noreply.github.com>
Co-authored-by: Daniel Parker <danielaparker@yahoo.com>
Co-authored-by: Jonliu1993 <13720414433@163.com>
Co-authored-by: Maxime GIMENO <maxime.gimeno@gmail.com>
Co-authored-by: Mathis Logemann <mathisloge@gmail.com>
Co-authored-by: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com>
Co-authored-by: autoantwort <41973254+autoantwort@users.noreply.github.com>
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
Co-authored-by: Dimitrij Mijoski <dmjpp@hotmail.com>
Co-authored-by: timmeh87 <31858838+timmeh87@users.noreply.github.com>
Co-authored-by: Tim <tim@fake.WHAT>
Co-authored-by: An Tao <antao2002@gmail.com>
Co-authored-by: evpobr <evpobr@gmail.com>
Co-authored-by: Park DongHa <luncliff@gmail.com>
Co-authored-by: Ankur Verma <31362771+ankurverma85@users.noreply.github.com>
Co-authored-by: Ankur Verma <ankurv@microsoft.com>
Co-authored-by: Ankur Verma <ankurv@nuc.hogwarts>
Co-authored-by: Hendrik <dev.nipe.systems@gmail.com>
Co-authored-by: Yury Bura <yurybura@gmail.com>
Co-authored-by: Richard Yu <yurichard3839@gmail.com>
Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
Co-authored-by: Alex Reinking <alex.reinking@gmail.com>
Co-authored-by: aggieNick02 <nick@pcpartpicker.com>
Co-authored-by: Yuriy O'Donnell <yuriyo@gmail.com>
Co-authored-by: eao197 <eao197@users.noreply.github.com>
Co-authored-by: goyarn <59996142+goyarn@users.noreply.github.com>
Co-authored-by: Charles Karney <charles@karney.com>
Co-authored-by: Daumantas Kavolis <12998363+dkavolis@users.noreply.github.com>
Co-authored-by: Kevin Hartman <kevin@hart.mn>
Co-authored-by: Matt Haynie <mrhaynie@live.com>
Co-authored-by: Vitalii Koshura <lestat.de.lionkur@gmail.com>
Co-authored-by: Bernhard Manfred Gruber <bernhardmgruber@gmail.com>
Co-authored-by: Johannes Schönberger <johannes.schonberger@microsoft.com>
Co-authored-by: bucurb <bobuc@microsoft.com>
Co-authored-by: Sander Cox <sander@paralleldimension.nl>
Co-authored-by: omartijn <44672243+omartijn@users.noreply.github.com>
Co-authored-by: Martijn Otto <martijn@resolume.com>
Co-authored-by: Lev Stipakov <lev@openvpn.net>
Co-authored-by: Michael R. P. Ragazzon <mikke89@users.noreply.github.com>
Co-authored-by: Noam Chitayat <noam-c@users.noreply.github.com>
Co-authored-by: mathijs727 <mathijs.l.molenaar@gmail.com>
Co-authored-by: João Maia <jpmmaia@gmail.com>
Co-authored-by: LE GARREC Vincent <github@le-garrec.fr>
Co-authored-by: Julian Xhokaxhiu <julianxhokaxhiu@users.noreply.github.com>
Co-authored-by: JackMacWindows <jackmacwindowslinux@gmail.com>
Co-authored-by: Carlos O'Ryan <coryan@users.noreply.github.com>
Co-authored-by: Luca Schlecker <luca.schlecker@hotmail.com>
Co-authored-by: Artem Shubovych <shybovycha@gmail.com>
Co-authored-by: Robert Schumacher <ras0219@outlook.com>
Co-authored-by: Ronald <3665590+playgithub@users.noreply.github.com>
Co-authored-by: abc <a@b.com>
Co-authored-by: Martijn Otto <git@martijnotto.nl>
Co-authored-by: Cédric Tabin <tabin.cedric@gmail.com>
Co-authored-by: Cédric Tabin <cedric.tabin@gmail.com>
Co-authored-by: shishirb-MSFT <50385517+shishirb-MSFT@users.noreply.github.com>
Co-authored-by: Simone Gasparini <simone.gasparini@gmail.com>
Co-authored-by: Sleepy Flower Girl <wuhao64@gmail.com>
Co-authored-by: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com>
Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
Co-authored-by: Twice <i@twice.moe>
Co-authored-by: Xing Ji <33065325+jixingcn@users.noreply.github.com>
Co-authored-by: Charlie Barto <chbarto@microsoft.com>
Co-authored-by: mheyman <mheyman@localdomain>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category:port-bug The issue is with a library, which is something the port should already support info:reviewed Pull Request changes follow basic guidelines
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants