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"
gnu: font-fantasque-sans: Update to 1.8.0....* gnu/packages/fonts.scm (font-fantasque-sans): Update to 1.8.0. [native-inputs]: Remove ttf2eot. [arguments]: Rename the ‘xrange->range’ phase to ‘support-python@3’. Patch another Python twoism. Tobias Geerinckx-Rice 2020-02-23gnu: font-google-material-design-icons: Use HTTPS home page....* gnu/packages/fonts.scm (font-google-material-design-icons)[home-page]: Use HTTPS. Tobias Geerinckx-Rice 2020-02-21gnu: Add font-vazir....* gnu/packages/fonts.scm (font-vazir): New variable. Amin Bandali 2020-02-10gnu: Add copyright line....Add missing copyright line for commit 200514cd8fe1797d7653386a7b1ed1106c61164e. Nicolas Goaziou 2020-02-10gnu: Add font-jetbrains-mono....* gnu/packages/fonts.scm (font-jetbrains-mono): New variable. Damien Cassou 2020-01-23gnu: font-adobe-source-serif-pro: Don't use unstable tarball....* gnu/packages/fonts.scm (font-adobe-source-serif-pro)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice 2020-01-23gnu: font-adobe-source-sans-pro: Don't use unstable tarball....* gnu/packages/fonts.scm (font-adobe-source-sans-pro)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice 2020-01-23gnu: font-adobe-source-code-pro: Don't use unstable tarball....* gnu/packages/fonts.scm (font-adobe-source-code-pro)[source]: Use GIT-FETCH and GIT-FILE-NAME. Tobias Geerinckx-Rice 2020-01-22gnu: font-public-sans: Update to 1.008....* gnu/packages/fonts.scm (font-public-sans): Update to 1.008. Tobias Geerinckx-Rice 2020-01-19gnu: font-wqy-zenhei: Use HTTP home page....* gnu/packages/fonts.scm (font-wqy-zenhei)[home-page]: Use HTTP. Tobias Geerinckx-Rice 2020-01-10gnu: font-iosevka-slab: Update source hash....* gnu/packages/fonts.scm (font-iosevka-slab)[source]: Update sha256. Tobias Geerinckx-Rice 2020-01-09gnu: font-iosevka: Update to 2.3.3....* gnu/packages/fonts.scm (font-iosevka): Update to 2.3.3. Tobias Geerinckx-Rice 2020-01-09gnu: font-comic-neue: Add a note about versions....* gnu/packages/fonts.scm (font-comic-neue): Add a comment about the ‘v2.4’ tag. Tobias Geerinckx-Rice 2020-01-09gnu: font-inconsolata: Use HTTPS home page....* gnu/packages/fonts.scm (font-inconsolata)[home-page]: Use HTTPS. Tobias Geerinckx-Rice 2020-01-09gnu: font-inconsolata: Update to 3.000....* gnu/packages/fonts.scm (font-inconsolata): Update to 3.000. [source]: Fetch from the author's new repository. Tobias Geerinckx-Rice 2020-01-09gnu: font-ibm-plex: Update to 4.0.2....* gnu/packages/fonts.scm (font-ibm-plex): Update to 4.0.2. Tobias Geerinckx-Rice 2020-01-09gnu: font-gnu-unifont: Update to 12.1.04....* gnu/packages/fonts.scm (font-gnu-unifont): Update to 12.1.04. Tobias Geerinckx-Rice 2020-01-09gnu: font-terminus: Update to 4.48....* gnu/packages/fonts.scm (font-terminus): Update to 4.48. Tobias Geerinckx-Rice 2020-01-09gnu: font-lato: Update version number to 2.015....Both the README and the Web site identify this as version 2.015. * gnu/packages/fonts.scm (font-lato)[version]: Correct. Tobias Geerinckx-Rice