Dmitry Bely
Dmitry Bely
@dra27 I've looked into `depext` sources - it's relatively easy to adapt it for `conan`, but the latter needs `arch`, `compiler`, `compiler-version` to fetch or build the necessary C library....
@yakobowski your compiler must be gcc/mingw? I use MSVC 2017 and it doesn't throw an error. But you are right, the second problem should be fixed that way. As for...
The following `git-as-svn.service` works for me. Not an ideal solution as it doesn't try to detect that the Gitlab startup sequence is completed and just uses a delay, but that's...
The following proof of concept works for me so far: ```patch --- pyenv-lib.vbs.orig 2021-09-16 15:40:10.000000000 +0300 +++ pyenv-lib.vbs 2022-02-16 11:15:15.096235800 +0300 @@ -256,14 +256,18 @@ Sub WriteWinScript(baseName) ' WScript.echo "kkotari:...
> Is it necessary to dynamically generate shim EXEs? A single, precompiled shim EXE could use `argv[0]` to identify which command to call. How this identification could work? Maintain the...
@bkeryan I like your approach. I've created a helper exe in C and it seems to work with pyenv without an issue. The only problem is how to integrate it...
No, still not entirely acceptable. `FindPython3.cmake` detects python the following way: ```cmake if (_${_PYTHON_PREFIX}_EXECUTABLE AND NOT CMAKE_CROSSCOMPILING) if (NAME STREQUAL "PREFIX") execute_process (COMMAND ${_${_PYTHON_PREFIX}_INTERPRETER_LAUNCHER} "${_${_PYTHON_PREFIX}_EXECUTABLE}" -c "import sys\ntry:\n from distutils...
IMHO this method does the following: `shared_option_name is None` means default behavior that is to load recipe's `ConanFile` and look if its options contain attribute `shared`. If they do, set...
I'm second to this. I'm trying to run two concurrent build jobs in Docker containers on the same Docker host. Each job, in turn, uses `ConanMultiPackager(use_docker=True)` to create a sibling...
What "feature"? I've just (hopefully) fixed it locally as follows: ```patch --- runner.py.orig 2021-09-15 11:39:01.997868300 +0300 +++ runner.py 2021-09-15 11:39:02.086886100 +0300 @@ -1,3 +1,4 @@ +import uuid import os import...