From 194e22699f7166a016cd39ba26dd719aeecfc868 Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Sun, 23 Jan 2022 10:49:07 +0000 Subject: [PATCH] meson: drop unused argument for i18n.merge_file() Ignored in Meson < 0.60.0, deprecated since 0.60.1 and fatal since 0.61.0. data/meson.build:19:0: ERROR: Function does not take positional arguments. data/meson.build:39:0: ERROR: Function does not take positional arguments. --- data/meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/data/meson.build b/data/meson.build index 33f73ca..8974a63 100644 --- a/data/meson.build +++ b/data/meson.build @@ -17,7 +17,6 @@ install_data( # Desktop file desktop_file = i18n.merge_file( - 'desktop-file', input: 'org.gnome.TwentyFortyEight.desktop.in', output: 'org.gnome.TwentyFortyEight.desktop', install: true, @@ -37,7 +36,6 @@ endif # AppData file appdata_file = i18n.merge_file( - 'appdata-file', input: 'org.gnome.TwentyFortyEight.appdata.xml.in', output: 'org.gnome.TwentyFortyEight.appdata.xml', install: true, -- GitLab 303183ef865a243f7746a7c19c1a98ad0fa242'>refslogtreecommitdiff
path: root/tests/guix-lint.sh
AgeCommit message (Expand)Author
2021-02-22packages: 'package-field-location' handles 'search-path' returning #f....Fixes <https://bugs.gnu.org/46390>. Reported by zimoun <zimon.toutoune@gmail.com>. This is similar to the fix in d10474c38d58bdc676e64336769dc2e00cdfa8ed. * guix/packages.scm (package-field-location): Handle FILE not in %LOAD-PATH. * tests/guix-lint.sh: Add test. Ludovic Courtès
2020-09-28tests: Simplify shell exit status negation;...* tests/guix-archive.sh, tests/guix-build-branch.sh, tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh, tests/guix-environment.sh, tests/guix-gc.sh, tests/guix-git-authenticate.sh, tests/guix-graph.sh, tests/guix-hash.sh, tests/guix-lint.sh, tests/guix-pack-relocatable.sh, tests/guix-pack.sh, tests/guix-package-aliases.sh, tests/guix-package-net.sh, tests/guix-package.sh: Use the shell '!' keyword to negate command exit status in place of 'if ...; then false; else true; fi' Eric Bavier
2020-08-23lint: formatting: Gracefully handle relative file names....Fixes <https://bugs.gnu.org/42543>. Reported by Jack Hill <jackhill@jackhill.us>. * guix/lint.scm (check-formatting): Always return a list (previously we would return #f when 'search-path' returns #f). Check whether LOCATION's file is a relative file name. Return a warning if not. * tests/guix-lint.sh: Add test. Ludovic Courtès