aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-graph.sh
blob: 1ec99706fd0245d45b4c48ac639e0843f0273544 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# GNU Guix --- Functional package management for GNU
# Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
#
# 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 <http://www.gnu.org/licenses/>.

#
# Test the 'guix graph' command-line utility.
#

tmpfile1="t-guix-graph1-$$"
tmpfile2="t-guix-graph2-$$"
trap 'rm -f "$tmpfile1" "$tmpfile2"' EXIT

guix graph --version

for package in guile-bootstrap coreutils python
do
    for graph in package bag-emerged bag bag-with-origins
    do
	guix graph -t "$graph" "$package" | grep "$package"
    done
done

guix build guile-bootstrap
guix graph -t references guile-bootstrap | grep guile-bootstrap

guix graph -e '(@ (gnu packages bootstrap) %bootstrap-guile)' \
    | grep guile-bootstrap

if guix graph -e +; then false; else true; fi

# Try passing store file names.

guix graph -t references guile-bootstrap > "$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"
nckx-Rice 2019-03-17gnu: xmonad: Update to 0.15....* gnu/packages/wm.scm (xmonad): Update to 0.15. Tobias Geerinckx-Rice 2019-03-17gnu: xmonad: Don't use NAME in source URI....* gnu/packages/wm.scm (xmonad)[source]: Hard-code NAME. Tobias Geerinckx-Rice 2019-03-14gnu: Move libconfuse to (gnu packages textutils)....* gnu/packages/wm.scm (libconfuse): Move… * gnu/packages/textutils.scm (libconfuse): …to here. Adjust all imports. Tobias Geerinckx-Rice 2019-03-11gnu: swaylock: Fix indentation....* gnu/packages/wm.scm (swaylock): Fix indentation. Rutger Helling 2019-03-11gnu: Add swaylock....* gnu/packages/wm.scm (swaylock): New variable. Rutger Helling 2019-03-11gnu: Add swayidle....* gnu/packages/wm.scm (swayidle): New variable. Rutger Helling 2019-03-11gnu: Add sway....* gnu/packages/wm.scm (sway): New variable. Rutger Helling 2019-03-11gnu: Add wlroots....* gnu/packages/wm.scm (wlroots): New variable. Rutger Helling 2019-03-09gnu: i3lock-color: Update to 2.12.c....* gnu/packages/wm.scm (i3lock-color): Update to 2.12.c. [inputs]: Add xcb-util-xrm. Tobias Geerinckx-Rice 2019-03-09gnu: i3lock-color: Don't use unstable tarball....* gnu/packages/wm.scm (i3lock-color)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice 2019-03-09gnu: i3lock-fancy: Don't use unstable tarball....* gnu/packages/wm.scm (i3lock-fancy)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice 2019-02-18gnu: i3-wm: Epand description....* gnu/packages/wm.scm (i3-wm)[description]: Describe more. Tobias Geerinckx-Rice 2019-02-14gnu: i3-wm: Remove obsolete code....* gnu/packages/wm.scm (i3-wm)[arguments]: Remove #:make-flags. Update reason for disabled #:tests?. Tobias Geerinckx-Rice 2019-02-13gnu: fluxbox: All phases return #t....* gnu/packages/wm.scm (fluxbox)[arguments]: All phases return #t. Efraim Flashner 2019-02-13gnu: fluxbox: Install vim helper files....* gnu/packages/wm.scm (fluxbox)[arguments]: Add custom phase to install vim files. Efraim Flashner 2019-02-08gnu: bspwm: Don't use unstable tarball....* gnu/packages/wm.scm (bspwm)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice 2019-02-08gnu: i3blocks: Use GIT-FILE-NAME....* gnu/packages/wm.scm (i3blocks)[source]: Use GIT-FILE-NAME. Tobias Geerinckx-Rice 2019-01-31gnu: i3-wm: Update to 4.16.1....* gnu/packages/wm.scm (i3-wm): Update to 4.16.1. Marius Bakke 2019-01-25gnu: awesome: Use INVOKE....* gnu/packages/wm.scm (awesome)[arguments]: Return #T from check phase. Ricardo Wurmus