2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2014-01-04 16:42:42 -05:00
|
|
|
# Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
2013-01-28 01:29:10 -05:00
|
|
|
# Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
|
2012-10-31 20:46:15 -04:00
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# This file is part of GNU Guix.
|
2012-10-31 20:46:15 -04:00
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
2012-10-31 20:46:15 -04:00
|
|
|
# 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.
|
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
2012-10-31 20:46:15 -04:00
|
|
|
# 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
|
2013-01-05 18:47:50 -05:00
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-10-31 20:46:15 -04:00
|
|
|
|
|
|
|
#
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
# Test the `guix package' command-line utility.
|
2012-10-31 20:46:15 -04:00
|
|
|
#
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --version
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2013-01-17 16:20:42 -05:00
|
|
|
readlink_base ()
|
|
|
|
{
|
|
|
|
basename `readlink "$1"`
|
|
|
|
}
|
|
|
|
|
2012-10-31 20:46:15 -04:00
|
|
|
profile="t-profile-$$"
|
|
|
|
rm -f "$profile"
|
|
|
|
|
2013-01-14 17:44:58 -05:00
|
|
|
trap 'rm "$profile" "$profile-"[0-9]* ; rm -rf t-home-'"$$" EXIT
|
2012-12-11 18:10:32 -05:00
|
|
|
|
2013-03-01 15:12:32 -05:00
|
|
|
# Use `-e' with a non-package expression.
|
|
|
|
if guix package --bootstrap -e +;
|
|
|
|
then false; else true; fi
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -p "$profile" -i guile-bootstrap
|
2012-10-31 20:46:15 -04:00
|
|
|
test -L "$profile" && test -L "$profile-1-link"
|
|
|
|
test -f "$profile/bin/guile"
|
|
|
|
|
2014-04-02 09:44:42 -04:00
|
|
|
# Make sure the profile is a GC root.
|
|
|
|
guix gc --list-live | grep "`readlink "$profile-1-link"`"
|
|
|
|
|
2012-12-11 18:01:17 -05:00
|
|
|
# Installing the same package a second time does nothing.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -p "$profile" -i guile-bootstrap
|
2012-12-11 18:01:17 -05:00
|
|
|
test -L "$profile" && test -L "$profile-1-link"
|
|
|
|
! test -f "$profile-2-link"
|
|
|
|
test -f "$profile/bin/guile"
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2013-04-28 17:05:57 -04:00
|
|
|
# No search path env. var. here.
|
|
|
|
guix package --search-paths -p "$profile"
|
|
|
|
test "`guix package --search-paths -p "$profile" | wc -l`" = 0
|
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Check whether we have network access.
|
|
|
|
if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
|
|
|
|
then
|
gnu: Split (gnu packages base), adding (gnu packages commencement).
* gnu/packages/base.scm (gnu-make-boot0, diffutils-boot0,
findutils-boot0, %boot0-inputs, nix-system->gnu-triplet, boot-triplet,
binutils-boot0, gcc-boot0, perl-boot0, linux-libre-headers-boot0,
texinfo-boot0, %boot1-inputs, glibc-final-with-bootstrap-bash,
cross-gcc-wrapper, static-bash-for-glibc, glibc-final,
gcc-boot0-wrapped, %boot2-inputs, binutils-final, libstdc++,
gcc-final, ld-wrapper-boot3, %boot3-inputs, bash-final, %boot4-inputs,
guile-final, gnu-make-final, ld-wrapper, coreutils-final, grep-final,
%boot5-inputs, %final-inputs, canonical-package, gcc-toolchain,
gcc-toolchain-4.8, gcc-toolchain-4.9): Move to...
* gnu/packages/commencement.scm: ... here. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/check-final-inputs-self-contained.scm: Adjust accordingly.
* gnu/packages/cross-base.scm: Likewise.
* gnu/packages/make-bootstrap.scm: Likewise.
* guix/build-system/cmake.scm (cmake-build): Likewise.
* guix/build-system/gnu.scm (standard-packages, gnu-build,
gnu-cross-build): Likewise.
* guix/build-system/perl.scm (perl-build): Likewise.
* guix/build-system/python.scm (python-build): Likewise.
* guix/build-system/trivial.scm (guile-for-build): Likewise.
* guix/download.scm (url-fetch): Likewise.
* guix/gexp.scm (default-guile): Likewise.
* guix/git-download.scm (git-fetch): Likewise.
* guix/monads.scm (run-with-store): Likewise.
* guix/packages.scm (default-guile): Likewise.
* guix/scripts/package.scm (guix-package): Likewise.
* guix/scripts/refresh.scm: Likewise.
* guix/svn-download.scm (svn-fetch): Likewise.
* tests/builders.scm (%bootstrap-inputs, %bootstrap-search-paths):
Likewise.
* tests/packages.scm ("GNU Make, bootstrap"): Likewise.
* tests/guix-package.sh: Likewise.
* gnu/services/base.scm: Use 'canonical-package' instead of xxx-final.
* gnu/services/xorg.scm: Likewise.
* gnu/system/vm.scm: Likewise.
* guix/scripts/pull.scm (guix-pull): Likewise.
2014-08-26 18:25:17 -04:00
|
|
|
boot_make="(@@ (gnu packages commencement) gnu-make-boot0)"
|
2013-09-18 10:42:51 -04:00
|
|
|
boot_make_drv="`guix build -e "$boot_make" | grep -v -e -debug`"
|
2013-03-01 15:12:32 -05:00
|
|
|
guix package --bootstrap -p "$profile" -i "$boot_make_drv"
|
2012-12-13 16:06:45 -05:00
|
|
|
test -L "$profile-2-link"
|
|
|
|
test -f "$profile/bin/make" && test -f "$profile/bin/guile"
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Check whether `--list-installed' works.
|
|
|
|
# XXX: Change the tests when `--install' properly extracts the package
|
|
|
|
# name and version string.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
installed="`guix package -p "$profile" --list-installed | cut -f1 | xargs echo | sort`"
|
2012-12-13 16:06:45 -05:00
|
|
|
case "x$installed" in
|
2013-04-18 11:22:40 -04:00
|
|
|
"guile-bootstrap make-boot0")
|
|
|
|
true;;
|
|
|
|
"make-boot0 guile-bootstrap")
|
|
|
|
true;;
|
|
|
|
"*")
|
2012-12-13 16:06:45 -05:00
|
|
|
false;;
|
|
|
|
esac
|
2012-11-19 16:39:45 -05:00
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
test "`guix package -p "$profile" -I 'g.*e' | cut -f1`" = "guile-bootstrap"
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2013-09-19 07:07:39 -04:00
|
|
|
# List generations.
|
|
|
|
test "`guix package -p "$profile" -l | cut -f1 | grep guile | head -n1`" \
|
|
|
|
= " guile-bootstrap"
|
|
|
|
|
2013-09-24 18:11:16 -04:00
|
|
|
# Exit with 1 when a generation does not exist.
|
|
|
|
if guix package -p "$profile" --list-generations=42;
|
|
|
|
then false; else true; fi
|
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Remove a package.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -p "$profile" -r "guile-bootstrap"
|
2012-12-13 16:06:45 -05:00
|
|
|
test -L "$profile-3-link"
|
|
|
|
test -f "$profile/bin/make" && ! test -f "$profile/bin/guile"
|
2013-01-17 16:20:42 -05:00
|
|
|
|
|
|
|
# Roll back.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --roll-back -p "$profile"
|
2013-01-17 16:20:42 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-2-link"
|
|
|
|
test -x "$profile/bin/guile" && test -x "$profile/bin/make"
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --roll-back -p "$profile"
|
2013-01-17 16:20:42 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-1-link"
|
|
|
|
test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
|
|
|
|
|
2013-01-27 11:18:55 -05:00
|
|
|
# Move to the empty profile.
|
|
|
|
for i in `seq 1 3`
|
|
|
|
do
|
2013-04-18 11:22:40 -04:00
|
|
|
guix package --bootstrap --roll-back -p "$profile"
|
|
|
|
! test -f "$profile/bin"
|
|
|
|
! test -f "$profile/lib"
|
|
|
|
test "`readlink_base "$profile"`" = "$profile-0-link"
|
2013-01-27 11:18:55 -05:00
|
|
|
done
|
2013-01-17 16:20:42 -05:00
|
|
|
|
2013-09-24 18:18:09 -04:00
|
|
|
# Test that '--list-generations' does not output the zeroth generation.
|
|
|
|
test -z "`guix package -p "$profile" -l 0`"
|
|
|
|
|
2013-01-27 11:58:46 -05:00
|
|
|
# Reinstall after roll-back to the empty profile.
|
2013-03-01 15:12:32 -05:00
|
|
|
guix package --bootstrap -p "$profile" -e "$boot_make"
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-1-link"
|
|
|
|
test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
|
2013-01-17 16:20:42 -05:00
|
|
|
|
2013-09-24 21:55:27 -04:00
|
|
|
# Check that the first generation is the current one.
|
|
|
|
test "`guix package -p "$profile" -l 1 | cut -f3 | head -n1`" = "(current)"
|
|
|
|
|
2013-01-27 11:58:46 -05:00
|
|
|
# Roll-back to generation 0, and install---all at once.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -p "$profile" --roll-back -i guile-bootstrap
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-1-link"
|
|
|
|
test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
|
|
|
|
|
|
|
|
# Install Make.
|
2013-03-01 15:12:32 -05:00
|
|
|
guix package --bootstrap -p "$profile" -e "$boot_make"
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-2-link"
|
2013-01-17 16:20:42 -05:00
|
|
|
test -x "$profile/bin/guile" && test -x "$profile/bin/make"
|
2013-05-10 17:04:39 -04:00
|
|
|
grep "`guix build -e "$boot_make"`" "$profile/manifest"
|
2013-01-17 16:41:47 -05:00
|
|
|
|
|
|
|
# Make a "hole" in the list of generations, and make sure we can
|
|
|
|
# roll back "over" it.
|
2013-01-27 11:58:46 -05:00
|
|
|
rm "$profile-1-link"
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -p "$profile" --roll-back
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-0-link"
|
2013-04-28 17:05:57 -04:00
|
|
|
|
|
|
|
# Make sure LIBRARY_PATH gets listed by `--search-paths'.
|
|
|
|
guix package --bootstrap -p "$profile" -i guile-bootstrap -i gcc-bootstrap
|
|
|
|
guix package --search-paths -p "$profile" | grep LIBRARY_PATH
|
2013-09-25 22:36:24 -04:00
|
|
|
|
|
|
|
# Delete the third generation and check that it was actually deleted.
|
|
|
|
guix package -p "$profile" --delete-generations=3
|
|
|
|
test -z "`guix package -p "$profile" -l 3`"
|
|
|
|
|
|
|
|
# Exit with 1 when a generation does not exist.
|
|
|
|
if guix package -p "$profile" --delete-generations=42;
|
|
|
|
then false; else true; fi
|
|
|
|
|
|
|
|
# Exit with 0 when trying to delete the zeroth generation.
|
|
|
|
guix package -p "$profile" --delete-generations=0
|
2012-12-13 16:06:45 -05:00
|
|
|
fi
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2013-12-13 15:37:57 -05:00
|
|
|
# Make sure multiple arguments to -i works.
|
|
|
|
guix package --bootstrap -i guile gcc -p "$profile" -n
|
|
|
|
|
2012-11-07 13:14:22 -05:00
|
|
|
# Make sure the `:' syntax works.
|
2014-01-25 11:23:23 -05:00
|
|
|
guix package --bootstrap -i "glibc:debug" -p "$profile" -n
|
2012-11-07 13:14:22 -05:00
|
|
|
|
2013-02-01 03:17:35 -05:00
|
|
|
# Make sure nonexistent outputs are reported.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -i "guile-bootstrap:out" -p "$profile" -n
|
|
|
|
if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile" -n;
|
2013-02-01 03:17:35 -05:00
|
|
|
then false; else true; fi
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile";
|
2013-02-01 03:17:35 -05:00
|
|
|
then false; else true; fi
|
|
|
|
|
2012-11-19 17:02:59 -05:00
|
|
|
# Check whether `--list-available' returns something sensible.
|
2013-09-26 19:07:37 -04:00
|
|
|
guix package -p "$profile" -A 'gui.*e' | grep guile
|
2012-11-19 17:02:59 -05:00
|
|
|
|
2014-07-16 20:36:09 -04:00
|
|
|
# Check whether `--show' returns something sensible.
|
2014-07-24 18:26:55 -04:00
|
|
|
guix package --show=guile | grep "^name: guile"
|
2014-07-16 20:36:09 -04:00
|
|
|
|
2014-07-25 11:56:14 -04:00
|
|
|
# Ensure `--show' doesn't fail for packages with non-package inputs.
|
2014-07-25 08:38:20 -04:00
|
|
|
guix package --show=texlive
|
|
|
|
|
2014-07-25 11:56:14 -04:00
|
|
|
# Search.
|
|
|
|
LC_MESSAGES=C
|
|
|
|
export LC_MESSAGES
|
|
|
|
test "`guix package -s "An example GNU package" | grep ^name:`" = \
|
|
|
|
"name: hello"
|
|
|
|
test -z "`guix package -s "n0t4r341p4ck4g3"`"
|
|
|
|
|
|
|
|
# Make sure `--search' can display all the packages.
|
|
|
|
guix package --search="" > /dev/null
|
|
|
|
|
2013-09-26 19:17:01 -04:00
|
|
|
# There's no generation older than 12 months, so the following command should
|
|
|
|
# have no effect.
|
|
|
|
generation="`readlink_base "$profile"`"
|
|
|
|
if guix package -p "$profile" --delete-generations=12m;
|
|
|
|
then false; else true; fi
|
|
|
|
test "`readlink_base "$profile"`" = "$generation"
|
|
|
|
|
2013-01-22 16:35:16 -05:00
|
|
|
#
|
2013-01-14 17:44:58 -05:00
|
|
|
# Try with the default profile.
|
2013-01-22 16:35:16 -05:00
|
|
|
#
|
2013-01-14 17:44:58 -05:00
|
|
|
|
|
|
|
XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
|
|
|
|
export XDG_CACHE_HOME
|
2014-07-05 08:56:08 -04:00
|
|
|
HOME="$PWD/t-home-$$"
|
2013-01-14 17:44:58 -05:00
|
|
|
export HOME
|
|
|
|
|
|
|
|
mkdir -p "$HOME"
|
|
|
|
|
2014-07-06 15:26:11 -04:00
|
|
|
# Get the canonical directory name so that 'guix package' recognizes it.
|
|
|
|
HOME="`cd $HOME; pwd -P`"
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap -i guile-bootstrap
|
2013-01-14 17:44:58 -05:00
|
|
|
test -L "$HOME/.guix-profile"
|
|
|
|
test -f "$HOME/.guix-profile/bin/guile"
|
2013-01-17 16:20:42 -05:00
|
|
|
|
2013-01-22 16:35:16 -05:00
|
|
|
if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
|
|
|
|
then
|
2013-03-01 15:12:32 -05:00
|
|
|
guix package --bootstrap -e "$boot_make"
|
2013-01-22 16:35:16 -05:00
|
|
|
test -f "$HOME/.guix-profile/bin/make"
|
|
|
|
first_environment="`cd $HOME/.guix-profile ; pwd`"
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap --roll-back
|
2013-01-22 16:35:16 -05:00
|
|
|
test -f "$HOME/.guix-profile/bin/guile"
|
|
|
|
! test -f "$HOME/.guix-profile/bin/make"
|
|
|
|
test "`cd $HOME/.guix-profile ; pwd`" = "$first_environment"
|
|
|
|
fi
|
|
|
|
|
2013-01-27 11:18:55 -05:00
|
|
|
# Move to the empty profile.
|
|
|
|
default_profile="`readlink "$HOME/.guix-profile"`"
|
|
|
|
for i in `seq 1 3`
|
|
|
|
do
|
2014-04-02 09:44:42 -04:00
|
|
|
# Make sure the current generation is a GC root.
|
|
|
|
profile_link="`readlink "$default_profile"`"
|
|
|
|
guix gc --list-live | grep "`readlink "$profile_link"`"
|
|
|
|
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
guix package --bootstrap --roll-back
|
2013-01-27 11:18:55 -05:00
|
|
|
! test -f "$HOME/.guix-profile/bin"
|
|
|
|
! test -f "$HOME/.guix-profile/lib"
|
|
|
|
test "`readlink "$default_profile"`" = "$default_profile-0-link"
|
|
|
|
done
|
2013-01-24 16:00:54 -05:00
|
|
|
|
2014-07-05 08:56:08 -04:00
|
|
|
# Check whether '-p ~/.guix-profile' makes any difference.
|
|
|
|
# See <http://bugs.gnu.org/17939>.
|
|
|
|
if test -e "$HOME/.guix-profile-0-link"; then false; fi
|
|
|
|
if test -e "$HOME/.guix-profile-1-link"; then false; fi
|
|
|
|
guix package --bootstrap -p "$HOME/.guix-profile" -i guile-bootstrap
|
|
|
|
if test -e "$HOME/.guix-profile-1-link"; then false; fi
|
|
|
|
guix package --bootstrap --roll-back -p "$HOME/.guix-profile"
|
|
|
|
if test -e "$HOME/.guix-profile-0-link"; then false; fi
|
|
|
|
|
2013-01-24 16:00:54 -05:00
|
|
|
# Extraneous argument.
|
Replace individual scripts with master 'guix' script.
* scripts/guix.in: New script.
* Makefile.am (bin_SCRIPTS): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
(MODULES): Add 'guix/scripts/build.scm', 'guix/scripts/download.scm',
'guix/scripts/import.scm', 'guix/scripts/package.scm', and
'guix/scripts/gc.scm'.
* configure.ac (AC_CONFIG_FILES): Add 'scripts/guix'. Remove 'guix-build',
'guix-download', 'guix-import', 'guix-package', and 'guix-gc'.
* guix-build.in, guix-download.in, guix-gc.in, guix-import.in,
guix-package.in: Remove shell script boilerplate. Move to guix-COMMAND.in
to guix/scripts/COMMAND.scm. Rename module from (guix-COMMAND) to
(guix scripts COMMAND). Change "guix-COMMAND" to "guix COMMAND" in
usage help string.
* pre-inst-env.in: Add "@abs_top_builddir@/scripts" to the front of $PATH.
Export $GUIX_UNINSTALLED.
* tests/guix-build.sh, tests/guix-daemon.sh, tests/guix-download.sh,
tests/guix-gc.sh, tests/guix-package.sh: Use "guix COMMAND" instead of
"guix-COMMAND".
* doc/guix.texi: Replace all occurrences of "guix-COMMAND" with
"guix COMMAND".
* po/POTFILES.in: Update.
2013-02-14 04:15:25 -05:00
|
|
|
if guix package install foo-bar;
|
2013-02-01 03:17:35 -05:00
|
|
|
then false; else true; fi
|
2014-01-04 16:42:42 -05:00
|
|
|
|
|
|
|
# Make sure the "broken pipe" doesn't yield an error.
|
|
|
|
# Note: 'pipefail' is a Bash-specific option.
|
|
|
|
set -o pipefail || true
|
|
|
|
guix package -A g | head -1 2> "$HOME/err1"
|
|
|
|
guix package -I | head -1 2> "$HOME/err2"
|
|
|
|
test "`cat "$HOME/err1" "$HOME/err2"`" = ""
|