2013-01-06 00:47:50 +01:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2015-01-11 23:43:30 +01:00
|
|
|
# Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
|
2013-01-17 22:09:15 +01:00
|
|
|
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
2012-06-13 18:01:25 +02:00
|
|
|
#
|
2013-01-06 00:47:50 +01:00
|
|
|
# This file is part of GNU Guix.
|
2012-06-13 18:01:25 +02:00
|
|
|
#
|
2013-01-06 00:47:50 +01:00
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-13 18:01:25 +02: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-06 00:47:50 +01:00
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
2012-06-13 18:01:25 +02: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-06 00:47:50 +01:00
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2012-10-24 23:10:09 +02:00
|
|
|
bin_SCRIPTS = \
|
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 10:15:25 +01:00
|
|
|
scripts/guix
|
2012-07-01 00:56:24 +02:00
|
|
|
|
2013-02-12 01:23:20 +01:00
|
|
|
nodist_noinst_SCRIPTS = \
|
|
|
|
pre-inst-env \
|
|
|
|
test-env
|
|
|
|
|
build: Split Makefile.am into two parts.
* Makefile.am (MODULES): Move gnu/* to gnu-system.am.
(patchdir, dist_patch_DATA, bootstrapdir,
bootstrap_x86_64_linuxdir, bootstrap_i686_linuxdir,
dist_bootstrap_x86_64_linux_DATA, dist_bootstrap_i686_linux_DATA,
nodist_bootstrap_x86_64_linux_DATA, nodist_bootstrap_i686_linux_DATA,
install-data-hook, DISTCLEANFILES, DOWNLOAD_FILE,
gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): Move to...
* gnu-system.am: ... here. New file.
2013-06-19 23:19:03 +02:00
|
|
|
include gnu-system.am
|
|
|
|
|
2012-06-13 18:01:25 +02:00
|
|
|
MODULES = \
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 22:33:28 +01:00
|
|
|
guix/base32.scm \
|
2014-03-29 00:06:41 +01:00
|
|
|
guix/base64.scm \
|
2013-05-12 15:46:16 +02:00
|
|
|
guix/records.scm \
|
2015-01-26 21:38:49 +01:00
|
|
|
guix/gcrypt.scm \
|
2013-07-01 23:28:21 +02:00
|
|
|
guix/hash.scm \
|
2013-12-20 00:36:26 +01:00
|
|
|
guix/pk-crypto.scm \
|
2013-12-29 15:53:49 +01:00
|
|
|
guix/pki.scm \
|
2012-07-01 15:10:50 +02:00
|
|
|
guix/utils.scm \
|
2015-01-11 23:43:30 +01:00
|
|
|
guix/sets.scm \
|
2013-12-05 22:49:51 +01:00
|
|
|
guix/download.scm \
|
2014-02-21 23:41:11 +01:00
|
|
|
guix/git-download.scm \
|
2013-10-03 22:45:25 +02:00
|
|
|
guix/monads.scm \
|
2014-08-15 16:22:11 +02:00
|
|
|
guix/monad-repl.scm \
|
2014-04-28 23:00:57 +02:00
|
|
|
guix/gexp.scm \
|
Add (guix profiles).
* guix/scripts/package.scm (show-what-to-remove/install): New procedure,
moved from...
(guix-package): ... here.
(<manifest>, make-manifest, <manifest-entry>,
profile-manifest, manifest->sexp, sexp->manifest, read-manifest,
write-manifest, remove-manifest-entry, manifest-remove,
manifest-installed?, manifest=?, profile-regexp, generation-numbers,
previous-generation-number, profile-derivation, generation-number,
generation-file-name, generation-time, lower-input): Move to...
* guix/profiles.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
2013-11-01 16:31:45 +01:00
|
|
|
guix/profiles.scm \
|
Add (guix nar) and (guix serialization).
* guix/store.scm (write-int, read-int, write-long-long, read-long-long,
write-padding, write-string, read-string, read-latin1-string,
write-string-list, read-string-list, write-store-path,
read-store-path, write-store-path-list, read-store-path-list): Move to
serialization.scm.
(write-contents, write-file): Move to nar.scm.
* guix/nar.scm, guix/serialization.scm: New files.
* Makefile.am (MODULES): Add them.
2013-04-04 22:29:08 +02:00
|
|
|
guix/serialization.scm \
|
|
|
|
guix/nar.scm \
|
2012-06-13 18:01:25 +02:00
|
|
|
guix/derivations.scm \
|
2012-12-05 00:02:22 +01:00
|
|
|
guix/gnu-maintenance.scm \
|
2012-12-08 02:48:17 +01:00
|
|
|
guix/licenses.scm \
|
2012-06-27 23:58:07 +02:00
|
|
|
guix/build-system.scm \
|
2013-03-26 22:14:24 +01:00
|
|
|
guix/build-system/cmake.scm \
|
2014-10-06 15:49:29 +02:00
|
|
|
guix/build-system/glib-or-gtk.scm \
|
2012-06-27 23:58:07 +02:00
|
|
|
guix/build-system/gnu.scm \
|
2013-03-04 00:41:46 +01:00
|
|
|
guix/build-system/perl.scm \
|
2013-05-09 00:44:28 +02:00
|
|
|
guix/build-system/python.scm \
|
2015-02-05 22:41:24 +01:00
|
|
|
guix/build-system/waf.scm \
|
2014-09-28 17:14:53 +02:00
|
|
|
guix/build-system/ruby.scm \
|
2012-09-10 22:47:10 +02:00
|
|
|
guix/build-system/trivial.scm \
|
2012-09-12 23:47:49 +02:00
|
|
|
guix/ftp-client.scm \
|
2013-07-14 16:35:37 +02:00
|
|
|
guix/http-client.scm \
|
2013-04-24 23:48:36 +02:00
|
|
|
guix/gnupg.scm \
|
2014-11-27 23:51:48 +01:00
|
|
|
guix/elf.scm \
|
2012-06-13 18:01:25 +02:00
|
|
|
guix/store.scm \
|
2015-01-18 04:11:45 +01:00
|
|
|
guix/cvs-download.scm \
|
2014-03-26 17:59:01 +01:00
|
|
|
guix/svn-download.scm \
|
2012-11-01 00:50:01 +01:00
|
|
|
guix/ui.scm \
|
2012-11-12 23:10:26 +01:00
|
|
|
guix/build/download.scm \
|
2013-03-26 22:14:24 +01:00
|
|
|
guix/build/cmake-build-system.scm \
|
2014-02-21 23:41:11 +01:00
|
|
|
guix/build/git.scm \
|
2014-10-06 15:49:29 +02:00
|
|
|
guix/build/glib-or-gtk-build-system.scm \
|
2012-06-13 18:01:25 +02:00
|
|
|
guix/build/gnu-build-system.scm \
|
2013-08-24 17:17:06 +02:00
|
|
|
guix/build/gnu-dist.scm \
|
2013-03-04 00:41:46 +01:00
|
|
|
guix/build/perl-build-system.scm \
|
2013-05-09 00:44:28 +02:00
|
|
|
guix/build/python-build-system.scm \
|
2014-09-28 17:14:53 +02:00
|
|
|
guix/build/ruby-build-system.scm \
|
2015-02-05 22:41:24 +01:00
|
|
|
guix/build/waf-build-system.scm \
|
2014-09-04 23:05:12 +02:00
|
|
|
guix/build/store-copy.scm \
|
2012-06-15 10:03:08 +02:00
|
|
|
guix/build/utils.scm \
|
2012-10-29 22:39:46 +01:00
|
|
|
guix/build/union.scm \
|
2013-12-16 23:07:17 +01:00
|
|
|
guix/build/pull.scm \
|
2013-05-08 23:24:05 +02:00
|
|
|
guix/build/rpath.scm \
|
2015-01-18 04:11:45 +01:00
|
|
|
guix/build/cvs.scm \
|
2014-03-26 17:59:01 +01:00
|
|
|
guix/build/svn.scm \
|
2014-05-10 21:49:11 +02:00
|
|
|
guix/build/syscalls.scm \
|
2014-08-03 01:24:50 +02:00
|
|
|
guix/build/emacs-utils.scm \
|
2014-10-07 23:23:09 +02:00
|
|
|
guix/build/graft.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
guix/packages.scm \
|
2014-09-27 16:16:23 +02:00
|
|
|
guix/import/utils.scm \
|
2014-11-11 15:30:58 +01:00
|
|
|
guix/import/gnu.scm \
|
2014-09-27 16:16:23 +02:00
|
|
|
guix/import/snix.scm \
|
2013-12-05 22:49:51 +01:00
|
|
|
guix/scripts/download.scm \
|
|
|
|
guix/scripts/build.scm \
|
2013-12-22 01:08:21 +01:00
|
|
|
guix/scripts/archive.scm \
|
2013-12-05 22:49:51 +01:00
|
|
|
guix/scripts/import.scm \
|
|
|
|
guix/scripts/package.scm \
|
|
|
|
guix/scripts/gc.scm \
|
|
|
|
guix/scripts/hash.scm \
|
|
|
|
guix/scripts/pull.scm \
|
|
|
|
guix/scripts/substitute-binary.scm \
|
2013-12-20 17:17:42 +01:00
|
|
|
guix/scripts/authenticate.scm \
|
2013-12-05 22:49:51 +01:00
|
|
|
guix/scripts/refresh.scm \
|
2014-02-18 23:45:58 +01:00
|
|
|
guix/scripts/system.scm \
|
2014-09-01 02:13:21 +02:00
|
|
|
guix/scripts/lint.scm \
|
2014-11-11 15:30:58 +01:00
|
|
|
guix/scripts/import/gnu.scm \
|
2014-09-27 16:16:23 +02:00
|
|
|
guix/scripts/import/nix.scm \
|
2014-09-21 19:40:05 +02:00
|
|
|
guix/scripts/environment.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
guix.scm \
|
build: Split Makefile.am into two parts.
* Makefile.am (MODULES): Move gnu/* to gnu-system.am.
(patchdir, dist_patch_DATA, bootstrapdir,
bootstrap_x86_64_linuxdir, bootstrap_i686_linuxdir,
dist_bootstrap_x86_64_linux_DATA, dist_bootstrap_i686_linux_DATA,
nodist_bootstrap_x86_64_linux_DATA, nodist_bootstrap_i686_linux_DATA,
install-data-hook, DISTCLEANFILES, DOWNLOAD_FILE,
gnu/packages/bootstrap/x86_64-linux/guile-2.0.7.tar.xz,
gnu/packages/bootstrap/i686-linux/guile-2.0.7.tar.xz): Move to...
* gnu-system.am: ... here. New file.
2013-06-19 23:19:03 +02:00
|
|
|
$(GNU_SYSTEM_MODULES)
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
if BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
|
|
MODULES += \
|
|
|
|
guix/scripts/offload.scm
|
|
|
|
|
|
|
|
endif BUILD_DAEMON_OFFLOAD
|
|
|
|
|
2014-08-23 19:18:01 +02:00
|
|
|
# Internal module with test suite support.
|
2014-11-17 17:52:40 +01:00
|
|
|
dist_noinst_DATA = guix/tests.scm
|
2014-08-23 19:18:01 +02:00
|
|
|
|
2013-02-17 22:18:16 +01:00
|
|
|
# Because of the autoload hack in (guix build download), we must build it
|
|
|
|
# first to avoid errors on systems where (gnutls) is unavailable.
|
|
|
|
guix/scripts/download.go: guix/build/download.go
|
2013-12-05 22:49:51 +01:00
|
|
|
guix/download.go: guix/build/download.go
|
distro: Split (distro packages base) into several files.
* distro/packages/base.scm (libsigsegv, gawk, perl, m4, gmp, mpfr, mpc,
ncurses, readline, bash, libtool, libunistring, libffi, pkg-config,
libgc): Move to modules of their own.
(guile-1.8, guile-2.0): Move to...
* distro/packages/guile.scm: ... here.
* distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/gawk.scm, distro/packages/libffi.scm,
distro/packages/libsigsegv.scm, distro/packages/libtool.scm,
distro/packages/libunistring.scm, distro/packages/m4.scm,
distro/packages/multiprecision.scm, distro/packages/ncurses.scm,
distro/packages/perl.scm, distro/packages/pkg-config.scm,
distro/packages/readline.scm: New files.
2012-11-04 22:37:22 +01:00
|
|
|
|
2014-07-10 00:31:31 +02:00
|
|
|
# Linux-Libre configurations.
|
|
|
|
KCONFIGS = \
|
|
|
|
gnu/packages/linux-libre-i686.conf \
|
|
|
|
gnu/packages/linux-libre-x86_64.conf
|
2013-07-17 11:05:19 +02:00
|
|
|
|
2014-08-11 17:15:27 +02:00
|
|
|
# Templates, examples.
|
|
|
|
EXAMPLES = \
|
|
|
|
gnu/system/os-config.tmpl
|
|
|
|
|
2014-08-23 19:18:01 +02:00
|
|
|
GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go guix/tests.go
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2014-12-23 12:31:50 +01:00
|
|
|
nobase_dist_guilemodule_DATA = \
|
|
|
|
$(MODULES) $(KCONFIGS) $(EXAMPLES) \
|
|
|
|
$(MISC_DISTRO_FILES)
|
2013-07-17 11:05:19 +02:00
|
|
|
nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm
|
2012-08-22 17:24:38 +02:00
|
|
|
|
2013-07-17 11:05:19 +02:00
|
|
|
# Do we need to provide our own non-broken (srfi srfi-37) module?
|
|
|
|
if INSTALL_SRFI_37
|
|
|
|
|
|
|
|
nobase_nodist_guilemodule_DATA += srfi/srfi-37.scm
|
|
|
|
GOBJECTS += srfi/srfi-37.go
|
|
|
|
|
|
|
|
srfi/srfi-37.scm: srfi/srfi-37.scm.in
|
|
|
|
$(MKDIR_P) srfi
|
|
|
|
cp "$<" "$@"
|
|
|
|
|
|
|
|
endif INSTALL_SRFI_37
|
2012-10-17 21:44:25 +02:00
|
|
|
|
2013-10-15 23:25:08 +02:00
|
|
|
# Handy way to remove the .go files without removing all the rest.
|
|
|
|
clean-go:
|
|
|
|
-$(RM) -f $(GOBJECTS)
|
|
|
|
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2013-04-29 21:52:21 +02:00
|
|
|
SCM_TESTS = \
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 22:33:28 +01:00
|
|
|
tests/base32.scm \
|
2014-03-29 00:06:41 +01:00
|
|
|
tests/base64.scm \
|
2013-07-02 22:38:03 +02:00
|
|
|
tests/hash.scm \
|
2013-12-20 00:36:26 +01:00
|
|
|
tests/pk-crypto.scm \
|
2013-12-29 15:53:49 +01:00
|
|
|
tests/pki.scm \
|
2015-01-11 23:43:30 +01:00
|
|
|
tests/sets.scm \
|
2014-03-29 00:06:41 +01:00
|
|
|
tests/substitute-binary.scm \
|
2012-06-13 18:01:25 +02:00
|
|
|
tests/builders.scm \
|
|
|
|
tests/derivations.scm \
|
2013-02-01 13:16:27 +01:00
|
|
|
tests/ui.scm \
|
2013-05-12 15:46:16 +02:00
|
|
|
tests/records.scm \
|
2012-06-28 01:24:34 +02:00
|
|
|
tests/utils.scm \
|
2012-07-01 17:32:03 +02:00
|
|
|
tests/build-utils.scm \
|
2012-10-29 22:39:46 +01:00
|
|
|
tests/packages.scm \
|
2012-11-04 19:38:31 +01:00
|
|
|
tests/snix.scm \
|
2012-12-09 23:52:59 +01:00
|
|
|
tests/store.scm \
|
2013-10-03 22:45:25 +02:00
|
|
|
tests/monads.scm \
|
2014-04-28 23:00:57 +02:00
|
|
|
tests/gexp.scm \
|
2013-04-08 22:54:08 +02:00
|
|
|
tests/nar.scm \
|
2013-11-01 23:11:17 +01:00
|
|
|
tests/union.scm \
|
2014-05-10 21:49:11 +02:00
|
|
|
tests/profiles.scm \
|
2014-09-01 02:13:21 +02:00
|
|
|
tests/syscalls.scm \
|
|
|
|
tests/lint.scm
|
2013-04-29 21:52:21 +02:00
|
|
|
|
2014-09-27 16:16:23 +02:00
|
|
|
if HAVE_GUILE_JSON
|
|
|
|
|
2014-09-30 07:41:59 +02:00
|
|
|
MODULES += \
|
2015-01-08 21:38:54 +01:00
|
|
|
guix/import/json.scm \
|
2014-09-30 07:41:59 +02:00
|
|
|
guix/import/pypi.scm \
|
2015-01-08 21:51:13 +01:00
|
|
|
guix/scripts/import/pypi.scm \
|
|
|
|
guix/import/cpan.scm \
|
|
|
|
guix/scripts/import/cpan.scm
|
2014-09-30 07:41:59 +02:00
|
|
|
|
2015-01-08 21:51:13 +01:00
|
|
|
SCM_TESTS += \
|
|
|
|
tests/pypi.scm \
|
|
|
|
tests/cpan.scm
|
2014-09-27 16:16:23 +02:00
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-04-29 21:52:21 +02:00
|
|
|
SH_TESTS = \
|
2012-11-01 01:46:15 +01:00
|
|
|
tests/guix-build.sh \
|
2012-11-08 00:13:25 +01:00
|
|
|
tests/guix-download.sh \
|
2013-01-06 00:28:06 +01:00
|
|
|
tests/guix-gc.sh \
|
2013-05-11 15:09:56 +02:00
|
|
|
tests/guix-hash.sh \
|
2013-12-21 21:47:17 +01:00
|
|
|
tests/guix-package.sh \
|
2014-06-26 22:23:36 +02:00
|
|
|
tests/guix-system.sh \
|
2013-12-22 01:08:21 +01:00
|
|
|
tests/guix-archive.sh \
|
2014-10-12 01:58:29 +02:00
|
|
|
tests/guix-authenticate.sh \
|
|
|
|
tests/guix-lint.sh
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2013-09-22 23:23:38 +02:00
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
|
|
SH_TESTS += tests/guix-register.sh
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
|
|
|
|
2013-04-29 21:52:21 +02:00
|
|
|
TESTS = $(SCM_TESTS) $(SH_TESTS)
|
|
|
|
|
2012-10-31 23:27:51 +01:00
|
|
|
TEST_EXTENSIONS = .scm .sh
|
|
|
|
|
2012-11-13 22:57:50 +01:00
|
|
|
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
|
|
|
|
|
2012-12-06 00:03:26 +01:00
|
|
|
SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE)
|
2012-10-31 23:27:51 +01:00
|
|
|
AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
|
|
|
|
|
2012-12-06 00:03:26 +01:00
|
|
|
SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
|
2012-10-31 23:27:51 +01:00
|
|
|
AM_SH_LOG_FLAGS = -x -e
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2013-05-11 22:37:33 +02:00
|
|
|
# Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
|
|
|
|
# could end up removing files from the store while they are being used by
|
|
|
|
# other instances of the daemon.
|
|
|
|
tests/guix-gc.log: \
|
|
|
|
$(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
|
|
|
|
$(SCM_TESTS:%.scm=%.log)
|
|
|
|
|
2014-03-30 23:34:20 +02:00
|
|
|
# Public key used to sign substitutes from hydra.gnu.org.
|
2014-04-07 18:04:39 +02:00
|
|
|
dist_pkgdata_DATA = hydra.gnu.org.pub
|
2013-05-11 22:37:33 +02:00
|
|
|
|
2014-06-18 15:03:13 +02:00
|
|
|
EXTRA_DIST = \
|
|
|
|
HACKING \
|
|
|
|
ROADMAP \
|
|
|
|
TODO \
|
|
|
|
.dir-locals.el \
|
2014-11-09 22:32:21 +01:00
|
|
|
build-aux/build-self.scm \
|
2014-06-18 15:03:13 +02:00
|
|
|
build-aux/hydra/gnu-system.scm \
|
|
|
|
build-aux/hydra/demo-os.scm \
|
|
|
|
build-aux/hydra/guix.scm \
|
|
|
|
build-aux/check-available-binaries.scm \
|
|
|
|
build-aux/check-final-inputs-self-contained.scm \
|
|
|
|
build-aux/download.scm \
|
|
|
|
build-aux/list-packages.scm \
|
|
|
|
srfi/srfi-37.scm.in \
|
|
|
|
srfi/srfi-64.scm \
|
|
|
|
srfi/srfi-64.upstream.scm \
|
|
|
|
tests/test.drv \
|
|
|
|
tests/signing-key.pub \
|
|
|
|
tests/signing-key.sec \
|
|
|
|
build-aux/config.rpath \
|
|
|
|
bootstrap \
|
|
|
|
release.nix \
|
2012-08-14 18:28:04 +02:00
|
|
|
$(TESTS)
|
2012-07-06 00:55:07 +02:00
|
|
|
|
2014-01-23 23:48:34 +01:00
|
|
|
if !BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
|
|
EXTRA_DIST += \
|
|
|
|
guix/scripts/offload.scm
|
|
|
|
|
|
|
|
endif !BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
|
|
|
2013-04-29 21:52:21 +02:00
|
|
|
CLEANFILES = \
|
|
|
|
$(GOBJECTS) \
|
2013-05-11 22:42:38 +02:00
|
|
|
$(SCM_TESTS:tests/%.scm=%.log)
|
2012-06-13 18:01:25 +02:00
|
|
|
|
2013-04-29 22:00:24 +02:00
|
|
|
AM_V_GUILEC = $(AM_V_GUILEC_$(V))
|
|
|
|
AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
AM_V_GUILEC_0 = @echo " GUILEC" $@;
|
|
|
|
|
2015-01-20 14:55:06 +01:00
|
|
|
# Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling. Otherwise, if
|
|
|
|
# $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
|
|
|
|
# there that are newer than the local .scm files (for instance because the
|
|
|
|
# user ran 'make install' recently). When that happens, we end up loading
|
|
|
|
# those previously-installed .go files, which may be stale, thereby breaking
|
|
|
|
# the whole thing.
|
|
|
|
#
|
2013-02-09 00:05:24 +01:00
|
|
|
# XXX: Use the C locale for when Guile lacks
|
|
|
|
# <http://git.sv.gnu.org/cgit/guile.git/commit/?h=stable-2.0&id=e2c6bf3866d1186c60bacfbd4fe5037087ee5e3f>.
|
2012-06-13 18:01:25 +02:00
|
|
|
.scm.go:
|
2013-04-29 22:00:24 +02:00
|
|
|
$(AM_V_GUILEC)$(MKDIR_P) `dirname "$@"` ; \
|
2015-01-20 14:55:06 +01:00
|
|
|
unset GUILE_LOAD_COMPILED_PATH ; \
|
2013-02-09 00:05:24 +01:00
|
|
|
LC_ALL=C \
|
2012-11-13 00:33:43 +01:00
|
|
|
$(top_builddir)/pre-inst-env \
|
|
|
|
$(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \
|
|
|
|
-Wformat -Wunbound-variable -Warity-mismatch \
|
|
|
|
--target="$(host)" \
|
2012-06-13 18:01:25 +02:00
|
|
|
-o "$@" "$<"
|
|
|
|
|
|
|
|
SUFFIXES = .go
|
|
|
|
|
|
|
|
# Make sure source files are installed first, so that the mtime of
|
|
|
|
# installed compiled files is greater than that of installed source
|
|
|
|
# files. See
|
|
|
|
# <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
|
|
|
|
# for details.
|
|
|
|
guix_install_go_files = install-nobase_nodist_guilemoduleDATA
|
|
|
|
$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
|
2012-06-29 22:22:48 +02:00
|
|
|
|
2014-12-09 11:44:21 +01:00
|
|
|
# The above trick doesn't work for 'config.go' because both 'config.scm' and
|
|
|
|
# 'config.go' are listed in $(nobase_nodist_guilemodule_DATA). Thus, give it
|
|
|
|
# special treatment.
|
|
|
|
install-data-hook: set-bootstrap-executable-permissions
|
|
|
|
touch "$(DESTDIR)$(guilemoduledir)/guix/config.go"
|
|
|
|
|
|
|
|
|
2014-06-13 17:30:40 +02:00
|
|
|
SUBDIRS = po/guix po/packages
|
2014-07-24 23:38:39 +02:00
|
|
|
BUILT_SOURCES =
|
2013-08-29 21:20:51 +02:00
|
|
|
|
|
|
|
include doc.am
|
2012-10-13 16:05:01 +02:00
|
|
|
|
2012-12-03 23:04:47 +01:00
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
|
|
include daemon.am
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
2012-06-29 22:22:48 +02:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2012-11-03 21:11:02 +01:00
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
2012-11-03 21:43:30 +01:00
|
|
|
--with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
|
2014-05-17 15:41:56 +02:00
|
|
|
--with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
|
2012-12-06 00:04:43 +01:00
|
|
|
--with-nix-prefix="$(NIX_PREFIX)" \
|
|
|
|
--enable-daemon
|
2013-04-17 18:09:43 +02:00
|
|
|
|
2014-08-27 14:44:17 +02:00
|
|
|
dist_emacsui_DATA = emacs/guix-main.scm
|
|
|
|
nodist_emacsui_DATA = emacs/guix-helper.scm
|
|
|
|
include emacs.am
|
|
|
|
|
2013-10-09 16:13:02 +02:00
|
|
|
dist-hook: sync-descriptions gen-ChangeLog assert-no-store-file-names
|
2014-06-18 15:03:13 +02:00
|
|
|
distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
|
2013-05-12 16:14:25 +02:00
|
|
|
|
2013-10-09 16:13:02 +02:00
|
|
|
sync-descriptions:
|
2015-01-26 23:56:58 +01:00
|
|
|
-GUIX_PACKAGE_PATH= \
|
|
|
|
$(top_builddir)/pre-inst-env guix lint --checkers=gnu-description
|
2013-05-12 16:14:25 +02:00
|
|
|
|
|
|
|
gen-ChangeLog:
|
|
|
|
if test -d .git; then \
|
|
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog \
|
|
|
|
> $(distdir)/cl-t; \
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
fi
|
|
|
|
|
2014-03-09 22:09:12 +01:00
|
|
|
# Make sure we're not shipping a file that embeds a local /gnu/store file name.
|
2013-05-12 16:26:12 +02:00
|
|
|
assert-no-store-file-names:
|
|
|
|
if grep -r --exclude=*.texi --exclude=*.info \
|
|
|
|
"$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
|
|
|
|
then \
|
|
|
|
echo "error: store file names embedded in the distribution" >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
2013-07-15 23:06:14 +02:00
|
|
|
# Make sure hydra.gnu.org has the important binaries.
|
|
|
|
assert-binaries-available:
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
"$(top_srcdir)/build-aux/check-available-binaries.scm"
|
|
|
|
|
2014-06-18 15:03:13 +02:00
|
|
|
# Make sure the final inputs don't refer to bootstrap tools.
|
|
|
|
assert-final-inputs-self-contained:
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
"$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
|
|
|
|
|
2013-10-15 23:25:08 +02:00
|
|
|
.PHONY: sync-descriptions gen-ChangeLog clean-go
|
2013-07-15 23:06:14 +02:00
|
|
|
.PHONY: assert-no-store-file-names assert-binaries-available
|
2014-06-18 15:03:13 +02:00
|
|
|
.PHONY: assert-final-inputs-self-contained
|