aboutsummaryrefslogtreecommitdiff
path: root/tests/guix-lint.sh
blob: 97c2ea83fefcd6182b2b690080f97c29026184ef (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# GNU Guix --- Functional package management for GNU
# Copyright © 2014 Cyril Roelandt <tipecaml@gmail.com>
#
# 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 lint' command-line utility.
#

guix lint --version

# Choose a module directory not below any %LOAD-PATH component.  This is
# necessary when testing '-L' with a relative file name.
module_dir="$(mktemp -d)"

mkdir -p "$module_dir"
trap "rm -rf $module_dir" EXIT


cat > "$module_dir/foo.scm"<<EOF
(define-module (foo)
  #:use-module (guix packages)
  #:use-module (gnu packages base))

(define-public dummy
  (package (inherit hello)
    (name "dummy")
    (version "42")
    (synopsis "dummy package")
    (description "dummy package. Only used for testing purposes.")))
EOF

GUIX_PACKAGE_PATH="$module_dir"
export GUIX_PACKAGE_PATH

grep_warning ()
{
    res=`echo "$1" | grep -E -c "(synopsis|description) should"`
    echo $res
}

# Three issues with the dummy package:
# 1) the synopsis starts with the package name;
# 2) the synopsis starts with a lower-case letter;
# 3) the description has a single space following the end-of-sentence period.

out=`guix lint -c synopsis,description dummy 2>&1`
test `grep_warning "$out"` -eq 3

out=`guix lint -c synopsis dummy 2>&1`
test `grep_warning "$out"` -eq 2

out=`guix lint -c description dummy 2>&1`
test `grep_warning "$out"` -eq 1

out=`guix lint -c description,synopsis dummy 2>&1`
test `grep_warning "$out"` -eq 3

guix lint -c synopsis,invalid-checker dummy 2>&1 | \
   grep -q 'invalid-checker: invalid checker'

# Make sure specifying multiple packages works.
guix lint -c inputs-should-be-native dummy dummy@42 dummy


# Use --load-path instead.
unset GUIX_PACKAGE_PATH

out=`guix lint -L $module_dir -c synopsis,description dummy 2>&1`
test `grep_warning "$out"` -eq 3

# Make sure specifying multiple packages works.
guix lint -L $module_dir -c inputs-should-be-native dummy dummy@42 dummy

# Test '-L' with a relative file name.  'guix lint' will see "t-xyz/foo.scm"
# (instead of "foo.scm") and will thus fail to find it in %LOAD-PATH.  Check
# that it does find it anyway.  See <https://bugs.gnu.org/42543>.
(cd "$module_dir"/.. ; guix lint -c formatting -L "$(basename "$module_dir")" dummy@42) 2>&1 > "$module_dir/out"
test -z "$(cat "$module_dir/out")"

# Likewise, when there's a warning, 'package-field-location' used to crash
# because it can't find "t-xyz/foo.scm".  See <https://bugs.gnu.org/46390>.
(cd "$module_dir"/.. ; guix lint -c synopsis -L "$(basename "$module_dir")" dummy@42) 2>&1 > "$module_dir/out"
grep_warning "`cat "$module_dir/out"`"
nst-env guix style --input-simplification=safe and manually undoing changes on a dozen of packages to reduce rebuilds (derivations for emacs, icecat, and libreoffice are unchanged.) Ludovic Courtès 2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès 2021-12-12gnu: gaupol: Don't attempt to compile bytecode twice....* gnu/packages/video.scm (gaupol)[arguments]: Disable needless compilation with a substitution. While here, remove trailing #t's. Marius Bakke 2021-12-12gnu: mps-youtube: Disable sanity check....* gnu/packages/video.scm (mps-youtube)[arguments]: Add #:phases. Marius Bakke 2021-12-12gnu: smplayer: Remove reference to %outputs.......which no longer exists in qt-build-system. * gnu/packages/video.scm (smplayer)[arguments]: Turn into gexp. Use #$OUTPUT instead of %OUTPUTS. Remove trailing #true's. Marius Bakke 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-12-02gnu: shotcut: Update to 21.10.31....* gnu/packages/video.scm (shotcut): Update to 21.10.31. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Vinicius Monego 2021-12-02gnu: mlt: Update to 7.2.0....* gnu/packages/video.scm (mlt): Update to 7.2.0. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Vinicius Monego 2021-12-01gnu: Add smplayer....* gnu/packages/video.scm (smplayer): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Attila Lendvai 2021-11-27gnu: you-get: Update to 0.4.1555....* gnu/packages/video.scm (you-get): Update to 0.4.1555. [arguments]: Don't explicitly return #t from phases. Tobias Geerinckx-Rice 2021-11-27gnu: pipe-viewer: Correct references to yt-dlp program....* gnu/packages/video.scm (pipe-viewer)[inputs]: Add yt-dlp. [phases](patch-source): Modify. Raghav Gururajan 2021-11-26gnu: pitivi: Fix build with Meson 0.60....* gnu/packages/patches/pitivi-fix-build-with-meson-0.60.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/video.scm (pitivi)[source]: Use it. Leo Famulari 2021-11-26gnu: mpv-mpris: Update to 0.6....* gnu/packages/video.scm (mpv-mpris): Update to 0.6. Efraim Flashner 2021-11-25gnu: w-scan: Build with '-O2'....* gnu/packages/video.scm (w-scan)[arguments]: Pass "-O2 -g". Ludovic Courtès 2021-11-25gnu: transcode: Build with '-O2'....* gnu/packages/video.scm (transcode)[arguments]: Pass "-O2 -g". Ludovic Courtès 2021-11-25gnu: libva: Update to 2.13.0...* gnu/packages/video.scm (libva): Update it. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Josselin Poiret 2021-11-24gnu: pitivi: Fix build....* gnu/packages/video.scm (pitivi)[inputs]: Adjust arguments to gst-plugins-bad variant. [arguments]: Use meson-0.59. Leo Famulari 2021-11-24gnu: recordmydesktop: Update to 0.4.0....* gnu/packages/video.scm (recordmydesktop): Update to 0.4.0. [source]: Update URI. [home-page]: Update home-page accordingly. Signed-off-by: Leo Famulari <leo@famulari.name> Aleksandr Vityazev 2021-11-23Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-11-23gnu: pipe-viewer: Update to 0.1.7....* gnu/packages/video.scm (pipe-viewer): Update to 0.1.7. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Robby Zambito 2021-11-21gnu: Add libplacebo....* gnu/packages/video.scm (libplacebo): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Milkey Mouse 2021-11-20gnu: libmp4v2: Build with '-std=c++03'....* gnu/packages/video.scm (libmp4v2)[arguments]: Add #:configure-flags. Ludovic Courtès 2021-11-17Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-11-11gnu: gtk: Replace gdk-pixbuf+svg by librsvg....With the addition of a profile hook for computing the gdk-pixbuf loaders cache file, there is no longer a need for gdk-pixbuf+svg, and librsvg can propagate gdk-pixbuf without fear, so replace the former for the latter. The replacement was automated with the following command: $ git grep -l ',gdk-pixbuf+svg)' \ | xargs sed 's/(".*" ,gdk-pixbuf+svg)/("librsvg" ,librsvg)/' -i * gnu/packages/gtk.scm (gdk-pixbuf+svg): Delete package. (gtk+-2)[propagated-inputs]: Replace gdk-pixbuf+svg with librsvg. (gtk+)[propagated-inputs]: Likewise. * gnu/packages/gnome.scm (gdk-pixbuf+svg): Add deprecated package. Maxim Cournoyer