aboutsummaryrefslogtreecommitdiff
path: root/etc/release-manifest.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2021-04-09 19:57:29 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2021-04-10 14:11:33 +0200
commit2ecd7d64993580a4365232e46e6bd66d2324f0a0 (patch)
tree93ee45673e7379260889fe44c2c733559172d242 /etc/release-manifest.scm
parent6036df88109c81fa2a6565ba0c4ca809fa2cd367 (diff)
downloadguix-2ecd7d64993580a4365232e46e6bd66d2324f0a0.tar.gz
guix-2ecd7d64993580a4365232e46e6bd66d2324f0a0.zip
gnu: go-github-com-go-sql-driver-mysql: Fix typo in description.
* gnu/packages/golang.scm (go-github-com-go-sql-driver-mysql) [description]: Fix typo.
Diffstat (limited to 'etc/release-manifest.scm')
0 files changed, 0 insertions, 0 deletions
e 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