aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/gdb.scm
diff options
context:
space:
mode:
authorLeo Famulari <leo@famulari.name>2016-05-11 02:25:22 -0400
committerLeo Famulari <leo@famulari.name>2016-05-16 02:13:18 -0400
commitb4370be9deca08f8347fbb0e2fc07edb1d18acd4 (patch)
treef66588c1ba2eb170bd86594027cd209e04902c33 /gnu/packages/gdb.scm
parent3fef0a2fa1160927bc323d7712eca28453591c07 (diff)
downloadguix-b4370be9deca08f8347fbb0e2fc07edb1d18acd4.tar.gz
guix-b4370be9deca08f8347fbb0e2fc07edb1d18acd4.zip
gnu: python-cryptography, python-cryptography-vectors: Update to 1.3.2.
* gnu/packages/python.scm (python-cryptography): Update to 1.3.2. (python-cryptography-vectors): Update to 1.3.2.
Diffstat (limited to 'gnu/packages/gdb.scm')
0 files changed, 0 insertions, 0 deletions
ainer.scm?id=935e79af61f4d903e562362cdd828be807e15581'>linux-container: Mount a new /dev/pts instance in the container....Fixes <https://bugs.gnu.org/36463>. Reported by Steffen Rytter Postas <nc@scalehost.eu>. * gnu/build/linux-container.scm (mount-file-systems): When /dev/ptmx exists on the host, explicitly mount a new instance of devpts and make /dev/ptmx a symlink to /dev/pts/ptmx. Ludovic Courtès 2019-06-23linux-container: Remove dependency on (guix utils)....Fixes a bug whereby derivations importing (gnu build linux-container), such as the 'bitlbee' and 'tor' services, would depend on the user's (guix config) file, which was pulled as a dependency of (guix utils). As a result, those derivations would vary from user to user. * gnu/build/linux-container.scm (call-with-temporary-directory): New procedure. Ludovic Courtès 2019-04-02linux-container: Make the guest UID and GID a parameter....* gnu/build/linux-container.scm (initialize-user-namespace): Add #:guest-uid and #:guest-gid parameters and honor them. (run-container): Likewise. (call-with-container): Likewise. * tests/containers.scm ("call-with-container, user namespace, guest UID/GID"): New test. Ludovic Courtès 2018-01-15linux-container: Work around EBADF errors upon exit....Typically 'read-pid-file/container' would fail when starting services in containers such as BitlBee. * gnu/build/linux-container.scm (call-with-clean-exit): Use 'primitive-_exit' instead of 'primitive-exit'. (container-excursion*): Close OUT. Ludovic Courtès 2017-10-11file-systems: 'mount-file-system' now takes a <file-system> object....* gnu/build/file-systems.scm (mount-file-system): Rename 'spec' to 'fs' and assume it's a <file-system>. * gnu/build/linux-boot.scm (boot-system): Assume MOUNTS is a list of <file-system> and adjust accordingly. * gnu/build/linux-container.scm (mount-file-systems): Remove 'file-system->spec' call. * gnu/services/base.scm (file-system-shepherd-service): Add 'spec->file-system' call. Add (gnu system file-systems) to 'modules'. * gnu/system/linux-initrd.scm (raw-initrd): Use (gnu system file-systems). Add 'spec->file-system' call for #:mounts. Ludovic Courtès