Skip to content

Conversation

@JonLiu1993
Copy link
Contributor

@JonLiu1993 JonLiu1993 commented Dec 13, 2024

Fixes #41119 (comment)

Update aurora-au to the latest version 0.4.0

Tested usage successfully by aurora-au:x64-windows

  • Changes comply with the maintainer guide.
  • SHA512s are updated for each updated download.
  • The "supports" clause reflects platforms that may be fixed by this new version.
  • Any fixed CI baseline entries are removed from that file.
  • Any patches that are no longer applied are deleted from the port's directory.
  • The version database is fixed by rerunning ./vcpkg x-add-version --all and committing the result.
  • Only one version is added to each modified port's versions file.

@JonLiu1993 JonLiu1993 added info:internal category:port-update The issue is with a library, which is requesting update new revision labels Dec 13, 2024
@JonLiu1993 JonLiu1993 mentioned this pull request Dec 13, 2024
8 tasks
Copy link
Contributor

@chiphogg chiphogg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for putting this PR together so soon after the release --- very exciting! I had one question about whether we can get rid of the patch file.

@JonLiu1993 JonLiu1993 marked this pull request as ready for review December 13, 2024 06:51
Copy link
Contributor

@WangWeiLin-MV WangWeiLin-MV left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The port installation tests pass with the following triplets:

  • x64-windows

@WangWeiLin-MV WangWeiLin-MV added the info:needs-maintainer-attention Lets the current 'on rotation' vcpkg maintainer know they need to look at this. label Dec 16, 2024
@chiphogg
Copy link
Contributor

We did just find one issue with 0.4.0. The impact is that a project using Au as a dependency, via CMake, will likely be broken. One of the new files wasn't added to CMakeLists.txt. See aurora-opensource/au#359 for more details.

Here is a patch file that should fix the issue: https://github.com/chiphogg/conan-center-index/blob/62558ad3b32f5c742c588123bc3e1ec2ff254b73/recipes/au/all/patches/0001-v0.4.0-add-static-cast-checkers-to-cmake.patch

Is there any kind of "automated package test" we could add that would catch this? The conan recipe has a "test package" that acts as a small client library, and builds some simple code. (It's how I caught this error in the first place.) If we can't do this in an automated fashion, then the next best thing would be some kind of manual version. In either case, I'd be surprised if we don't need to add this patch!

Sorry about this issue! It made me realize that although we had CMake tests in our CI, we didn't have any tests for client libraries using CMake. We've now closed this testing gap with a new CI job, and I confirmed that it would have caught this error, so we should be in better shape going forwards.

And at least we caught it before the vcpkg update landed!

@andre-nguyen
Copy link
Contributor

@JonLiu1993 Thank you for taking the time to do the update to 0.4

@chiphogg afaik its basically like a unit test, there isn't really a way to automatically test all of the exposed package functionality.

@chiphogg
Copy link
Contributor

@chiphogg afaik its basically like a unit test, there isn't really a way to automatically test all of the exposed package functionality.

I'm sorry --- I wasn't able to understand what you were saying here. 😅 What is "basically like a unit test"? The tests that this comment referred to?

What I was getting at was that we should make sure that a vcpkg project that uses Au 0.4.0 can successfully include "au/au.hh" and compile, before we land this PR. I expect this to fail in the current state, but pass if we add a patch that's equivalent to the one I linked. Of course it'd be great if we could automate it, but I think the most important thing is to simply perform this check by any means, manual or automatic.

@dg0yt
Copy link
Contributor

dg0yt commented Dec 16, 2024

This kind of testing can be implemented as a test port. Example:
https://github.com/microsoft/vcpkg/tree/master/scripts/test_ports/vcpkg-ci-blas

@JavierMatosD
Copy link
Contributor

@JonLiu1993 in the meantime, it looks like we should add the patch that @chiphogg is suggesting. Either that or wait for upstream to mint a new release.

@JavierMatosD JavierMatosD marked this pull request as draft December 16, 2024 20:35
@JonLiu1993 JonLiu1993 removed the info:needs-maintainer-attention Lets the current 'on rotation' vcpkg maintainer know they need to look at this. label Dec 17, 2024
@chiphogg
Copy link
Contributor

This kind of testing can be implemented as a test port. Example: https://github.com/microsoft/vcpkg/tree/master/scripts/test_ports/vcpkg-ci-blas

That looks like exactly what we would want! I tried copying the pattern, but I have no idea how to run it or test whether it works:
cea4949

Maybe somebody who knows how to run these CI jobs can try running this test package. The expected outcome is that it should fail because static_cast_checkers.hh can't be found: that would be good. Once we can get to that point, we can add the patch file I shared earlier, and that should be enough to get to a passing state. Then the CI job and patch can all be landed as part of this current PR.

@dg0yt
Copy link
Contributor

dg0yt commented Dec 18, 2024

These test ports are included via --overlay-ports=scripts/test_ports.

So:

vcpkg install --overlay-ports=scripts/test_ports vcpkg-ci-aurora-au

@JonLiu1993
Copy link
Contributor Author

@chiphogg, Thanks for the patch, but when I add the vcpkg-ci-aurora-au test port locally, make the patch you provided, and run the command vcpkg install --overlay-ports=scripts/test_ports vcpkg-ci-aurora-au
I will encounter a new error:

PS F:\test\vcpkg> ./vcpkg install --overlay-ports=scripts/test_ports vcpkg-ci-aurora-au
Computing installation plan...
The following packages will be built and installed:
  * aurora-au:[email protected]
    vcpkg-ci-aurora-au:x64-windows@ci -- F:\test\vcpkg\scripts/test_ports\vcpkg-ci-aurora-au
Additional packages (*) will be modified to complete this operation.
Detecting compiler hash for triplet x64-windows...
Compiler found: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.41.34120/bin/Hostx64/x64/cl.exe
Restored 0 package(s) from C:\Users\v-zhli17\AppData\Local\vcpkg\archives in 269 us. Use --debug to see more details.
Installing 1/2 aurora-au:[email protected]...
Building aurora-au:[email protected]...
-- Using cached aurora-opensource-au-0.4.0.tar.gz.
-- Extracting source F:/test/vcpkg/downloads/aurora-opensource-au-0.4.0.tar.gz
-- Applying patch fix-usage.patch
-- Using source at F:/test/vcpkg/buildtrees/aurora-au/src/0.4.0-d8793eab4a.clean
-- Found external ninja('1.11.0').
-- Configuring x64-windows
-- Building x64-windows-rel
-- Installing: F:/test/vcpkg/packages/aurora-au_x64-windows/share/aurora-au/copyright
-- Installing: F:/test/vcpkg/packages/aurora-au_x64-windows/share/aurora-au/usage
-- Performing post-build validation
Stored binaries in 1 destinations in 1 s.
Elapsed time to handle aurora-au:x64-windows: 7.9 s
aurora-au:x64-windows package ABI: 027788a1455d9076f8483a48a2b2088a16a8b3d8dc1fe06dbd97ea0dfca26383
Installing 2/2 vcpkg-ci-aurora-au:x64-windows@ci...
Building vcpkg-ci-aurora-au:x64-windows@ci...
F:\test\vcpkg\scripts/test_ports\vcpkg-ci-aurora-au: info: installing overlay port from here
-- Using cached msys2-mingw-w64-x86_64-pkgconf-1~2.3.0-1-any.pkg.tar.zst.
-- Using cached msys2-msys2-runtime-3.5.4-2-x86_64.pkg.tar.zst.
-- Using msys root at F:/test/vcpkg/downloads/tools/msys2/21caed2f81ec917b
-- Found external ninja('1.11.0').
-- Configuring x64-windows
CMake Warning at installed/x64-windows/share/vcpkg-cmake/vcpkg_cmake_configure.cmake:344 (message):
  The following variables are not used in CMakeLists.txt:

      PKG_CONFIG_EXECUTABLE

  Please recheck them and remove the unnecessary options from the
  `vcpkg_cmake_configure` call.

  If these options should still be passed for whatever reason, please use the
  `MAYBE_UNUSED_VARIABLES` argument.
Call Stack (most recent call first):
  scripts/test_ports/vcpkg-ci-aurora-au/portfile.cmake:5 (vcpkg_cmake_configure)
  scripts/ports.cmake:196 (include)


-- Building x64-windows-dbg
CMake Error at scripts/cmake/vcpkg_execute_build_process.cmake:134 (message):
    Command failed: F:/test/vcpkg/downloads/tools/cmake-3.30.1-windows/cmake-3.30.1-windows-i386/bin/cmake.exe --build . --config Debug -- -v -j9
    Working Directory: F:/test/vcpkg/buildtrees/vcpkg-ci-aurora-au/x64-windows-dbg
    See logs for more information:
      F:\test\vcpkg\buildtrees\vcpkg-ci-aurora-au\build-x64-windows-dbg-out.log

Call Stack (most recent call first):
  installed/x64-windows/share/vcpkg-cmake/vcpkg_cmake_build.cmake:74 (vcpkg_execute_build_process)
  scripts/test_ports/vcpkg-ci-aurora-au/portfile.cmake:10 (vcpkg_cmake_build)
  scripts/ports.cmake:196 (include)


error: building vcpkg-ci-aurora-au:x64-windows failed with: BUILD_FAILED
See https://learn.microsoft.com/vcpkg/troubleshoot/build-failures?WT.mc_id=vcpkg_inproduct_cli for more information.
Elapsed time to handle vcpkg-ci-aurora-au:x64-windows: 2.7 s
Change Dir: 'F:/test/vcpkg/buildtrees/vcpkg-ci-aurora-au/x64-windows-dbg'

Run Build Command(s): "C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/Ninja/ninja.exe" -v -v -j9
[1/2] C:\PROGRA~1\MIB055~1\2022\COMMUN~1\VC\Tools\MSVC\1441~1.341\bin\Hostx64\x64\cl.exe   /TP  -external:IF:\test\vcpkg\installed\x64-windows\include -external:W0 /nologo /DWIN32 /D_WINDOWS /utf-8 /GR /EHsc /MP  /D_DEBUG /MDd /Z7 /Ob0 /Od /RTC1  -MDd /showIncludes /FoCMakeFiles\test_au_client.dir\test_au_client.cc.obj /FdCMakeFiles\test_au_client.dir\ /FS -c F:\test\vcpkg\scripts\test_ports\vcpkg-ci-aurora-au\project\test_au_client.cc
FAILED: CMakeFiles/test_au_client.dir/test_au_client.cc.obj 
C:\PROGRA~1\MIB055~1\2022\COMMUN~1\VC\Tools\MSVC\1441~1.341\bin\Hostx64\x64\cl.exe   /TP  -external:IF:\test\vcpkg\installed\x64-windows\include -external:W0 /nologo /DWIN32 /D_WINDOWS /utf-8 /GR /EHsc /MP  /D_DEBUG /MDd /Z7 /Ob0 /Od /RTC1  -MDd /showIncludes /FoCMakeFiles\test_au_client.dir\test_au_client.cc.obj /FdCMakeFiles\test_au_client.dir\ /FS -c F:\test\vcpkg\scripts\test_ports\vcpkg-ci-aurora-au\project\test_au_client.cc
F:\test\vcpkg\installed\x64-windows\include\au/constant.hh(59): error C2131: expression did not evaluate to a constant
F:\test\vcpkg\installed\x64-windows\include\au/constant.hh(59): note: failure was caused by a read of a variable outside its lifetime
F:\test\vcpkg\installed\x64-windows\include\au/constant.hh(59): note: see usage of 'u'
F:\test\vcpkg\installed\x64-windows\include\au/constant.hh(59): note: the template instantiation context (the oldest one first) is
F:\test\vcpkg\scripts\test_ports\vcpkg-ci-aurora-au\project\test_au_client.cc(14): note: see reference to function template instantiation 'auto au::Constant<au::detail::SpeedOfLightUnit>::as<int,au::SymbolFor<au::UnitProduct<T,au::Pow<B,-1>>>>(OtherUnit) const' being compiled
        with
        [
            T=au::Meters,
            B=au::Seconds,
            OtherUnit=au::SymbolFor<au::UnitProduct<au::Meters,au::Pow<au::Seconds,-1>>>
        ]
ninja: build stopped: subcommand failed.

Could you please take a look? thanks!

@chiphogg
Copy link
Contributor

Could you please take a look? thanks!

Yep, I think I made some progress --- thanks @dg0yt for showing me how to run the CI script!

At some point, I felt like I was getting stale results, so to be sure my cache was clear, I ran rm -Rf installed/* from the base vcpkg directory. A little clumsy, perhaps, but after I did this, everything was reliably reflecting the latest changes. So, assume that I did this between every step.

Now for the progress.

First, my copy-paste approach had an error, that would have prevented the CI package from working even if there wasn't a library error. I had copied something that evidently, we didn't need and didn't want. I fixed that in chiphogg@c9900e2.

At this point, when I ran the command, I got the hoped-for error about including "au/static_cast_checkers.hh" (to see the error cat the logfile that it prints out). I brought in the patch (chiphogg@7544fba), with some slight tweaks to match the format of the previous vcpkg patch, and re-ran. Success!

Summary:

  • Applying chiphogg@c9900e2 and running rm -Rf installed/* && vcpkg install --overlay-ports=scripts/test_ports vcpkg-ci-aurora-au demonstrates the desired error.
  • Applying chiphogg@7544fba and running rm -Rf installed/* && vcpkg install --overlay-ports=scripts/test_ports vcpkg-ci-aurora-au produces a successful outcome.

@chiphogg
Copy link
Contributor

Also, FWIW, this was all run on Linux. From the error above, it looks like you were running the command on Windows. I've found an MSVC-only bug based on the compiler error you shared.

This should only affect constants... which I just happened to pick for my little "demonstration". 😅 Applying chiphogg@894bb23 should give you a more MSVC-friendly test for 0.4.0.

I'll make sure we add MSVC coverage for Constant, and fix this for 0.4.1.

@dg0yt
Copy link
Contributor

dg0yt commented Dec 18, 2024

At some point, I felt like I was getting stale results, so to be sure my cache was clear, I ran rm -Rf installed/* from the base vcpkg directory.

Well, there is also a binary package cache, in addition to the installed tree. There is a --no-binarycaching option, and more.

@JonLiu1993 JonLiu1993 added the category:port-bug The issue is with a library, which is something the port should already support label Dec 19, 2024
@JonLiu1993 JonLiu1993 changed the title [aurora-au] Update to version 0.4.0 [aurora-au] Update to version 0.4.0 and add test port Dec 19, 2024
@chiphogg
Copy link
Contributor

chiphogg commented Dec 19, 2024

Thanks for the latest round of updates, @JonLiu1993!

It looks like the builds are failing. The logs on the azure dev jobs don't say why; they direct the reader to another log file, which I don't see how to access.

Regardless, this isn't entirely unexpected: the current version of the test hits a newly-found MSVC-only bug, which is in 0.4.0 and won't be fixed until 0.4.1. If you try making these changes (chiphogg@894bb23) to the test, would the remote jobs pass then?

Comment on lines 4 to 17
#include "au/constants/speed_of_light.hh"
#include "au/io.hh"
#include "au/units/meters.hh"
#include "au/units/seconds.hh"

using ::au::SPEED_OF_LIGHT;
using ::au::symbols::m;
using ::au::symbols::s;

int main(int argc, char **argv) {
std::cout << "Speed of light in m/s: " << SPEED_OF_LIGHT.as<int>(m / s)
<< std::endl;
return 0;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just remembered that we can make suggestions as comments, which you can then commit directly! Let's see if this will fix the remote builds (it's the changes from chiphogg@894bb23).

Suggested change
#include "au/constants/speed_of_light.hh"
#include "au/io.hh"
#include "au/units/meters.hh"
#include "au/units/seconds.hh"
using ::au::SPEED_OF_LIGHT;
using ::au::symbols::m;
using ::au::symbols::s;
int main(int argc, char **argv) {
std::cout << "Speed of light in m/s: " << SPEED_OF_LIGHT.as<int>(m / s)
<< std::endl;
return 0;
}
#include "au/io.hh"
#include "au/units/hours.hh"
#include "au/units/meters.hh"
#include "au/units/miles.hh"
using ::au::symbols::h;
using ::au::symbols::mi;
constexpr auto km = ::au::kilo(::au::symbols::m);
int main(int argc, char **argv) {
constexpr auto v = 65.0 * mi / h;
std::cout << v << ", in km/h, rounded to nearest integer, is "
<< round_as(km / h, v) << std::endl;
return 0;
}

@JonLiu1993 JonLiu1993 marked this pull request as ready for review December 20, 2024 07:34
@matthew-reynolds
Copy link

@chiphogg @JonLiu1993 Does it make sense to just skip 0.4.0 and update this PR to target the newly-released 0.4.1 rather than trying to carry patches on top of the official 0.4.0 release?

@chiphogg
Copy link
Contributor

@chiphogg @JonLiu1993 Does it make sense to just skip 0.4.0 and update this PR to target the newly-released 0.4.1 rather than trying to carry patches on top of the official 0.4.0 release?

This present PR, taking us to 0.4.0, is now ready to land immediately AFAICS. I think it makes sense to land it as-is, both because the work is already done (and the CI is green), and because it adds layers of protection (the new CI tests) that will help ensure things work smoothly going forward.

I've been planning to make a follow-on PR myself to take us from 0.4.0 to 0.4.1. That's still my plan. Should be fun! 🙂

Copy link
Contributor

@WangWeiLin-MV WangWeiLin-MV left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The port installation tests pass with the following triplets:

  • x64-windows

@WangWeiLin-MV WangWeiLin-MV added the info:needs-maintainer-attention Lets the current 'on rotation' vcpkg maintainer know they need to look at this. label Dec 22, 2024
@JavierMatosD JavierMatosD merged commit a08d0b1 into microsoft:master Dec 23, 2024
17 checks passed
@JonLiu1993 JonLiu1993 deleted the dev/Jon/aurora-au branch December 25, 2024 02:43
ParvusLacertus added a commit to ParvusLacertus/vcpkg that referenced this pull request Jan 2, 2025
commit 4b6c50d
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 20:16:19 2024 +0100

    [msquic] Allow windows build without openssl (microsoft#43031)

commit 597956c
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 17:38:27 2024 +0100

    [gstreamer] Modify dependencies (microsoft#42972)

commit 8917d32
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 17:37:35 2024 +0100

    [kealib] Update to 1.6.1 (microsoft#43025)

commit d367c84
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 17:36:15 2024 +0100

    [libcap] Update to 2.73 (microsoft#42958)

commit 01c9416
Author: Weihang Ding <[email protected]>
Date:   Wed Jan 1 00:33:30 2025 +0800

    [aws-sdk-cpp] Bump to 1.11.474 (microsoft#42963)

commit 6e50d48
Author: Boris Petkov <[email protected]>
Date:   Tue Dec 31 17:33:12 2024 +0100

    Update Nuget to Version 6.11.1 (microsoft#43012)

commit fc75cfe
Author: WangWeiLin-MV <[email protected]>
Date:   Tue Dec 31 16:32:56 2024 +0000

    [angle] Add export unofficial targets include (microsoft#43023)

commit 8d238ae
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 17:32:18 2024 +0100

    [libgpod] Delist libgpod (microsoft#42960)

    Co-authored-by: Javier Matos <[email protected]>

commit 8f2ab06
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 17:31:01 2024 +0100

    [vcpkg-make] Misc fixes (microsoft#42954)

    Co-authored-by: Javier Matos <[email protected]>

commit 4b3b620
Author: Kai Pastor <[email protected]>
Date:   Tue Dec 31 04:32:07 2024 +0100

    [gmime] Fix crypto, remove stray patch (microsoft#43014)

commit 1c896ec
Author: WangWeiLin-MV <[email protected]>
Date:   Tue Dec 31 03:15:39 2024 +0000

    [g2o] Add feature spdlog (microsoft#42912)

commit 3f3e77d
Author: Sean Farrell <[email protected]>
Date:   Tue Dec 31 04:15:09 2024 +0100

    [openexr] Update to 3.3.2 (microsoft#43015)

commit b325347
Author: Saikari <[email protected]>
Date:   Tue Dec 31 06:14:50 2024 +0300

    [LIEF] update to 0.16.1 (microsoft#43019)

commit dc16268
Author: Mengna-Li <[email protected]>
Date:   Tue Dec 31 03:13:14 2024 +0000

    [vcpkg baseline][kubazip] Remove kubazip:arm-neon-android from fail list (microsoft#42916)

    Co-authored-by: Mengna-Li <[email protected]>

commit 7bac262
Author: Saikari <[email protected]>
Date:   Mon Dec 30 22:29:08 2024 +0300

    [lief] add new port LIEF-0.16.0 (microsoft#42374)

    Co-authored-by: WangWeiLin-MV <[email protected]>

commit 78030b6
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 30 20:21:27 2024 +0100

    [msh3,msquic,vcpkg-ci-msh3] Update, add test port (microsoft#42788)

commit 48afdad
Author: miyanyan <[email protected]>
Date:   Tue Dec 31 02:28:54 2024 +0800

    [ucoro] add new port (microsoft#42969)

commit 3fb4357
Author: Jack·Boos·Yu <[email protected]>
Date:   Tue Dec 31 02:14:39 2024 +0800

    [boost-cobalt] Throw error in the configure step when the compiler is not supported (microsoft#42738)

    Co-authored-by: jyu49 <[email protected]>

commit c2a3eb2
Author: myd7349 <[email protected]>
Date:   Tue Dec 31 02:11:54 2024 +0800

    [ruapu] Add new port (microsoft#42915)

commit 8906f18
Author: jim wang <[email protected]>
Date:   Mon Dec 30 18:10:22 2024 +0000

    [libheif] Fix compilation errors using gcc8 (microsoft#42869)

commit 89b92ea
Author: Cheney Wang <[email protected]>
Date:   Tue Dec 31 02:09:24 2024 +0800

    [ismrmrd] Fix nodiscard warning in meta.cpp (microsoft#42924)

commit dbef60a
Author: Billy O'Neal <[email protected]>
Date:   Mon Dec 30 12:08:14 2024 -0600

    Promote arm64-windows-static-md and x64-windows-static-md (microsoft#42896)

commit 521abc5
Author: l.feng <[email protected]>
Date:   Mon Dec 30 23:34:52 2024 +0800

    [bit7z] compile option without warnings as errors (microsoft#43005)

    Signed-off-by: l.feng <[email protected]>
    Co-authored-by: Cheney Wang <[email protected]>

commit 0660e5e
Author: gfeyer <[email protected]>
Date:   Mon Dec 30 10:34:15 2024 -0500

    [behaviortree-cpp] Update behaviortree.cpp port from 4.3.7 to 4.6.2 (microsoft#42991)

commit 51380fe
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 30 16:33:59 2024 +0100

    [libgpg-error] Update to 1.51, [libsecret] Fix platforms (microsoft#42984)

commit 2be9c63
Author: c8ef <[email protected]>
Date:   Mon Dec 30 23:33:24 2024 +0800

    [folly related] update to 12.23 (microsoft#42914)

commit efa6321
Author: Frank <[email protected]>
Date:   Mon Dec 30 15:33:02 2024 +0000

    [v-hacd] Update version to v4.1.0 (microsoft#42908)

commit 6cb30d5
Author: Lily Wang <[email protected]>
Date:   Mon Dec 30 07:32:11 2024 -0800

    [libical] Update to 3.0.19 (microsoft#42906)

commit bb4cfe5
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 30 23:31:56 2024 +0800

    [level-zero] Bump to 1.19.2 (microsoft#42904)

commit 3d607b2
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 30 23:31:40 2024 +0800

    [utfcpp] Bump to 4.0.6 (microsoft#42873)

commit eac02d6
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 30 16:30:53 2024 +0100

    [date] Update to official release version 3.0.3. (microsoft#42864)

commit b6b5322
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 30 23:30:08 2024 +0800

    [audiofile] Bump to 1.1.2 (microsoft#42809)

commit 4413468
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 30 16:29:40 2024 +0100

    [sleef] Update to version 3.7 (microsoft#42706)

commit 23ef699
Author: Cheney Wang <[email protected]>
Date:   Mon Dec 30 23:27:37 2024 +0800

    [geogram] update to 1.9.2 (microsoft#42920)

commit 352cf2f
Author: Chip Hogg <[email protected]>
Date:   Mon Dec 30 10:27:17 2024 -0500

    [aurora-au] Update to version 0.4.1 (microsoft#42930)

commit ddcee8f
Author: Frank <[email protected]>
Date:   Mon Dec 30 15:26:59 2024 +0000

    [libmagic] Update version to 5.46 (microsoft#42939)

commit 19f945a
Author: MonicaLiu <[email protected]>
Date:   Mon Dec 30 07:26:41 2024 -0800

    [log4cxx] update to 1.3.1 (microsoft#42943)

    Co-authored-by: Monica <[email protected]>

commit caaabe3
Author: Alexis La Goutte <[email protected]>
Date:   Mon Dec 30 16:26:20 2024 +0100

    [ngtcp2] update to 1.10.0 (microsoft#42944)

commit 3d8789d
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 30 16:26:02 2024 +0100

    [benchmark] Update google benchmark to 1.9.1 (microsoft#42945)

commit f0a4054
Author: Alexis La Goutte <[email protected]>
Date:   Mon Dec 30 16:25:49 2024 +0100

    [nghttp3] update to 1.7.0 (microsoft#42947)

commit 18b1aed
Author: Dennis <[email protected]>
Date:   Mon Dec 30 16:25:36 2024 +0100

    [asio-grpc] update to 3.4.1 (microsoft#42949)

commit 2fc86f7
Author: MonicaLiu <[email protected]>
Date:   Mon Dec 30 07:25:24 2024 -0800

    [zfp] Update to 1.0.1 (microsoft#42956)

    Co-authored-by: Monica <[email protected]>

commit 8a3beb3
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 30 16:25:08 2024 +0100

    [gmime] Update to 3.2.15, use official build system (microsoft#42959)

commit a54ecb2
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 30 23:24:06 2024 +0800

    [sse2neon] Bump to 1.8.0 (microsoft#42961)

commit 3a68d1b
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 30 23:23:50 2024 +0800

    [stringzilla] Bump to 3.11.3 (microsoft#42962)

commit 2704852
Author: Rusty Conover <[email protected]>
Date:   Mon Dec 30 10:23:08 2024 -0500

    [apache-datasketches] Upgrade to 5.1.0 (microsoft#42976)

commit 462c5f0
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 30 16:22:46 2024 +0100

    [pdal] Update to 2.8.3 (microsoft#42981)

commit 9bdf384
Author: Charles Karney <[email protected]>
Date:   Mon Dec 30 10:22:03 2024 -0500

    [geographiclib] Update to version 2.5 (microsoft#42992)

commit 32d2684
Author: Frank <[email protected]>
Date:   Mon Dec 30 15:21:47 2024 +0000

    [tgui] Update version to 1.7.0 (microsoft#43011)

commit 80d54ff
Author: Javier Matos Denizac <[email protected]>
Date:   Mon Dec 23 14:58:54 2024 -0500

    [vcpkg-make] Add new port (microsoft#39050)

    Co-authored-by: Alexander Neumann <[email protected]>
    Co-authored-by: Alexander Neumann <[email protected]>
    Co-authored-by: Kai Pastor <[email protected]>
    Co-authored-by: Billy O'Neal <[email protected]>
    Co-authored-by: Javier Matos <[email protected]>

commit 1bf27ad
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:45:15 2024 +0800

    [alembic] Bump to 1.8.8 (microsoft#42808)

commit 8d3b7a8
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:43:40 2024 +0800

    [aws-sdk-cpp] Bump to 1.11.471 (microsoft#42810)

commit e6a096f
Author: Buck Yeh <[email protected]>
Date:   Tue Dec 24 01:43:19 2024 +0800

    [buck-yeh-bux-sqlite] Update to 1.0.5 (microsoft#42824)

commit 66ceb03
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 23 18:42:06 2024 +0100

    [dlpack]Update dlpack tor v1.0 (microsoft#42861)

commit 6dd6281
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:41:49 2024 +0800

    [stringzilla] Bump to 3.11.2 (microsoft#42877)

commit f7c018d
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:40:59 2024 +0800

    [imgui] Bump to 1.91.6 (microsoft#42880)

commit b556a15
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:40:11 2024 +0800

    [bit7z] Bump to 4.0.9 (microsoft#42882)

commit 8496f6a
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:39:55 2024 +0800

    [nanoprintf] Bump to 0.5.3 (microsoft#42883)

commit 84630f0
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:39:29 2024 +0800

    [cpp-timsort] Bump to 3.0.1 (microsoft#42885)

commit 6f15319
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:39:01 2024 +0800

    [cpp-peglib] Bump to 1.9.1 (microsoft#42886)

commit d75af69
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:38:41 2024 +0800

    [capnproto] Bump to 1.1.0 (microsoft#42888)

commit aa1dd09
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:38:11 2024 +0800

    [glaze] Bump to 4.2.2 (microsoft#42889)

commit 096a5b1
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:37:50 2024 +0800

    [bddisasm] Bump to 2.2.0 (microsoft#42890)

commit 558bc16
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 01:37:34 2024 +0800

    [libxdf] Bump to 0.99.9 (microsoft#42891)

commit fea9f01
Author: Ryan Zoeller <[email protected]>
Date:   Mon Dec 23 11:37:07 2024 -0600

    [cpptrace] update 0.7.4 (microsoft#42897)

commit 386ee8b
Author: Matthias Kuhn <[email protected]>
Date:   Mon Dec 23 17:19:40 2024 +0100

    [qtbase] fix macdeployqt for symlinks (microsoft#42430)

commit a08d0b1
Author: JonLiu1993 <[email protected]>
Date:   Tue Dec 24 00:17:35 2024 +0800

    [aurora-au] Update to version 0.4.0 and add test port (microsoft#42679)

    Co-authored-by: Jon <[email protected]>

commit 119d4ff
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 23 17:12:53 2024 +0100

    [vcpkg-tool-meson] Update to 1.6.1 (microsoft#42750)

commit 20c9596
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 23 17:12:22 2024 +0100

    [ls-qpack] Update, revise (microsoft#42767)

commit 16a03c8
Author: Salman Javed <[email protected]>
Date:   Tue Dec 24 05:09:17 2024 +1300

    [meekrosoft-fff] Add new port (microsoft#42778)

    Co-authored-by: Frank <[email protected]>

commit 37e135d
Author: مهدي شينون (Mehdi Chinoune) <[email protected]>
Date:   Mon Dec 23 17:07:17 2024 +0100

    [muparser] update to 2.3.5 (microsoft#42789)

commit 63f7bea
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 00:04:01 2024 +0800

    [mlpack] Bump to 4.5.1 (microsoft#42813)

commit 36f7c8a
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 00:03:46 2024 +0800

    [nanojsonc] Bump to 1.1.0 (microsoft#42816)

commit 74ecd11
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 00:03:30 2024 +0800

    [recycle] Bump to 7.0.0 (microsoft#42817)

commit daf75de
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 00:02:55 2024 +0800

    [leptonica] Bump to 1.85.0 (microsoft#42818)

commit 2b85cc2
Author: Weihang Ding <[email protected]>
Date:   Tue Dec 24 00:01:55 2024 +0800

    [imageinfo] Bump to 2024-12-02 (microsoft#42819)

commit 43bb33c
Author: c8ef <[email protected]>
Date:   Tue Dec 24 00:01:36 2024 +0800

    [folly related] update to 12.16 (microsoft#42823)

commit 385d368
Author: Nick D'Ademo <[email protected]>
Date:   Tue Dec 24 03:00:37 2024 +1100

    [kubazip] update to 0.3.3 (microsoft#42831)

commit 47c6ca8
Author: Nick D'Ademo <[email protected]>
Date:   Tue Dec 24 02:59:54 2024 +1100

    [mimicpp] update to v5 (microsoft#42832)

commit 248d650
Author: Eyal Rozenberg <[email protected]>
Date:   Mon Dec 23 17:59:18 2024 +0200

    [cuda-api-wrappers] Updated version from 0.7.1 to 0.8.0 (microsoft#42837)

commit b760423
Author: Denis Kovalchuk <[email protected]>
Date:   Mon Dec 23 18:57:26 2024 +0300

    [deniskovalchuk-libftp] Update to 1.4.1 (microsoft#42852)

commit da015ca
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 23 16:57:07 2024 +0100

    [gumbo] Update to version 0.12.3 (microsoft#42860)

commit 33fe576
Author: jim wang <[email protected]>
Date:   Mon Dec 23 15:56:39 2024 +0000

    [vcpkg baseline][unicorn] Remove from fail list (microsoft#42867)

commit 0715d0d
Author: Mengna-Li <[email protected]>
Date:   Mon Dec 23 15:56:13 2024 +0000

    [fastio] update to 2024-12-05 (microsoft#42871)

    Co-authored-by: Mengna-Li <[email protected]>

commit 989b8d3
Author: jim wang <[email protected]>
Date:   Mon Dec 23 15:55:45 2024 +0000

    [itpp] Fix runtime errors (microsoft#42881)

commit 1e73628
Author: Mengna-Li <[email protected]>
Date:   Mon Dec 23 15:43:54 2024 +0000

    [yoga] update to 3.2.1 (microsoft#42872)

    Co-authored-by: Mengna-Li <[email protected]>

commit f4a382c
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 23 23:43:18 2024 +0800

    [tinyexr] Bump to 1.0.9 (microsoft#42874)

commit 0ab0ae3
Author: MonicaLiu <[email protected]>
Date:   Mon Dec 23 15:42:10 2024 +0000

    [allegro5] Update to 5.2.10.0 (microsoft#42878)

    Co-authored-by: Monica <[email protected]>

commit 6731052
Author: Weihang Ding <[email protected]>
Date:   Mon Dec 23 23:41:33 2024 +0800

    [nyan-lang] Bump to 0.3.1 (microsoft#42879)

commit f06267d
Author: Billy O'Neal <[email protected]>
Date:   Sat Dec 21 03:48:36 2024 -0800

    Patch Tuesday for December 2024 (microsoft#42749)

commit 4fcf123
Author: Kai Pastor <[email protected]>
Date:   Fri Dec 20 21:45:28 2024 +0100

    [juce] Fix cross builds, cleanup (microsoft#42615)

commit 8476a6d
Author: jim wang <[email protected]>
Date:   Fri Dec 20 20:35:11 2024 +0000

    [aom] Update to 3.11.0 (microsoft#41125)

commit d940c1b
Author: jim wang <[email protected]>
Date:   Fri Dec 20 20:33:39 2024 +0000

    [vcpkg baseline][g2o] Update to 2024-12-14 (microsoft#42753)

commit 5c425b4
Author: Barak Shoshany <[email protected]>
Date:   Fri Dec 20 15:32:18 2024 -0500

    [bshoshany-thread-pool] Updated to v5.0.0 (microsoft#42803)

commit 6eab0a7
Author: Cheney Wang <[email protected]>
Date:   Sat Dec 21 04:31:35 2024 +0800

    [mongo-cxx-driver] update to 4.0.0 (microsoft#42805)

commit faa3c0a
Author: MonicaLiu <[email protected]>
Date:   Fri Dec 20 20:30:40 2024 +0000

    [gazebo] Fix dependencies and update (microsoft#42807)

    Co-authored-by: Monica <[email protected]>

commit 11627a2
Author: Weihang Ding <[email protected]>
Date:   Sat Dec 21 04:25:37 2024 +0800

    [xsimd] Bump to 13.1.0 (microsoft#42811)

commit 14dad0d
Author: Weihang Ding <[email protected]>
Date:   Sat Dec 21 04:23:36 2024 +0800

    [glslang] Bump to 15.1.0 (microsoft#42812)

commit 7ba6833
Author: Weihang Ding <[email protected]>
Date:   Sat Dec 21 04:22:31 2024 +0800

    [vincentlaucsb-csv-parser] Bump to 2.3.0 (microsoft#42814)

commit 4c71f15
Author: Saikari <[email protected]>
Date:   Fri Dec 20 23:21:05 2024 +0300

    [orange-math] new port (microsoft#42756)

    Co-authored-by: Mengna-Li <[email protected]>

commit 9790589
Author: Weihang Ding <[email protected]>
Date:   Sat Dec 21 04:19:42 2024 +0800

    [yalantinglibs] Bump to 0.3.11 (microsoft#42815)

commit 1f65d84
Author: Billy O'Neal <[email protected]>
Date:   Thu Dec 19 20:01:53 2024 -0800

    [casadi] Deindex. (microsoft#42773)

commit 6de717b
Author: jim wang <[email protected]>
Date:   Thu Dec 19 21:22:45 2024 +0000

    [usd] update to 24.11 (microsoft#41864)

commit 8e78590
Author: Eviral <[email protected]>
Date:   Thu Dec 19 22:14:06 2024 +0100

    [openfbx] Miniz dep was removed in latest version and replaced by libdeflate (microsoft#42694)

    Co-authored-by: JonLiu1993 <[email protected]>

commit 5a1b13c
Author: Wiki Wang <[email protected]>
Date:   Fri Dec 20 04:52:58 2024 +0800

    [ffmpeg] add implicit link libs (microsoft#42676) (microsoft#42677)

commit d18ed2b
Author: WangWeiLin-MV <[email protected]>
Date:   Thu Dec 19 20:50:47 2024 +0000

    [gz-common5] Add include <chrono> for system_clock (microsoft#42635)

commit 3f92cf1
Author: Chuck Walbourn <[email protected]>
Date:   Thu Dec 19 12:03:10 2024 -0800

    [directx12-agility] add message for compliance (microsoft#42797)

commit cf454fe
Author: Alexander Neumann <[email protected]>
Date:   Thu Dec 19 20:07:58 2024 +0100

    [cppmicroservices] update and devendor stuff (microsoft#42720)

commit 1bf29ad
Author: Kai Pastor <[email protected]>
Date:   Thu Dec 19 19:28:21 2024 +0100

    [zix] Sanitize (microsoft#42772)

commit 38bf1ef
Author: Frank <[email protected]>
Date:   Thu Dec 19 18:14:19 2024 +0000

    [poco] Update version to 1.14.0 (microsoft#42751)

commit 14ff626
Author: Alesiani Marco <[email protected]>
Date:   Thu Dec 19 19:12:57 2024 +0100

    [physx] Update to version 5.5.0 (microsoft#42764)

commit 99070cf
Author: Kai Pastor <[email protected]>
Date:   Thu Dec 19 19:11:37 2024 +0100

    [lilv] Fix dependencies, tools (microsoft#42770)

commit 54f4adb
Author: Kai Pastor <[email protected]>
Date:   Thu Dec 19 19:04:49 2024 +0100

    [shiva] Delist (microsoft#42711)

commit a3ff43d
Author: JonLiu1993 <[email protected]>
Date:   Fri Dec 20 02:04:29 2024 +0800

    [utf8-range] update to 5.29.1  (microsoft#42752)

    Co-authored-by: Jon <[email protected]>

commit 13409aa
Author: c8ef <[email protected]>
Date:   Fri Dec 20 02:04:14 2024 +0800

    [glaze] update to 4.2.0 (microsoft#42763)

commit b6ed02f
Author: Nick Logozzo <[email protected]>
Date:   Thu Dec 19 10:03:45 2024 -0800

    [libnick] Update to 2024.12.0 (microsoft#42766)

commit 8c9c81c
Author: Vitalii Koshura <[email protected]>
Date:   Thu Dec 19 19:03:14 2024 +0100

    [sentry-native] update to 0.7.17 (microsoft#42776)

    Signed-off-by: Vitalii Koshura <[email protected]>

commit 1119951
Author: Scott Hart <[email protected]>
Date:   Thu Dec 19 13:02:41 2024 -0500

    [google-cloud-cpp] update to the latest release (v2.33.0) (microsoft#42780)

commit 526b56d
Author: jim wang <[email protected]>
Date:   Thu Dec 19 18:02:16 2024 +0000

    [prometheus-cpp] Update to 1.3.0 (microsoft#42786)

commit 2dc91c6
Author: Mengna-Li <[email protected]>
Date:   Tue Dec 17 20:11:08 2024 +0000

    [gumbo] update to 0.12.2 and switch homepage (microsoft#42737)

    Co-authored-by: Mengna-Li <[email protected]>

commit c368dab
Author: Saikari <[email protected]>
Date:   Tue Dec 17 23:10:21 2024 +0300

    [unicorn] update version 2.1.1 (microsoft#42578)

commit be21600
Author: Daniele E. Domenichelli <[email protected]>
Date:   Tue Dec 17 21:09:28 2024 +0100

    [kdreports] new port (microsoft#42625)

commit ef65883
Author: Daniele E. Domenichelli <[email protected]>
Date:   Tue Dec 17 21:08:00 2024 +0100

    [kdstatemachineeditor] new port (microsoft#42664)

commit 7652725
Author: Nick D'Ademo <[email protected]>
Date:   Wed Dec 18 07:00:39 2024 +1100

    [winsparkle] update to 0.8.3 (microsoft#42712)

    Co-authored-by: Nick D'Ademo <[email protected]>
    Co-authored-by: WangWeiLin-MV <[email protected]>

commit 2434e48
Author: Alexander Neumann <[email protected]>
Date:   Tue Dec 17 21:00:20 2024 +0100

    [curlpp] fix abs path (microsoft#42722)

commit 8cbc1d7
Author: Alexander Neumann <[email protected]>
Date:   Tue Dec 17 20:59:52 2024 +0100

    [Libtorch] remove abs compiler path (microsoft#42729)

commit ab4e7d5
Author: Paul Xu <[email protected]>
Date:   Wed Dec 18 03:53:45 2024 +0800

    [dcmtk] remove ICU (microsoft#42742)

commit 1373739
Author: jim wang <[email protected]>
Date:   Tue Dec 17 19:53:10 2024 +0000

    [vcpkg baseline][openfbx] Remove from fail list (microsoft#42743)

commit 0350335
Author: SunBlack <[email protected]>
Date:   Tue Dec 17 20:52:50 2024 +0100

    [libdeflate] Update to v1.23 (microsoft#42744)

commit c67dcff
Author: Davide Pianca <[email protected]>
Date:   Tue Dec 17 20:52:26 2024 +0100

    [opencv4] Add carotene feature flag (microsoft#42745)

commit db3a4f0
Author: Daniele E. Domenichelli <[email protected]>
Date:   Tue Dec 17 20:51:53 2024 +0100

    [kdsingleapplication] Fix copyright file (microsoft#42746)

commit a258b5e
Author: jim wang <[email protected]>
Date:   Tue Dec 17 19:51:32 2024 +0000

    [gstreamer] Fix multiple definition of functions (microsoft#42638)

commit b322364
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:52:52 2024 +0100

    [g2o] fix abs compiler path in binary (microsoft#42724)

commit 4474162
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:52:32 2024 +0100

    [ffnvcodec] fix single config builds (microsoft#42442)

commit e303a72
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:10:33 2024 +0100

    [usd] fix single config builds (microsoft#42446)

commit e534a9d
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:10:14 2024 +0100

    [realsense2] fix single config builds (microsoft#42449)

commit 3c24aa3
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:09:56 2024 +0100

    [azure-kinect-sensor-sdk] fix single config builds (microsoft#42719)

commit 78df968
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:09:01 2024 +0100

    [crashpad] fix single config builds (microsoft#42721)

commit 9cfeb3b
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:08:38 2024 +0100

    [kf5plotting] fix single config builds (microsoft#42725)

commit 948820b
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:08:24 2024 +0100

    [Kf5testeditor] fix single config (microsoft#42726)

commit e1f8cf7
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:08:03 2024 +0100

    [krb5] fix single config builds (microsoft#42727)

commit 2193822
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:07:40 2024 +0100

    [Libdshowcapture] fix single config builds (microsoft#42728)

commit 2892ef5
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 19:07:18 2024 +0100

    [libxfont] fix single config builds (microsoft#42730)

commit a09e4e8
Author: Theodore Tsirpanis <[email protected]>
Date:   Mon Dec 16 20:06:41 2024 +0200

    [capnproto] Support Windows on ARM64. (microsoft#42697)

commit d00bfc5
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 18:05:45 2024 +0100

    [Mongo-c-driver] remove compiler abs path (microsoft#42731)

commit 83ee120
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 17:33:04 2024 +0100

    [fltk] Fix abs path (microsoft#42723)

commit 39cd4f4
Author: Nick D'Ademo <[email protected]>
Date:   Tue Dec 17 03:27:38 2024 +1100

    [sqlcipher] fix windows build (microsoft#42675)

    Co-authored-by: Nick D'Ademo <[email protected]>
    Co-authored-by: Kai Pastor <[email protected]>

commit 58b4954
Author: Daniele E. Domenichelli <[email protected]>
Date:   Mon Dec 16 17:24:24 2024 +0100

    [kdsoap] Fix license, usage and dependencies (microsoft#42671)

commit e4644bd
Author: Mathieu Pellerin <[email protected]>
Date:   Mon Dec 16 23:19:34 2024 +0700

    [libxml2] Fix compilation on iOS (microsoft#42695)

commit bda3f46
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 17:09:35 2024 +0100

    [arpack-ng] Export Fortran symbols (microsoft#42718)

commit 6936437
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 16 17:08:55 2024 +0100

    [stxxl] Cleanup, enable dynamic linkage on !windows (microsoft#42700)

commit 00bd5c4
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 16 17:08:15 2024 +0100

    [fontconfig] Add features, fix emscripten (microsoft#42699)

commit c26eabb
Author: rinechran <[email protected]>
Date:   Tue Dec 17 00:34:28 2024 +0900

    [Thorvg] update v0.15.6 (microsoft#42672)

commit aa59239
Author: Johannes Schönberger <[email protected]>
Date:   Mon Dec 16 16:34:00 2024 +0100

    [colmap] Update to port version 3.11.1 (microsoft#42477)

commit fa46408
Author: Kai Pastor <[email protected]>
Date:   Mon Dec 16 16:28:49 2024 +0100

    [mchehab-zbar] Update to 0.23.93 (microsoft#42739)

commit e2fa7da
Author: Tom Willow <[email protected]>
Date:   Mon Dec 16 23:27:37 2024 +0800

    [tomsolver] Update to 1.0.1 (microsoft#42710)

commit 463b45a
Author: Maxime Gervais <[email protected]>
Date:   Mon Dec 16 16:27:10 2024 +0100

    [libmediainfo] update to 24.12 (microsoft#42703)

commit eb4c506
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 16 16:26:49 2024 +0100

    [libjpeg-turbo] Update to version 3.1.0 (microsoft#42702)

commit 09be456
Author: JoergAtGithub <[email protected]>
Date:   Mon Dec 16 16:24:59 2024 +0100

    [taglib ] Update to version 2.0.2 (microsoft#42701)

commit 6a1fccc
Author: Theodore Tsirpanis <[email protected]>
Date:   Mon Dec 16 17:24:21 2024 +0200

    [aws-*,s2n] Update ports to their latest versions and support Windows on ARM64. (microsoft#42698)

commit e7a608f
Author: Buck Yeh <[email protected]>
Date:   Mon Dec 16 23:20:55 2024 +0800

    [buck-yeh-bux] Update to 1.10.2 (microsoft#42688)

commit 3fd12ea
Author: Dennis <[email protected]>
Date:   Mon Dec 16 16:17:35 2024 +0100

    [asio-grpc] Update to 3.4.0 (microsoft#42714)

commit fbbe5f6
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 16:15:41 2024 +0100

    [Openmvg] single config build fixes (microsoft#42732)

commit c6ae212
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 16:15:21 2024 +0100

    [pdcurses] Fix missing platform (microsoft#42733)

commit 10474e0
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 16:14:53 2024 +0100

    [Physx] fix single config builds (microsoft#42734)

commit 1c753cf
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 16:13:08 2024 +0100

    [ptex] fix single config build (microsoft#42735)

commit d18f1ba
Author: Alexander Neumann <[email protected]>
Date:   Mon Dec 16 16:12:32 2024 +0100

    [sese] single config fixes (microsoft#42736)
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 category:port-update The issue is with a library, which is requesting update new revision info:needs-maintainer-attention Lets the current 'on rotation' vcpkg maintainer know they need to look at this.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants