unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal.
@ 2020-02-22 14:35 Jan Nieuwenhuizen
  2020-02-24 20:27 ` Marius Bakke
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jan Nieuwenhuizen @ 2020-02-22 14:35 UTC (permalink / raw)
  To: 39737

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

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal.
  2020-02-22 14:35 [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal Jan Nieuwenhuizen
@ 2020-02-24 20:27 ` Marius Bakke
  2020-03-01 20:51 ` bug#39737: " Jakub Kądziołka
  2020-03-01 20:53 ` [bug#39737] " Jakub Kądziołka
  2 siblings, 0 replies; 4+ messages in thread
From: Marius Bakke @ 2020-02-24 20:27 UTC (permalink / raw)
  To: Jan Nieuwenhuizen, 39737

[-- Attachment #1: Type: text/plain, Size: 417 bytes --]

Jan Nieuwenhuizen <janneke@gnu.org> writes:

> Without this patch qemu-minimal-2.10 is not really minimal; it depends on
> cups, ffmpeg, ghostscript, gstreamer, gtk, spice, ...

Good catch, LGTM ...

>
> * gnu/packages/virtualization.scm (qemu-minimal-2.10): Use minimal
> dependencies from qemu-minimal.

... though I'd write this as

[native-inputs]: Inherit from QEMU-MINIMAL instead of QEMU.
[inputs]: Likewise.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#39737: [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal.
  2020-02-22 14:35 [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal Jan Nieuwenhuizen
  2020-02-24 20:27 ` Marius Bakke
@ 2020-03-01 20:51 ` Jakub Kądziołka
  2020-03-01 20:53 ` [bug#39737] " Jakub Kądziołka
  2 siblings, 0 replies; 4+ messages in thread
From: Jakub Kądziołka @ 2020-03-01 20:51 UTC (permalink / raw)
  To: Jan Nieuwenhuizen; +Cc: 39737-done, mbakke

[-- Attachment #1: Type: text/plain, Size: 529 bytes --]

On Sat, Feb 22, 2020 at 03:35:25PM +0100, Jan Nieuwenhuizen wrote:
> 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(-)

Thanks, pushed as 97d491a902d294af79c1f0e997029d6872517d5b after
applying Marius's commit message suggestion.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal.
  2020-02-22 14:35 [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal Jan Nieuwenhuizen
  2020-02-24 20:27 ` Marius Bakke
  2020-03-01 20:51 ` bug#39737: " Jakub Kądziołka
@ 2020-03-01 20:53 ` Jakub Kądziołka
  2 siblings, 0 replies; 4+ messages in thread
From: Jakub Kądziołka @ 2020-03-01 20:53 UTC (permalink / raw)
  To: 39737

[-- Attachment #1: Type: text/plain, Size: 127 bytes --]

It seems I have encountered a race condition in my workflow. The proper
commit ID is 2d79250d1aa32fbff5aae0b1d00fcb44cab453e1.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-01 20:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-22 14:35 [bug#39737] [PATCH] gnu: qemu-minimal-2.10: Use minimal dependencies from qemu-minimal Jan Nieuwenhuizen
2020-02-24 20:27 ` Marius Bakke
2020-03-01 20:51 ` bug#39737: " Jakub Kądziołka
2020-03-01 20:53 ` [bug#39737] " Jakub Kądziołka

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).