diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-08-22 11:41:14 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-08-22 11:41:14 -0600 |
commit | 9343e356a65dc363253408fa222a75bcd81f58e6 (patch) | |
tree | 0adf5d7ef4eca05e23dfc1f9e7289d0bf57415cf | |
parent | 78a475c8acdf7427b7abd305ebad8b1019a74dcc (diff) |
contribs: more PRs
-rw-r--r-- | imworkingon/contribs.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/imworkingon/contribs.yml b/imworkingon/contribs.yml index 6ad30e4..d698d6b 100644 --- a/imworkingon/contribs.yml +++ b/imworkingon/contribs.yml @@ -185,3 +185,28 @@ scanned for places where GI-DocGen was emitting unknown HTML tags, which indicate such a mistake. Notably, some of the rendered gregex docs were unreadable. +- urls: [https://github.com/systemd/systemd/pull/34067] + desc: | + `systemd-nspawn` is a container runtime (like Docker or runc or + whathaveyou). Notably, nspawn is what Parabola's build-system + uses for hermetic builds. + + Currently nspawn does not support FUSE filesystems inside of the + container. This PR enhances nspawn to support FUSE. + + This is of particular utility for build systems, because it will + allow build scripts to mount a FUSE overlayfs/unionfs of the root + filesystem, which is useful for building software that does not + support a `DESTDIR`-type setting to install to an alternate root. + (Recent versions of the Linux kernel support unprivileged + in-kernel overlayfs, but at this time it is still too restrictive + to support this use-case.) +- urls: [https://github.com/mailprocessing/mailprocessing/pull/16] + desc: | + mailprocessing's `maildirproc`(1) program is a mail-filter daemon + that can sort emails into folders and such. Somewhere between + 1.0.1 and 1.2.7 the daemon lost the ability to gracefully + shutdown. This can slow down shutdown of the entire system as the + service manager waits for maildirproc to respond to the SIGINT or + SIGTERM that it was sent... but it never would. This PR fixes + that. |