Malte Poll

Results 61 comments of Malte Poll

With #5694 (which is in 0.0.24), I was trying to get a larger set of statically linked release artifacts. I need this for another PR in another repo which depends...

This time it was an issue with the cargo.lock file, as can be seen here: https://github.com/uutils/coreutils/actions/runs/8404507913 I think this issue was resolved with the next commit on main: https://github.com/uutils/coreutils/commit/68c77b4bd129bdc12d03cc74fe0f817d2df75894

This would be great to support tag stamping in [rules_oci](https://github.com/bazel-contrib/rules_oci/blob/5ba2aceaac9c48fa1eca9090a0a9bd592e3d31cd/examples/push/stamp_tags.bzl#L29-L39) via yq. The jq toolchain is not available on macOS with M1 or linux with arm64.

I noticed that presets in mkosi are roughly analogous to layers in a container image. This makes me think that mkosi could have incremental builds on a preset level. Let...

Yes. You could use the generated sysroot as the only layer and create the necessary files to conform to this spec: https://github.com/opencontainers/image-spec/blob/main/image-layout.md The result can either just be a plain...

> If toolchain isn't specified, should we fall back to using the version in the go line? We can do that. We could just make this defined behavior for rules_go....

Looking at python-build-standalone, I would like to select `x86_64-unknown-linux-musl` instead of `x86_64-unknown-linux-gnu` ([see also](https://gregoryszorc.com/docs/python-build-standalone/main/running.html#obtaining-distributions)), since it ships everything statically linked. In this case, the base url would stay the same....

Just since the static version is unable to load .so libraries at runtime, it may still be required to let users choose. That being said, I have no idea if...

I'm not super deep in the inner workings of python libraries, but if I understand it correctly, some python libraries ship precompiled shared libraries that the python interpreter will load...