Wolf Vollprecht
Wolf Vollprecht
I think we might want to rethink how we handle undefined variables. For example, this is not throwing the appropriate Jinja error: ```yaml host: - ${{ asdasda }} ``` Instead,...
The openjph package installs dll / lib files with a ABI version like `foo.0.17.dll` and `foo.0.17.lib`. ``` │ │ - Library\bin\openjph.0.17.dll ... │ │ - Library\lib\openjph.0.17.lib ``` Should we support...
When you have `python_min: "3.10"` in the context and use it in the recipe body, and it's also defined in variants, then it should still not be used in the...
We got a report that rattler-build creates entry points for noarch-python with unquoted paths. For example: ```py #!/bin/sh '''exec' /foo/bar ... ``` where `/foo/bar` is not quoted, and replaced at...
I found two small issues when generating the recipe for `zarr`: - [ ] Upstream uses `MIT License` which is not valid SPDX. We should maybe make a HashMap or...
We are parsing patches pretty strictly. I think it would be nice to have a "check-patch **/*.patch" function so you can check all patches quickly and easily in CI. I...
On Windows, users have to manually add a line like `if errorlevel 1 exit 1` after every line of code. I am wondering if there is a way to make...
The idea is to add the top-level metadata (recipe: name / version) to be used as default names for the cache output so that we can workaround the problem of...
This makes use of a new feature in minijinja for "semi-strict" undefined. Things like `${{ "foo" if unix }}` still works with these changes in minijinja.