1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
| | # GNU Guix --- Functional package management for GNU
# Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
#
# 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 <http://www.gnu.org/licenses/>.
#
# Test the `guix pack' command-line utility.
#
guix pack --version
# Use --no-substitutes because we need to verify we can do this ourselves.
GUIX_BUILD_OPTIONS="--no-substitutes"
export GUIX_BUILD_OPTIONS
# Build a tarball.
guix pack --bootstrap guile-bootstrap
# Build a tarball with a symlink.
the_pack="$(guix pack --bootstrap -S /opt/gnu/bin=bin guile-bootstrap)"
is_available () {
# Use the "type" shell builtin to see if the program is on PATH.
type "$1"
}
if is_available chroot && is_available unshare; then
# Verify we can extract and use it.
test_directory="$(mktemp -d)"
trap 'rm -rf "$test_directory"' EXIT
cd "$test_directory"
tar -xf "$the_pack"
unshare -mrf chroot . /opt/gnu/bin/guile --version
cd -
else
echo "chroot/unshare not available, skipping verification of pack contents"
fi
# Build a Docker image.
guix pack --bootstrap -f docker guile-bootstrap
# Build a Docker image with a symlink.
guix pack --bootstrap -f docker -S /opt/gnu=/ guile-bootstrap
# Build a tarball pack of cross-compiled software.
guix pack --bootstrap --target=arm-unknown-linux-gnueabihf guile-bootstrap
|