From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52083) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5Vsx-0001DR-FK for guix-patches@gnu.org; Sat, 22 Feb 2020 09:36:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j5Vsw-0004M1-LC for guix-patches@gnu.org; Sat, 22 Feb 2020 09:36:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42756) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j5Vsw-0004Lv-It for guix-patches@gnu.org; Sat, 22 Feb 2020 09:36:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j5Vsw-00031P-Ew for guix-patches@gnu.org; Sat, 22 Feb 2020 09:36:02 -0500 Subject: [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:52051) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5VsZ-0001Ct-PO for guix-patches@gnu.org; Sat, 22 Feb 2020 09:35:40 -0500 From: Jan Nieuwenhuizen Date: Sat, 22 Feb 2020 15:35:25 +0100 Message-Id: <20200222143525.1181-1-janneke@gnu.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39737@debbugs.gnu.org Without this patch qemu-minimal-2.10 is not really minimal; it depends on cups, ffmpeg, ghostscript, gstreamer, gtk, spice, ... * gnu/packages/virtualization.scm (qemu-minimal-2.10): Use minimal dependencies from qemu-minimal. --- gnu/packages/virtualization.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index d3f474d17a..b8d85e03a4 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -303,10 +303,10 @@ server and embedded PowerPC, and S390 guests.") (search-patches "qemu-glibc-2.27.patch")))) ;; qemu-minimal-2.10 needs Python 2. Remove below once no longer necessary. (native-inputs `(("python-2" ,python-2) - ,@(fold alist-delete (package-native-inputs qemu) + ,@(fold alist-delete (package-native-inputs qemu-minimal) '("python-wrapper" "python-sphinx")))) (inputs - (fold alist-delete (package-inputs qemu) + (fold alist-delete (package-inputs qemu-minimal) ;; Disable seccomp support, because it's not required for the GRUB ;; test suite, and because it fails with libseccomp 2.4.2 and later. '("libseccomp")))))) -- 2.24.0