# 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 && false guix download unknown://some/where && false guix download /does-not-exist && false # 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" && false exit 0 iff/gnu/packages/virtualization.scm?id=9e9cb010207e93c1d662f74e6491ffcc1dcead87'>diff
AgeCommit message (Expand)Author
2023-07-09gnu: osinfo-db: Update to 20230518....* gnu/packages/virtualization.scm (osinfo-db): Update to 20230518. Efraim Flashner
2023-07-09gnu: osinfo-db-tools: Update to 1.10.0....* gnu/packages/virtualization.scm (osinfo-db-tools): Update to 1.10.0. Efraim Flashner
2023-07-09gnu: libx86emu: Format with 'guix style'....* gnu/packages/virtualization.scm (libx86emu): Adjust package formatting with 'guix style'. Efraim Flashner
2023-07-09gnu: libx86emu: Skip tests on non-x86 systems....* gnu/packages/virtualization.scm (libx86emu)[arguments]: Skip tests when not building on an x86 system. Efraim Flashner
2023-05-19gnu: criu: Reset timestamps in .egg file....Ensure all files being built are dated no earlier than 1980 by copying in a modified (@@ (guix build python-build-system) ensure-no-mtimes-pre-1980) which is symlink-aware. This copy should be removed when the original procedure is modified to avoid calling UTIME on symlinks. * gnu/packages/virtualization.scm (criu)[arguments]: Add 'ensure-no-mtimes-pre-1980' phase. [inputs]: Remove python. [native-inputs]: Add python-toolchain. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Brian Cully