aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/nss.scm
diff options
context:
space:
mode:
authorBrian Leung <bkleung89@gmail.com>2019-07-27 05:00:46 +0200
committerRicardo Wurmus <rekado@elephly.net>2019-08-05 16:07:09 +0200
commitf48aa64ea8823b8bff660bc6dbc00f5af119389d (patch)
tree532e9fd087ab8b179ad665ae8cd4bf9c79033a77 /gnu/system/nss.scm
parentfef08850b7b2a20f6f15afc9218f72816f9ad09d (diff)
downloadguix-f48aa64ea8823b8bff660bc6dbc00f5af119389d.tar.gz
guix-f48aa64ea8823b8bff660bc6dbc00f5af119389d.zip
gnu: emacs-evil-expat: Update to 0.0.1-1.f4fcd0a.
* gnu/packages/emacs-xyz.scm (emacs-evil-expat): Update to 0.0.1-1.f4fcd0a. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/system/nss.scm')
0 files changed, 0 insertions, 0 deletions
le 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 2020-12-11install: Discover local substitute servers....* gnu/installer/substitutes.scm: New file. * gnu/installer/newt/substitutes.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * po/guix/POTFILES.in: Add gnu/installer/newt/substitutes.scm. * gnu/installer/proxy.scm (with-silent-shepherd): Move to ... * gnu/installer/utils.scm: ... here. * gnu/installer/record.scm (<installer>)[substitutes-page]: New field. * gnu/installer/newt.scm (substitutes-page): New procedure, (newt-installer): register it. * gnu/installer.scm (installer-steps): Add "substitutes-page" step. * gnu/system/install.scm (%installation-services): Add avahi-service-type and enable substitute server discover in guix-service-type. [<name-service-switch>]: Set it to %mdns-host-lookup-nss. Mathieu Othacehe 2020-11-17installer: Fix device synchronization....Reported by Florian Pelz: https://lists.gnu.org/archive/html/guix-devel/2020-11/msg00326.html. * gnu/installer/utils.scm (call-with-time): New procedure, (let/time): new macro. * gnu/installer/parted.scm (with-delay-device-in-use?): Increase the retry count to 16. (non-install-devices): Remove the call to with-delay-device-in-use? as it doesn't return the expected result, and would block much longer now. (free-parted): Log the time required to sync each device. Mathieu Othacehe 2020-06-09Revert "installer: utils: Dump command output to syslog when testing."...This reverts commit f73ed5579157a074093bae7a2ffb59a85412be0d. This was pushed by error, as this is not reviewed yet. Mathieu Othacehe 2020-06-09installer: utils: Dump command output to syslog when testing....When debugging the installation tests, it can be very handy to be able to read "run-command" output, for instance when executing "guix system init". Introduce a new "invoke-with-log" procedure that is able to log a command standard and error outputs to the syslog. Use it, only when running the installation tests, to dump "run-command" output. * gnu/installer/utils.scm (open-pipe-with-stderr, invoke-with-log): New procedures, (invoke-log-port): new variable, (run-command): move to the end of the file and use invoke-with-log when running the installation tests. Mathieu Othacehe