aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/gnome-xyz.scm
diff options
context:
space:
mode:
authorzimoun <zimon.toutoune@gmail.com>2022-11-17 03:50:11 +0100
committerRicardo Wurmus <rekado@elephly.net>2022-11-24 12:31:23 +0100
commitaa25663162f29d5a4323f7c4fd5643906e76c463 (patch)
tree2cdb4d1533b9228807579aa9882360c388af15da /gnu/packages/gnome-xyz.scm
parentce2688cd3b55fb7b139731a70c4cf1b4caf5e34b (diff)
downloadguix-aa25663162f29d5a4323f7c4fd5643906e76c463.tar.gz
guix-aa25663162f29d5a4323f7c4fd5643906e76c463.zip
gnu: r-impute: Update to 1.72.1.
* gnu/packages/bioconductor.scm (r-impute): Update to 1.72.1.
Diffstat (limited to 'gnu/packages/gnome-xyz.scm')
0 files changed, 0 insertions, 0 deletions
gnu/installer/final.scm (install-locale): New procedure. (install-system): Call it. Mathieu Othacehe 2022-01-14installer: Do not set the locale in run-command....Installing the locale inside the container, once the cow-store is mounted, causes the process to keep opened locale files that can later prevent the cow-store umount. * gnu/installer/utils.scm (run-command): Remove locale argument. * gnu/installer/final.scm (install-system): Adapt it. Mathieu Othacehe 2022-01-14installer: Remove an unused procedure....* gnu/installer/final.scm (kill-cow-users): Remove it. Mathieu Othacehe 2020-09-10installer: final: Introduce call-with-mnt-container....* gnu/installer/final.scm (call-with-mnt-container): New procedure, (install-system): use it instead of call-with-container, to make sure that the container is not jailed. Mathieu Othacehe 2020-09-02installer: Run the installation inside a container....When the store overlay is mounted, other processes such as kmscon, udev and guix-daemon may open files from the store, preventing the underlying install support from being umounted. See: https://lists.gnu.org/archive/html/guix-devel/2018-12/msg00161.html. To avoid this situation, mount the store overlay inside a container, and run the installation from within that container. * gnu/build/shepherd.scm (fork+exec-command/container): New procedure. * gnu/services/base.scm (guix-shepherd-service): Support an optional PID argument passed to the "start" method. If that argument is passed, ensure that guix-daemon enters the given PID MNT namespace by using fork+exec-command/container procedure. * gnu/installer/final.scm (umount-cow-store): Remove it, (install-system): run the installation from within a container. * gnu/installer/newt/final.scm (run-install-shell): Remove the display hack. Mathieu Othacehe