From 7ecd1761a236a2256e420032d561aa6c372d95a8 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 24 Apr 2019 19:29:25 +0200 Subject: gnu: bubblewrap: Edit description. * gnu/packages/virtualization.scm (bubblewrap)[description]: Mark up & edit. --- gnu/packages/virtualization.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gnu/packages/virtualization.scm') diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 4bdbbb39b6..bf3729ba93 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -1089,11 +1089,11 @@ (define-public bubblewrap (home-page "https://github.com/projectatomic/bubblewrap") (synopsis "Unprivileged sandboxing tool") (description "Bubblewrap is aimed at running applications in a sandbox, -where it has restricted access to parts of the operating system or user data -such as the home directory. Bubblewrap always creates a new mount namespace, -and the user can specify exactly what parts of the filesystem should be visible -in the sandbox. Any such directories specified is mounted nodev by default, -and can be made readonly.") +restricting their access to parts of the operating system or user data such as +the home directory. Bubblewrap always creates a new mount namespace, and the +user can specify exactly what parts of the file system should be made visible +in the sandbox. These directories are mounted with the @code{nodev) option +by default and can be made read-only.") (license license:lgpl2.0+))) (define-public bochs -- cgit v1.2.3 From ef1f1ca742082806afe0a430ea593ad93b573f8c Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Sat, 27 Apr 2019 15:41:36 +0200 Subject: gnu: bubblewrap: Fix Texinfo markup in description. Fixes a regression introduced in 7ecd1761a236a2256e420032d561aa6c372d95a8. * gnu/packages/virtualization.scm (bubblewrap): Fix typo. --- gnu/packages/virtualization.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/virtualization.scm') diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index bf3729ba93..dd4ef3094e 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -1092,7 +1092,7 @@ (define-public bubblewrap restricting their access to parts of the operating system or user data such as the home directory. Bubblewrap always creates a new mount namespace, and the user can specify exactly what parts of the file system should be made visible -in the sandbox. These directories are mounted with the @code{nodev) option +in the sandbox. These directories are mounted with the @code{nodev} option by default and can be made read-only.") (license license:lgpl2.0+))) -- cgit v1.2.3 From a1570c89fe6c79ea8f7e0b933cbce1fd501dff6f Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 24 Apr 2019 17:14:59 +0200 Subject: gnu: qemu: Build verbosely. * gnu/packages/virtualization.scm (qemu)[arguments]: Remove phase 'make-gtester-verbose' in favor of #:make-flags. --- gnu/packages/virtualization.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gnu/packages/virtualization.scm') diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index dd4ef3094e..87839490b2 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -126,6 +126,8 @@ (define-public qemu (assoc-ref %outputs "out") "/libexec/samba-wrapper") "--audio-drv-list=alsa,pa,sdl") + ;; Make build and test output verbose to facilitate investigation upon failure. + #:make-flags '("V=1") #:phases (modify-phases %standard-phases (replace 'configure @@ -177,10 +179,6 @@ (define-public qemu (chmod "samba-wrapper" #o755) (install-file "samba-wrapper" libexec)) #t)) - (add-before 'check 'make-gtester-verbose - (lambda _ - ;; Make GTester verbose to facilitate investigation upon failure. - (setenv "V" "1") #t)) (add-before 'check 'disable-test-qga (lambda _ (substitute* "tests/Makefile.include" -- cgit v1.2.3