# GNU Guix --- Functional package management for GNU # Copyright © 2015-2016, 2019-2020, 2022 Ludovic Courtès # Copyright © 2019 Simon Tournier # # This file is part of GNU Guix. # # GNU Guix is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GNU Guix is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Guix. If not, see . # # Test the 'guix graph' command-line utility. # module_dir="t-guix-graph-$$" mkdir "$module_dir" tmpfile1="$module_dir/t-guix-graph1-$$" tmpfile2="$module_dir/t-guix-graph2-$$" trap 'rm -r "$module_dir"' EXIT cat > "$module_dir/foo.scm"< "$tmpfile1" guix graph -t references `guix build guile-bootstrap` > "$tmpfile2" cmp "$tmpfile1" "$tmpfile2" # XXX: Filter the file names in the graph to work around the fact that we get # a mixture of relative and absolute file names. guix graph -t derivation coreutils > "$tmpfile1" guix graph -t derivation `guix build -d coreutils` > "$tmpfile2" cmp "$tmpfile1" "$tmpfile2" # Try package transformation options. guix graph git | grep 'label = "openssl' guix graph git --with-input=openssl=libressl | grep 'label = "libressl' guix graph git --with-input=openssl=libressl | grep 'label = "openssl' && false # Try --load-path guix graph -L $module_dir dummy | grep 'label = "dummy' # Displaying shortest paths (or lack thereof). guix graph --path emacs vim && false path="\ emacs gnutls p11-kit libffi" test "`guix graph --path emacs libffi | cut -d '@' -f1`" = "$path" # At the derivation level, there's a direct path because libffi is propagated # via gtk+. test "`guix graph --path -t derivation emacs libffi | wc -l`" -ge 2 Geerinckx-Rice 2021-05-18Revert "vm: Autoload (gnu build vm)."...Tobias Geerinckx-Rice 2021-05-17vm: Remove unused imports....Ludovic Courtès 2021-05-17vm: Autoload (gnu build vm)....Ludovic Courtès 2021-04-12system: vm: Add a memory-size argument to system-docker-image....Mathieu Othacehe 2021-04-08system: vm: Set a larger value for the msize option of the 9p file system....Maxim Cournoyer 2021-02-25system: vm: Use Guile 3.0 in Docker images....Ludovic Courtès 2021-02-17scripts: system: Remove 'vm-image' command....Mathieu Othacehe 2020-11-17system: vm: Remove unused system-disk-image-in-vm....Maxim Cournoyer 2020-11-10vm: expression->derivation-in-linux-vm: Run in a UTF-8 locale....Ludovic Courtès 2020-11-10vm: 'system-qemu-image' forces the use of i386/BIOS GRUB....Ludovic Courtès 2020-11-05vm: system-qemu-image: Fix type error, remove more actual file systems....Ludovic Courtès 2020-08-31vm: Disable caching for writable file system mappings....Ludovic Courtès 2020-07-11Revert "vm: Use virtio network driver."...Marius Bakke