# GNU Guix --- Functional package management for GNU # Copyright © 2012, 2015, 2016 Ludovic Courtès # # 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 . # # Test the `guix download' command-line utility. # guix download --version # Make sure it fails here. ! guix download http://does.not/exist ! guix download unknown://some/where; ! guix download /does-not-exist # This one should succeed. guix download "file://$abs_top_srcdir/README" # And this one, without the URI scheme. guix download "$abs_top_srcdir/README" # This one too, even if it cannot talk to the daemon. output="t-download-$$" trap 'rm -f "$output"' EXIT GUIX_DAEMON_SOCKET="/nowhere" guix download -o "$output" \ "file://$abs_top_srcdir/README" cmp "$output" "$abs_top_srcdir/README" # This one should fail. ! guix download "file:///does-not-exist" "file://$abs_top_srcdir/README" f
path: root/gnu
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2024-09-29 02:00:00 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2024-09-29 02:00:00 +0200
commitde5fe1fb24d00318b3dc4ce096787a053961e0d6 (patch)
tree52ecdc204afe9809fcfc77253f1a653d7709d331 /gnu
parent7e63a35ff265f5cb6efa8bbe0bbf62bb9c102cf0 (diff)
downloadguix-de5fe1fb24d00318b3dc4ce096787a053961e0d6.tar.gz
guix-de5fe1fb24d00318b3dc4ce096787a053961e0d6.zip
gnu: emacs-ivy: Fix upstream hash mismatch.
The only change is the build-time name of ivy.info: - This is docs5eOqw.info, produced by makeinfo version 6.8 + This is doczSQuZD.info, produced by makeinfo version 6.8 * gnu/packages/emacs-xyz.scm (emacs-ivy)[source]: Update sha256. Change-Id: I2234365159e0020f5c8b4fd90f56bb7a4f7e9590
Diffstat (limited to 'gnu')