aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-12-08[libcopp] Update to 1.3.4 (#14996) (#14997)OWenT
2020-12-08[fontconfig] fix dll name in def file (#14946)Alexander Neumann
* [fontconfig] fix dll name in def file * make the patch conditional
2020-12-08[cimg] update to 2.9.4 (#14923)JonLiu1993
* [cimg] update to 2.9.4 * Add fixup function * Delete fixup function
2020-12-07[vcpkg_fixup_pkgconfig] Handle spaces in path, do not validate individual ↵ras0219
libraries (#13126)
2020-12-07[vcpkg] x_vcpkg_install_local_dependencies fixes (#14977)Sander Cox
* Conversion to PARSE_ARGV was missing parameter * Cannot install for interface_libraries
2020-12-072020-12-07 Build Fixes (#14986)Billy O'Neal
From most recent completed nightly build: https://dev.azure.com/vcpkg/public/_build/results?buildId=46182 PASSING, REMOVE FROM FAIL LIST: ignition-msgs5:x64-linux (.\scripts\ci.baseline.txt) I'm assuming this got fixed by @strega-nil 's llvm changes: https://github.com/microsoft/vcpkg/pull/14399 PASSING, REMOVE FROM FAIL LIST: libraqm:x64-windows-static (.\scripts\ci.baseline.txt) Cause unknown. PASSING, REMOVE FROM FAIL LIST: openssl-windows:arm-uwp (.\scripts\ci.baseline.txt) PASSING, REMOVE FROM FAIL LIST: openssl-windows:x64-uwp (.\scripts\ci.baseline.txt) Probably fixed by https://github.com/microsoft/vcpkg/pull/14308 ; also removed Supports: excluded entries for these. PASSING, REMOVE FROM FAIL LIST: speexdsp:x64-osx (.\scripts\ci.baseline.txt) Probably fixed by https://github.com/microsoft/vcpkg/pull/14758 PASSING, REMOVE FROM FAIL LIST: sundials:arm64-windows (.\scripts\ci.baseline.txt) PASSING, REMOVE FROM FAIL LIST: sundials:x64-windows (.\scripts\ci.baseline.txt) PASSING, REMOVE FROM FAIL LIST: sundials:x86-windows (.\scripts\ci.baseline.txt) Probably fixed by https://github.com/microsoft/vcpkg/pull/14618 PASSING, REMOVE FROM FAIL LIST: wepoll:arm-uwp (.\scripts\ci.baseline.txt) PASSING, REMOVE FROM FAIL LIST: wepoll:x64-uwp (.\scripts\ci.baseline.txt) Probably fixed by https://github.com/microsoft/vcpkg/pull/14456 -- and also fixed missing Supports. REGRESSION: ceres:x64-windows. If expected, add ceres:x64-windows=fail to .\scripts\ci.baseline.txt. REGRESSION: ceres:x86-windows. If expected, add ceres:x86-windows=fail to .\scripts\ci.baseline.txt. Probably broken by https://github.com/microsoft/vcpkg/pull/14719 ; ceres has: ``` if (BUILD_BENCHMARKS) find_package(benchmark QUIET) if (benchmark_FOUND) message("-- Found Google benchmark library. Building Ceres benchmarks.") else() message("-- Failed to find Google benchmark library, disabling build of benchmarks.") update_cache_variable(BUILD_BENCHMARKS OFF) endif() mark_as_advanced(benchmark_DIR) endif() ``` so it passed there because Google Benchmark was not also installed. Worked around by `-DBUILD_BENCHMARKS=OFF`. REGRESSION: dirent:arm64-windows. If expected, add dirent:arm64-windows=fail to .\scripts\ci.baseline.txt. Transient: ``` -- Downloading https://github.com/tronkko/dirent/archive/1.23.2.tar.gz... -- Downloading https://github.com/tronkko/dirent/archive/1.23.2.tar.gz... Failed. Status: 28;"Timeout was reached" CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:184 (message): ``` REGRESSION: discord-rpc:arm64-windows. If expected, add discord-rpc:arm64-windows=fail to .\scripts\ci.baseline.txt. Transient: ``` -- Downloading https://github.com/discordapp/discord-rpc/archive/v3.4.0.tar.gz... -- Downloading https://github.com/discordapp/discord-rpc/archive/v3.4.0.tar.gz... Failed. Status: 28;"Timeout was reached" CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:184 (message): ``` REGRESSION: libunibreak:x86-windows. If expected, add libunibreak:x86-windows=fail to .\scripts\ci.baseline.txt. Transient: ``` -- Note: libunibreak only supports static library linkage. Building static library. -- Downloading https://github.com/adah1972/libunibreak/archive/8df6ef4ebe5dbd2a49539d05366337ab7fb57ae3.tar.gz... -- Downloading https://github.com/adah1972/libunibreak/archive/8df6ef4ebe5dbd2a49539d05366337ab7fb57ae3.tar.gz... Failed. Status: 28;"Timeout was reached" ``` REGRESSION: libzip:x86-windows. If expected, add libzip:x86-windows=fail to .\scripts\ci.baseline.txt. Transient: ``` -- Downloading https://github.com/nih-at/libzip/archive/66e496489bdae81bfda8b0088172871d8fda0032.tar.gz... -- Downloading https://github.com/nih-at/libzip/archive/66e496489bdae81bfda8b0088172871d8fda0032.tar.gz... Failed. Status: 28;"Timeout was reached" CMake Error at scripts/cmake/vcpkg_download_distfile.cmake:184 (message): ``` REGRESSION: ocilib:x64-windows-static. If expected, add ocilib:x64-windows-static=fail to .\scripts\ci.baseline.txt. Probably broken by https://github.com/microsoft/vcpkg/pull/13158 but it passed there: (Link target) -> chromium_base.lib(stack_trace_win.obj) : error LNK2001: unresolved external symbol __imp_SymCleanup [D:\buildtrees\ocilib\x64-windows-static-rel\4fc7a69e6d-337dbe59ca.clean\proj\dll\ocilib_dll_vs2019.vcxproj] Looks like it was skipped before that PR because the port conflicts with chromium-base which couldn't have been caught in that PR. Putting it back on ci.baseline.txt. REGRESSION: osgearth:x64-windows. If expected, add osgearth:x64-windows=fail to .\scripts\ci.baseline.txt. REGRESSION: osgearth:x86-windows. If expected, add osgearth:x86-windows=fail to .\scripts\ci.baseline.txt. Cause unknown. I think we should skip this one in ci.baseline.txt since I've never seen it work OK. REGRESSION: qt5-tools:x64-windows-static. If expected, add qt5-tools:x64-windows-static=fail to .\scripts\ci.baseline.txt. Last I heard @ras0219 was investigating this one but that's been a while now. I pinged him again.
2020-12-07[vcpkg] Add SemVer and Date versioning schemes (#14889)Victor Romero
* [vcpkg] Add semver versioning scheme * Remove unnecessary code * Fix SemVer comparison and add sorting test * Add date scheme * PR comments * Use a different column for date and semver schemes. * Use locale agnostic conversion to long * Add tests for version scheme change * Validate version strings before parsing * Format * Improve error messages * PR comments * PR comments pt. 2
2020-12-07[ NASM ] Update version from 2.14.02 to 2.15.05 (#14970)Joël Thieffry
* Bump NASM version from 2.14.02 to 2.15.05 The previous version is not available anymore at https://fossies.org/windows/misc/nasm-2.14.02-win32.zip . libjpeg-turbo builds fine now. * [freetds] Disable parallel configure Co-authored-by: JackBoosY <yuzaiyang@beyondsoft.com>
2020-12-07[libcopp] Update to 1.3.3 (#14981)OWenT
2020-12-07[EASTL] update to 3.17.03 (#14980)JonLiu1993
2020-12-07[nanobench] update to 4.3.0 (#14975)JonLiu1993
2020-12-07[ATK] Installing .pc files (#14972)HrOokami
2020-12-07[cppgraphqlgen] Update to v3.3.0 (#14842)Bill Avery
2020-12-07[pegtl] Update to 3.0.0 release (#14841)Bill Avery
2020-12-06[vcpkg] Add versioning fields to schema (#14947)ras0219
2020-12-06[vcpkg] Add --nuget-description option for `vcpkg export` (#14953)ras0219
2020-12-06[pugixml] Update to 1.11.1 (#14813)Rémy Tassoux
2020-12-04[usockets] Fix build issue with feature ssl (#14935)Phoebe
2020-12-04[libpqxx] update to 7.2.1 (#14921)JonLiu1993
2020-12-04[quill] Update 1.6.0 (#14916)Odysseas Georgoudis
* Update quill to 1.6.0 * revert enabling arm windows build * Update portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2020-12-04[arrayfire] Update port to fix cuSparse issue with CUDA 10.1 (#14911)Jacob Kahn
2020-12-04[flashlight-cuda] Add stb as dependency, bump port commit (#14912)Jacob Kahn
2020-12-04[kuku] Add new port (#14898)Radames Cruz
2020-12-04[termcolor]; Add termcolor (#14897)ppenguin
2020-12-04[cuda] Add ENV CUDA_HOME to path hints (#14880)Jacob Kahn
2020-12-04[opencascade] Fix static build (#14901)Jack·Boos·Yu
2020-12-04[aws-sdk-cpp] Add find_dependency to AWSSDKConfig.cmake and fix usage (#14936)Jack·Boos·Yu
2020-12-04[nghttp2] Update to 1.42.0. (#14862)Gerald Combs
2020-12-04Change Nuget binary cache pre-release info to always start with letters (#14857)Francois Rivard
2020-12-04[Chipmunk] build via cmake (#14776)Bruno Carvalho
2020-12-04Fix failures when parsing the default options for binary caching not being ↵Billy O'Neal
emitted. (#14945) * Fix failures when parsing the default options for binary caching not beging emitted. Resolves #14922.
2020-12-04[vcpkg] Error on '#' in version strings to avoid confusion (#14927)ras0219
* [vcpkg] Refactor deserializers to reduce duplicate functionality * [vcpkg] Error on '#' in version strings to avoid confusion with port-version * [vcpkg] Improve error message * [vcpkg] Reorder field output * [vcpkg] Fix tests Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
2020-12-03[google-cloud-cpp] update to latest release (v1.21.0) (#14886)Carlos O'Ryan
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-12-03[magic-enum] Update to v0.7.1 (#14904)Daniil Goncharov
2020-12-03[libtorrent] Update to 1.2.11 (#14755)Francisco Pombal
2020-12-03[monkeys-audio] Update to 565d. (#14913)Adam Johnson
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-12-03[vcpkg bootstrap] Include "zip" as required apt dependency in bootstrap ↵chausner
error message (#14803)
2020-12-03[microsoft-signalr] Fix build error on Linux (#14872)NancyLi1013
* [microsoft-signalr] Fix build failed on Linux * Nicole CRs Co-authored-by: Nicole Mazzuca <mazzucan@outlook.com> Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
2020-12-03[vcpkg baseline][vtk-m] fix the sha512 (#14884)nicole mazzuca
* [vtk-m] fix the sha512 * Bump version * add FILE_DISAMBIGUATOR to vcpkg_from_gitlab * actually use the file disambiguator * regenerate docs * [moos-core] Add DISABLE_PARALLEL_CONFIGURE Co-authored-by: NancyLi1013 <lirui09@beyondsoft.com>
2020-12-02[osg] Update dependency (#14790)NancyLi1013
2020-12-02[aws-sdk-cpp] Restore AWSSDKConfig.cmake and add usage (#14868)Jack·Boos·Yu
2020-12-02[vcpkg] fix compile on vs2015 (#14915)nicole mazzuca
* [vcpkg] fix compile on vs2015 * format
2020-12-02[docs] fix pwsh sorting (#14914)nicole mazzuca
2020-12-01[openssl] Handle INSTALL_NAME_DIR and OSX_DEPLOYMENT_TARGET for macOS shared ↵LRFLEW
builds (#14785) * [openssl] Handle INSTALL_NAME_DIR for macOS shared builds * [openssl] Handle OSX_DEPLOYMENT_TARGET for macOS shared builds
2020-12-01[redis-plus-plus] Add c++17 feature (#14762)JonLiu1993
* Build using c++17 standard * Add a feature cxx17 instead * Update ports/redis-plus-plus/portfile.cmake * Update ports/redis-plus-plus/CONTROL * Modify FEATURE_OPTIONS * Modify feature options * Add feature Cxx17 * Modify options * Update ports/redis-plus-plus/portfile.cmake * Update ports/redis-plus-plus/portfile.cmake * Update ports/redis-plus-plus/portfile.cmake * Modify the CONTROL file Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2020-12-01[magnum] fixes installing all dependecies by default (#11225)Francisco Facioni
2020-12-01[many ports] mingw support (#14556)Long Nguyen
* [vcpkg_configure_make] Only rename import libs on MSVC * [x264] Only rename import libs on MSVC * [x265] Add libc++ and libstdc++ as system libs * [ffmpeg] mingw support * [libvpx] Set AS environment variable * [vcpkg_common_definition] Fix a mistake in the prefix and suffix variables * [vcpkg_configure_make] Strip leading -l from lib list before joining * [mp3lame] Use vcpkg_configure_make + mingw support * [x265] Escape the pluses * [ffmpeg] Add compiler flags for mingw * [ffmpeg] Add WINVER define in mf_utils.c * [ffmpeg] Remove unnecessary patch in 0003-fic-windowsinclude.patch * [mp3lame] Add missing dollar sign Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com> * [x265] Remove static lib when building shared with mingw * [libogg] Change library name to libogg on mingw * [libogg] Bump port version * [x265] Remove -l(std)c++ flag in pkgconfig file * [vcpkg_configure_make] Try to fix huge diff * [mp3lame] Add comment on deprecated function lame_init_old Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com> Co-authored-by: Matthias C. M. Troffaes <matthias.troffaes@gmail.com> Co-authored-by: Jack·Boos·Yu <47264268+JackBoosY@users.noreply.github.com>
2020-12-01[ceres] update to 2.0.0 (#14719)Francisco Facioni
2020-12-01[opengl] port path fix when crosscompiling (#14724)Nemirtingas
* Update portfile to use native file path. Fixes cross-compilation paths. * Update portfile.cmake * Update CONTROL * Update ports/opengl/CONTROL Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com> Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
2020-12-01[elfutils] add new port (#14771)Alexander Neumann
* [elfutils] add new port * update * Update ports/elfutils/configure.ac.patch Fix missing ZSTD linkage * Update ports/elfutils/portfile.cmake Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com> * add eflutils on osx on CI skiplist Co-authored-by: wangli28 <wangli28@beyondsoft.com> Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>