Kevin Puetz
Kevin Puetz
When given input like sshkey.pkr.hcl ```hcl packer { required_plugins { sshkey = { version = ">= 0.1.0" source = "github.com/ivoronin/sshkey" } } } data "sshkey" "packer" {} source "null" "test"...
See discussion at https://groups.google.com/g/innosetup/c/lhlU3LgB0IY/m/gFRmoPG9BAAJ This PR is untested (not even compiled) because I do not have access to Embarcadero Delphi (and my employer does not qualify for the Community license)....
Specify library name and version: libxslt/1.1.35 Just bumping to latest version of libxml2/2.9.13 (already in CCI) and libxslt/1.1.35 --- - [x] I've read the [guidelines](https://github.com/conan-io/conan-center-index/blob/master/docs/how_to_add_packages.md) for contributing. - [x] I've...
CMake 3.15 added a new target property [MSVC_RUNTIME_LIBRARY](https://cmake.org/cmake/help/latest/prop_tgt/MSVC_RUNTIME_LIBRARY.html), and no longer places /MD, /MDd, etc into CMAKE__FLAGS if [CMP0091](https://cmake.org/cmake/help/latest/policy/CMP0091.html) is enabled. This results in conan.cmake not detecting the compiler.runtime. Conan...
There seems to be a hard-coded assumption in conan.cmake that x86_64 is the only *64 architecture MSVC supports. https://github.com/conan-io/cmake-conan/blob/7f9fe6df98eb805d78b7e55f27920546dbdd8d49/conan.cmake#L200-L201 This is not so; it has historically supported IA64 (until Visual...
For the stock `PROFILE`, conan has a `CONAN_DEFAULT_PROFILE_PATH` environment variable. But this does not provide a way to do many newer conan features, like multiple profiles, or `--profile:host` vs `--profile:build`....
It looks like `compiler = msvc` and `conan.tools.microsoft.VCVars` does have support for using MSVC "down level toolsets" (e.g. using the VS2019 compiler, but installed as part of VS2022). ### Environment...
Fix some failures identified in gtest_build_tests=ON when trying to build googletest with winegcc for a [winelib](https://wiki.winehq.org/Winelib) application (i.e. when using a POSIX libc/libstdc++, but with some win32 API available). Context:...
#### Overview of the Issue #96 added support for `StepSSHKeyGen`, but runs it quite late in the sequence (most notably, after StepCreateFloppy and StepCreateCD). https://github.com/hashicorp/packer-plugin-vmware/blob/a40ad8f7c745655d35be19c07d785636b92c8625/builder/vmware/iso/builder.go#L126-L129 https://github.com/hashicorp/packer-plugin-vmware/blob/a40ad8f7c745655d35be19c07d785636b92c8625/builder/vmware/iso/builder.go#L77-L87 This means the `SSHPublicKey`...
### Describe the bug https://docs.conan.io/2/reference/tools/build.html#conan-tools-build-check-min-cppstd says that check_*_cppstd should be able to infer the default cppstd from compiler.version in cases where it has not been overridden: > It not settings.compiler.cppstd,...