2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2013-01-07 16:54:54 -05:00
|
|
|
# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.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
|
|
|
|
|
|
|
#
|
|
|
|
# Test the `guix-package' command-line utility.
|
|
|
|
#
|
|
|
|
|
|
|
|
guix-package --version
|
|
|
|
|
|
|
|
profile="t-profile-$$"
|
|
|
|
rm -f "$profile"
|
|
|
|
|
2012-12-11 18:10:32 -05:00
|
|
|
trap 'rm "$profile" "$profile-"[0-9]*' EXIT
|
|
|
|
|
2013-01-07 16:54:54 -05:00
|
|
|
guix-package --bootstrap -p "$profile" \
|
2012-10-31 20:46:15 -04:00
|
|
|
-i `guix-build -e '(@@ (distro packages base) %bootstrap-guile)'`
|
|
|
|
test -L "$profile" && test -L "$profile-1-link"
|
|
|
|
test -f "$profile/bin/guile"
|
|
|
|
|
2012-12-11 18:01:17 -05:00
|
|
|
# Installing the same package a second time does nothing.
|
2013-01-07 16:54:54 -05:00
|
|
|
guix-package --bootstrap -p "$profile" \
|
2012-12-11 18:01:17 -05:00
|
|
|
-i `guix-build -e '(@@ (distro packages base) %bootstrap-guile)'`
|
|
|
|
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
|
|
|
|
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
|
2013-01-07 16:54:54 -05:00
|
|
|
guix-package --bootstrap -p "$profile" \
|
2012-12-13 16:06:45 -05:00
|
|
|
-i `guix-build -e '(@@ (distro packages base) gnu-make-boot0)'`
|
|
|
|
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.
|
|
|
|
installed="`guix-package -p "$profile" --list-installed | cut -f1 | xargs echo | sort`"
|
|
|
|
case "x$installed" in
|
|
|
|
"guile-bootstrap make-boot0")
|
|
|
|
true;;
|
|
|
|
"make-boot0 guile-bootstrap")
|
|
|
|
true;;
|
|
|
|
"*")
|
|
|
|
false;;
|
|
|
|
esac
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
test "`guix-package -p "$profile" -I 'g.*e' | cut -f1`" = "guile-bootstrap"
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Remove a package.
|
2013-01-07 16:54:54 -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"
|
|
|
|
fi
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2012-11-07 13:14:22 -05:00
|
|
|
# Make sure the `:' syntax works.
|
2013-01-14 17:33:14 -05:00
|
|
|
guix-package --bootstrap -i "binutils:lib" -p "$profile" -n
|
2012-11-07 13:14:22 -05:00
|
|
|
|
2012-11-19 17:02:59 -05:00
|
|
|
# Check whether `--list-available' returns something sensible.
|
|
|
|
guix-package -A 'gui.*e' | grep guile
|
|
|
|
|