aboutsummaryrefslogtreecommitdiff
digraph "Guix shepherd-service" {
  "user-file-systems" [label = "user-file-systems", shape = box, fontname = "dejavu sans"];
  "user-processes" -> "user-file-systems" [color = cyan3];
  "user-processes" [label = "user-processes", shape = box, fontname = "dejavu sans"];
  "nscd" -> "user-processes" [color = magenta];
  "guix-daemon" -> "user-processes" [color = blue];
  "urandom-seed" -> "user-processes" [color = dimgrey];
  "syslogd" -> "user-processes" [color = darkgoldenrod];
  "term-tty6" -> "user-processes" [color = magenta];
  "term-tty5" -> "user-processes" [color = red];
  "term-tty4" -> "user-processes" [color = darkgoldenrod];
  "term-tty3" -> "user-processes" [color = dimgrey];
  "term-tty2" -> "user-processes" [color = darkviolet];
  "term-tty1" -> "user-processes" [color = peachpuff4];
  "networking" -> "user-processes" [color = dimgrey];
  "nscd" [label = "nscd", shape = box, fontname = "dejavu sans"];
  "guix-daemon" [label = "guix-daemon", shape = box, fontname = "dejavu sans"];
  "urandom-seed" [label = "urandom-seed", shape = box, fontname = "dejavu sans"];
  "syslogd" [label = "syslogd", shape = box, fontname = "dejavu sans"];
  "ssh-daemon" -> "syslogd" [color = darkgoldenrod];
  "ssh-daemon" [label = "ssh-daemon", shape = box, fontname = "dejavu sans"];
  "term-tty6" [label = "term-tty6", shape = box, fontname = "dejavu sans"];
  "console-font-tty6" -> "term-tty6" [color = darkgoldenrod];
  "console-font-tty6" [label = "console-font-tty6", shape = box, fontname = "dejavu sans"];
  "term-tty5" [label = "term-tty5", shape = box, fontname = "dejavu sans"];
  "console-font-tty5" -> "term-tty5" [color = dimgrey];
  "console-font-tty5" [label = "console-font-tty5", shape = box, fontname = "dejavu sans"];
  "term-tty4" [label = "term-tty4", shape = box, fontname = "dejavu sans"];
  "console-font-tty4" -> "term-tty4" [color = darkviolet];
  "console-font-tty4" [label = "console-font-tty4", shape = box, fontname = "dejavu sans"];
  "term-tty3" [label = "term-tty3", shape = box, fontname = "dejavu sans"];
  "console-font-tty3" -> "term-tty3" [color = peachpuff4];
  "console-font-tty3" [label = "console-font-tty3", shape = box, fontname = "dejavu sans"];
  "term-tty2" [label = "term-tty2", shape = box, fontname = "dejavu sans"];
  "console-font-tty2" -> "term-tty2" [color = darkseagreen];
  "console-font-tty2" [label = "console-font-tty2", shape = box, fontname = "dejavu sans"];
  "term-tty1" [label = "term-tty1", shape = box, fontname = "dejavu sans"];
  "console-font-tty1" -> "term-tty1" [color = cyan3];
  "console-font-tty1" [label = "console-font-tty1", shape = box, fontname = "dejavu sans"];
  "networking" [label = "networking", shape = box, fontname = "dejavu sans"];
  "ssh-daemon" -> "networking" [color = darkgoldenrod];
  "root-file-system" [label = "root-file-system", shape = box, fontname = "dejavu sans"];
  "file-system-/dev/pts" -> "root-file-system" [color = peachpuff4];
  "file-system-/dev/shm" -> "root-file-system" [color = darkgoldenrod];
  "file-system-/gnu/store" -> "root-file-system" [color = blue];
  "user-processes" -> "root-file-system" [color = cyan3];
  "udev" -> "root-file-system" [color = darkseagreen];
  "file-system-/dev/pts" [label = "file-system-/dev/pts", shape = box, fontname = "dejavu sans"];
  "user-processes" -> "file-system-/dev/pts" [color = cyan3];
  "file-system-/dev/shm" [label = "file-system-/dev/shm", shape = box, fontname = "dejavu sans"];
  "user-processes" -> "file-system-/dev/shm" [color = cyan3];
  "file-system-/gnu/store" [label = "file-system-/gnu/store", shape = box, fontname = "dejavu sans"];
  "user-processes" -> "file-system-/gnu/store" [color = cyan3];
  "udev" [label = "udev", shape = box, fontname = "dejavu sans"];
  "term-tty6" -> "udev" [color = magenta];
  "term-tty5" -> "udev" [color = red];
  "term-tty4" -> "udev" [color = darkgoldenrod];
  "term-tty3" -> "udev" [color = dimgrey];
  "term-tty2" -> "udev" [color = darkviolet];
  "term-tty1" -> "udev" [color = peachpuff4];
  "networking" -> "udev" [color = dimgrey];
  "host-name" [label = "host-name", shape = box, fontname = "dejavu sans"];
  "term-tty6" -> "host-name" [color = magenta];
  "term-tty5" -> "host-name" [color = red];
  "term-tty4" -> "host-name" [color = darkgoldenrod];
  "term-tty3" -> "host-name" [color = dimgrey];
  "term-tty2" -> "host-name" [color = darkviolet];
  "term-tty1" -> "host-name" [color = peachpuff4];
  "loopback" [label = "loopback", shape = box, fontname = "dejavu sans"];

}
Ludovic Courtès 2019-11-22package: Allow multiple '--manifest' options....* guix/scripts/package.scm (manifest-action): Remove. (%actions): Remove it. (load-manifest): New procedure. (process-actions): Handle 'manifest' options. Define 'files' from 'manifest' options. Define 'manifest' based on FILES. Define 'trans' to represent the final transaction. * tests/guix-package.sh: Test it. * doc/guix.texi (Invoking guix package): Mention Ludovic Courtès 2019-11-08guix: package: lock profiles when processing them....* guix/scripts/package.scm (process-actions): Get a per-profile lock to prevent concurrent actions on profiles. * tests/guix-package.sh: Add test. Julien Lepiller 2019-09-26guix package: Add '--list-profiles'....* guix/scripts/package.scm (show-help, %options): Add '--list-profiles'. (process-query): Honor it. * tests/guix-package.sh: Add test. Ludovic Courtès 2019-09-18guix package: "guix package -f FILE" ensures FILE returns a package....* guix/scripts/package.scm (options->installable): Add clause for 'install option with a non-package object. * tests/guix-package.sh: Add test. Ludovic Courtès 2019-05-26discovery: 'all-modules' returns modules in path order....A particular effect of this is that if there are ambiguous packages in a directory specified with `-L module_dir` and the distribution, the version from `module_dir` will be loaded, which is usually what would be expected. (E.g. for `guix build` or `guix package -i`.) * guix/discovery.scm (all-modules): Return modules in path order. * tests/guix-package.sh: Test local definitions take precedence. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Robert Vollmert 2019-05-13tests: Fix guix-package.sh....GCC is now a hidden package, so cannot be installed. * tests/guix-package.sh: Replace 'gcc' by 'zile' in a test that install multiple packages. Maxim Cournoyer 2019-05-09ui: Make package outputs searchable....* guix/ui.scm (relevance): Allow the "field" procedure of a metric to return a list, and handle that case appropriately. Update docstring. (%package-metrics): Add a metric for package outputs. * guix/scripts/package.scm (find-packages-by-description): Update docstring. * tests/guix-package.sh: Add a test case to verify that package outputs are included in search results. Co-authored-by: Tobias Geerinckx-Rice <me@tobias.gr> Chris Marusich 2019-02-07profiles: Raise an error for unmatched patterns....Previously, "guix package -r something-not-installed" would silently complete. Now an error is raised. * guix/profiles.scm (&unmatched-pattern-error): New condition type. (manifest-matching-entries): Rewrite to raise an error when one of PATTERNS is not matched. * guix/ui.scm (call-with-error-handling): Handle 'unmatched-pattern-error?'. * tests/guix-package.sh: Add test. * tests/profiles.scm ("manifest-matching-entries"): Don't try to remove unmatched pattern. ("manifest-matching-entries, no match"): New test. ("manifest-transaction-effects"): Remove 'remove' field. Ludovic Courtès