Lars Bilke
Lars Bilke
Nice work Doc! To get this running I needed to set the the node path as [mentionen by boog](https://github.com/unconed/TermKit/issues/68#issuecomment-3605376): ``` export NODE_PATH=`pwd`/Shared/:`pwd`/Node/:`pwd`/Node/shell/:`pwd`/Node/view/ ```
I also want to know how to use peepopen with Xcode 4!
@mcobrien Thanks for the script! In principal it works but my Xcode projects were generated with CMake and the build directory (which contains the Xcode project) is outside of the...
At the moment I do not have a scif recipe at hand but something like this: ``` ... %appinstall return 0 # this is fine return 1 # this should...
Thanks a lot Vanessa! I will test thoroughly tomorrow!
By using the (deprecated) `setup.py`-approach you can implement this via environment variables, e.g.: ```python # setuptools_scm config local_scheme via env var SETUPTOOLS_SCM_LOCAL_SCHEME: scm_local_scheme = "node-and-date" if "SETUPTOOLS_SCM_LOCAL_SCHEME" in os.environ: local_scheme_values...
I recently made this: https://github.com/bilke/conan-vtk/tree/stable/8.1.1
@Morwenn I am currently in the process of creating a netCDF package. I will post my results here...
Thanks for the plugin pointers! Indeed, a local plugin is easy to implement, e.g. for `scripts`: ```python from __future__ import annotations __all__ = ["dynamic_metadata"] def __dir__() -> list[str]: return __all__...