2013-01-05 18:47:50 -05:00
|
|
|
|
# GNU Guix --- Functional package management for GNU
|
2017-01-22 16:42:57 -05:00
|
|
|
|
# Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
|
2013-01-17 16:09:15 -05:00
|
|
|
|
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
2017-02-17 05:28:16 -05:00
|
|
|
|
# Copyright © 2015, 2017 Alex Kost <alezost@gmail.com>
|
2016-01-24 12:48:29 -05:00
|
|
|
|
# Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
|
2017-02-20 00:26:59 -05:00
|
|
|
|
# Copyright © 2016, 2017 Mark H Weaver <mhw@netris.org>
|
2017-04-14 06:14:51 -04:00
|
|
|
|
# Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
|
2017-05-13 20:44:36 -04:00
|
|
|
|
# Copyright © 2017 Leo Famulari <leo@famulari.name>
|
2017-06-09 05:46:14 -04:00
|
|
|
|
# Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
2017-09-27 16:44:56 -04:00
|
|
|
|
# Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
2012-06-13 12:01:25 -04:00
|
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
|
# This file is part of GNU Guix.
|
2012-06-13 12:01:25 -04:00
|
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-13 12:01:25 -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-06-13 12:01:25 -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-06-13 12:01:25 -04:00
|
|
|
|
|
2012-10-24 17:10:09 -04: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 04:15:25 -05:00
|
|
|
|
scripts/guix
|
2012-06-30 18:56:24 -04:00
|
|
|
|
|
2013-02-11 19:23:20 -05:00
|
|
|
|
nodist_noinst_SCRIPTS = \
|
|
|
|
|
pre-inst-env \
|
|
|
|
|
test-env
|
|
|
|
|
|
2017-05-02 09:43:01 -04:00
|
|
|
|
# Modules that are not compiled but are installed nonetheless, such as
|
|
|
|
|
# build-side modules with unusual dependencies.
|
|
|
|
|
MODULES_NOT_COMPILED =
|
|
|
|
|
|
2016-04-21 12:07:52 -04:00
|
|
|
|
include gnu/local.mk
|
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 17:19:03 -04:00
|
|
|
|
|
2012-06-13 12:01:25 -04:00
|
|
|
|
MODULES = \
|
utils: Move base16 procedures to (guix base16).
* guix/utils.scm (bytevector->base16-string, base16-string->bytevector):
Move to...
* guix/base16.scm: ... here. New file.
* tests/utils.scm ("bytevector->base16-string->bytevector"): Move to...
* tests/base16.scm: ... here. New file.
* Makefile.am (MODULES): Add guix/base16.scm.
(SCM_TESTS): Add tests/base16.scm.
* build-aux/download.scm, guix/derivations.scm,
guix/docker.scm, guix/import/snix.scm, guix/pk-crypto.scm,
guix/scripts/authenticate.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/store.scm, tests/hash.scm,
tests/pk-crypto.scm: Adjust imports accordingly.
2017-03-15 16:54:34 -04:00
|
|
|
|
guix/base16.scm \
|
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 16:33:28 -05:00
|
|
|
|
guix/base32.scm \
|
2014-03-28 19:06:41 -04:00
|
|
|
|
guix/base64.scm \
|
2015-06-24 12:03:28 -04:00
|
|
|
|
guix/cpio.scm \
|
2013-05-12 09:46:16 -04:00
|
|
|
|
guix/records.scm \
|
2015-01-26 15:38:49 -05:00
|
|
|
|
guix/gcrypt.scm \
|
2013-07-01 17:28:21 -04:00
|
|
|
|
guix/hash.scm \
|
2013-12-19 18:36:26 -05:00
|
|
|
|
guix/pk-crypto.scm \
|
2013-12-29 09:53:49 -05:00
|
|
|
|
guix/pki.scm \
|
Add (guix progress).
Among other things, this removes (guix utils), (guix ui), (guix config),
etc. from the closure of (guix build download), as was the case since
798648515b77507c242752457b4dc17c155bad6e.
* guix/utils.scm (<progress-reporter>, call-with-progress-reporter):
Move to...
* guix/progress.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
* guix/build/download.scm (current-terminal-columns)
(nearest-exact-integer, duration->seconds, seconds->string)
(byte-count->string, progress-bar, string-pad-middle)
(rate-limited, progress-reporter/file, dump-port*)
(time-monotonic): Move to progress.scm.
* guix/scripts/download.scm: Adjust accordingly.
* guix/scripts/substitute.scm: Likewise.
2017-10-16 17:16:39 -04:00
|
|
|
|
guix/progress.scm \
|
utils: Move combinators to (guix combinators).
* guix/utils.scm (compile-time-value, memoize, fold2)
(fold-tree, fold-tree-leaves): Move to...
* guix/combinators: ... here. New file.
* tests/utils.scm ("fold2, 1 list", "fold2, 2 lists")
(fold-tree tests): Move to...
* tests/combinators.scm: ... here. New file.
* Makefile.am (MODULES, SCM_TESTS): Add them.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
gnu/services/herd.scm, guix/build-system/gnu.scm,
guix/build-system/python.scm, guix/derivations.scm,
guix/gnu-maintenance.scm, guix/import/elpa.scm,
guix/scripts/archive.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/size.scm, guix/scripts/substitute.scm,
guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports
accordingly.
2016-05-04 11:35:47 -04:00
|
|
|
|
guix/combinators.scm \
|
Add (guix memoization).
* guix/combinators.scm (memoize): Remove.
* guix/memoization.scm: New file.
* Makefile.am (MODULES): Add it.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
guix/build-system/gnu.scm, guix/build-system/python.scm,
guix/derivations.scm, guix/gnu-maintenance.scm,
guix/import/cran.scm, guix/import/elpa.scm,
guix/modules.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/store.scm, guix/utils.scm: Adjust imports accordingly.
2017-01-28 10:33:57 -05:00
|
|
|
|
guix/memoization.scm \
|
2012-07-01 09:10:50 -04:00
|
|
|
|
guix/utils.scm \
|
2015-01-11 17:43:30 -05:00
|
|
|
|
guix/sets.scm \
|
2016-09-04 17:41:53 -04:00
|
|
|
|
guix/modules.scm \
|
2013-12-05 16:49:51 -05:00
|
|
|
|
guix/download.scm \
|
2017-05-03 17:03:20 -04:00
|
|
|
|
guix/discovery.scm \
|
2014-02-21 17:41:11 -05:00
|
|
|
|
guix/git-download.scm \
|
2016-06-15 04:38:10 -04:00
|
|
|
|
guix/hg-download.scm \
|
2013-10-03 16:45:25 -04:00
|
|
|
|
guix/monads.scm \
|
2014-08-15 10:22:11 -04:00
|
|
|
|
guix/monad-repl.scm \
|
2014-04-28 17:00:57 -04: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 11:31:45 -04: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 16:29:08 -04:00
|
|
|
|
guix/serialization.scm \
|
|
|
|
|
guix/nar.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
|
guix/derivations.scm \
|
2016-02-22 10:29:44 -05:00
|
|
|
|
guix/grafts.scm \
|
2012-12-04 18:02:22 -05:00
|
|
|
|
guix/gnu-maintenance.scm \
|
2015-10-21 05:11:25 -04:00
|
|
|
|
guix/upstream.scm \
|
2012-12-07 20:48:17 -05:00
|
|
|
|
guix/licenses.scm \
|
2017-07-28 11:47:19 -04:00
|
|
|
|
guix/git.scm \
|
2015-11-21 07:12:02 -05:00
|
|
|
|
guix/graph.scm \
|
2017-04-18 16:07:49 -04:00
|
|
|
|
guix/cache.scm \
|
2015-11-26 15:52:25 -05:00
|
|
|
|
guix/cve.scm \
|
2017-04-17 16:04:31 -04:00
|
|
|
|
guix/workers.scm \
|
2016-07-18 17:14:14 -04:00
|
|
|
|
guix/zlib.scm \
|
2012-06-27 17:58:07 -04:00
|
|
|
|
guix/build-system.scm \
|
2015-12-29 10:56:49 -05:00
|
|
|
|
guix/build-system/ant.scm \
|
2016-09-22 08:58:31 -04:00
|
|
|
|
guix/build-system/cargo.scm \
|
2013-03-26 17:14:24 -04:00
|
|
|
|
guix/build-system/cmake.scm \
|
2017-02-06 10:45:08 -05:00
|
|
|
|
guix/build-system/dub.scm \
|
2015-06-21 04:10:05 -04:00
|
|
|
|
guix/build-system/emacs.scm \
|
2017-05-15 10:38:57 -04:00
|
|
|
|
guix/build-system/font.scm \
|
2017-09-19 21:08:42 -04:00
|
|
|
|
guix/build-system/go.scm \
|
2017-09-13 08:37:39 -04:00
|
|
|
|
guix/build-system/meson.scm \
|
2017-08-02 16:49:30 -04:00
|
|
|
|
guix/build-system/minify.scm \
|
2016-10-07 17:57:08 -04:00
|
|
|
|
guix/build-system/asdf.scm \
|
2014-10-06 09:49:29 -04:00
|
|
|
|
guix/build-system/glib-or-gtk.scm \
|
2012-06-27 17:58:07 -04:00
|
|
|
|
guix/build-system/gnu.scm \
|
2015-04-12 09:16:48 -04:00
|
|
|
|
guix/build-system/haskell.scm \
|
2013-03-03 18:41:46 -05:00
|
|
|
|
guix/build-system/perl.scm \
|
2013-05-08 18:44:28 -04:00
|
|
|
|
guix/build-system/python.scm \
|
2016-12-22 13:56:33 -05:00
|
|
|
|
guix/build-system/ocaml.scm \
|
2015-02-05 16:41:24 -05:00
|
|
|
|
guix/build-system/waf.scm \
|
2015-07-31 08:47:34 -04:00
|
|
|
|
guix/build-system/r.scm \
|
2014-09-28 11:14:53 -04:00
|
|
|
|
guix/build-system/ruby.scm \
|
2017-06-09 05:46:14 -04:00
|
|
|
|
guix/build-system/texlive.scm \
|
2012-09-10 16:47:10 -04:00
|
|
|
|
guix/build-system/trivial.scm \
|
2012-09-12 17:47:49 -04:00
|
|
|
|
guix/ftp-client.scm \
|
2013-07-14 10:35:37 -04:00
|
|
|
|
guix/http-client.scm \
|
2013-04-24 17:48:36 -04:00
|
|
|
|
guix/gnupg.scm \
|
2014-11-27 17:51:48 -05:00
|
|
|
|
guix/elf.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
|
guix/store.scm \
|
2015-01-17 22:11:45 -05:00
|
|
|
|
guix/cvs-download.scm \
|
2014-03-26 12:59:01 -04:00
|
|
|
|
guix/svn-download.scm \
|
2012-10-31 19:50:01 -04:00
|
|
|
|
guix/ui.scm \
|
2015-12-29 10:56:49 -05:00
|
|
|
|
guix/build/ant-build-system.scm \
|
2012-11-12 17:10:26 -05:00
|
|
|
|
guix/build/download.scm \
|
2017-10-17 04:34:03 -04:00
|
|
|
|
guix/build/download-nar.scm \
|
2016-09-22 08:58:31 -04:00
|
|
|
|
guix/build/cargo-build-system.scm \
|
2013-03-26 17:14:24 -04:00
|
|
|
|
guix/build/cmake-build-system.scm \
|
2017-02-06 10:45:08 -05:00
|
|
|
|
guix/build/dub-build-system.scm \
|
2015-06-21 04:10:05 -04:00
|
|
|
|
guix/build/emacs-build-system.scm \
|
2017-09-13 08:37:39 -04:00
|
|
|
|
guix/build/meson-build-system.scm \
|
2017-08-02 16:49:30 -04:00
|
|
|
|
guix/build/minify-build-system.scm \
|
2017-05-15 10:38:57 -04:00
|
|
|
|
guix/build/font-build-system.scm \
|
2017-09-19 21:08:42 -04:00
|
|
|
|
guix/build/go-build-system.scm \
|
2016-10-07 17:57:08 -04:00
|
|
|
|
guix/build/asdf-build-system.scm \
|
2014-02-21 17:41:11 -05:00
|
|
|
|
guix/build/git.scm \
|
2016-06-15 04:38:10 -04:00
|
|
|
|
guix/build/hg.scm \
|
2014-10-06 09:49:29 -04:00
|
|
|
|
guix/build/glib-or-gtk-build-system.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
|
guix/build/gnu-build-system.scm \
|
2013-08-24 11:17:06 -04:00
|
|
|
|
guix/build/gnu-dist.scm \
|
2013-03-03 18:41:46 -05:00
|
|
|
|
guix/build/perl-build-system.scm \
|
2013-05-08 18:44:28 -04:00
|
|
|
|
guix/build/python-build-system.scm \
|
2016-12-22 13:56:33 -05:00
|
|
|
|
guix/build/ocaml-build-system.scm \
|
2015-07-31 08:47:34 -04:00
|
|
|
|
guix/build/r-build-system.scm \
|
2014-09-28 11:14:53 -04:00
|
|
|
|
guix/build/ruby-build-system.scm \
|
2017-06-09 05:46:14 -04:00
|
|
|
|
guix/build/texlive-build-system.scm \
|
2015-02-05 16:41:24 -05:00
|
|
|
|
guix/build/waf-build-system.scm \
|
2015-04-16 03:49:52 -04:00
|
|
|
|
guix/build/haskell-build-system.scm \
|
2014-09-04 17:05:12 -04:00
|
|
|
|
guix/build/store-copy.scm \
|
2012-06-15 04:03:08 -04:00
|
|
|
|
guix/build/utils.scm \
|
2012-10-29 17:39:46 -04:00
|
|
|
|
guix/build/union.scm \
|
2015-05-06 08:14:58 -04:00
|
|
|
|
guix/build/profiles.scm \
|
2013-12-16 17:07:17 -05:00
|
|
|
|
guix/build/pull.scm \
|
2013-05-08 17:24:05 -04:00
|
|
|
|
guix/build/rpath.scm \
|
2015-01-17 22:11:45 -05:00
|
|
|
|
guix/build/cvs.scm \
|
2014-03-26 12:59:01 -04:00
|
|
|
|
guix/build/svn.scm \
|
2016-06-17 15:44:37 -04:00
|
|
|
|
guix/build/syscalls.scm \
|
2015-03-31 16:10:08 -04:00
|
|
|
|
guix/build/gremlin.scm \
|
2014-08-02 19:24:50 -04:00
|
|
|
|
guix/build/emacs-utils.scm \
|
2016-09-09 10:51:03 -04:00
|
|
|
|
guix/build/java-utils.scm \
|
2016-10-07 17:57:08 -04:00
|
|
|
|
guix/build/lisp-utils.scm \
|
2014-10-07 17:23:09 -04:00
|
|
|
|
guix/build/graft.scm \
|
2016-02-08 17:23:35 -05:00
|
|
|
|
guix/build/bournish.scm \
|
2016-08-25 17:06:27 -04:00
|
|
|
|
guix/build/qt-utils.scm \
|
2016-11-30 09:49:48 -05:00
|
|
|
|
guix/build/make-bootstrap.scm \
|
Move search path specifications to (guix search-paths).
* guix/packages.scm (<search-path-specification>,
search-path-specification->sexp, sexp->search-path-specification):
Move to...
* guix/search-paths.scm: ... here. New file.
* Makefile.am (MODULES): Add it.
* guix/build-system/cmake.scm, guix/build-system/glib-or-gtk.scm,
guix/build-system/gnu.scm, guix/build-system/haskell.scm,
guix/build-system/perl.scm, guix/build-system/python.scm,
guix/build-system/ruby.scm, guix/build-system/waf.scm,
guix/profiles.scm, guix/scripts/package.scm: Use it.
2015-05-04 16:11:37 -04:00
|
|
|
|
guix/search-paths.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
|
guix/packages.scm \
|
2017-08-27 11:21:39 -04:00
|
|
|
|
guix/import/print.scm \
|
2014-09-27 10:16:23 -04:00
|
|
|
|
guix/import/utils.scm \
|
2014-11-11 09:30:58 -05:00
|
|
|
|
guix/import/gnu.scm \
|
2014-09-27 10:16:23 -04:00
|
|
|
|
guix/import/snix.scm \
|
2015-04-26 05:22:29 -04:00
|
|
|
|
guix/import/cabal.scm \
|
2015-07-24 10:49:57 -04:00
|
|
|
|
guix/import/cran.scm \
|
2015-04-26 05:22:29 -04:00
|
|
|
|
guix/import/hackage.scm \
|
2015-06-16 04:50:06 -04:00
|
|
|
|
guix/import/elpa.scm \
|
2017-06-09 06:35:50 -04:00
|
|
|
|
guix/import/texlive.scm \
|
2015-09-10 05:37:36 -04:00
|
|
|
|
guix/scripts.scm \
|
2013-12-05 16:49:51 -05:00
|
|
|
|
guix/scripts/download.scm \
|
2015-07-19 22:30:16 -04:00
|
|
|
|
guix/scripts/perform-download.scm \
|
2013-12-05 16:49:51 -05:00
|
|
|
|
guix/scripts/build.scm \
|
2013-12-21 19:08:21 -05:00
|
|
|
|
guix/scripts/archive.scm \
|
2013-12-05 16:49:51 -05:00
|
|
|
|
guix/scripts/import.scm \
|
|
|
|
|
guix/scripts/package.scm \
|
|
|
|
|
guix/scripts/gc.scm \
|
|
|
|
|
guix/scripts/hash.scm \
|
2017-03-12 11:48:40 -04:00
|
|
|
|
guix/scripts/pack.scm \
|
2013-12-05 16:49:51 -05:00
|
|
|
|
guix/scripts/pull.scm \
|
2015-03-25 05:34:27 -04:00
|
|
|
|
guix/scripts/substitute.scm \
|
2013-12-20 11:17:42 -05:00
|
|
|
|
guix/scripts/authenticate.scm \
|
2013-12-05 16:49:51 -05:00
|
|
|
|
guix/scripts/refresh.scm \
|
2014-02-18 17:45:58 -05:00
|
|
|
|
guix/scripts/system.scm \
|
2017-09-13 10:07:30 -04:00
|
|
|
|
guix/scripts/system/search.scm \
|
2014-08-31 20:13:21 -04:00
|
|
|
|
guix/scripts/lint.scm \
|
2015-10-19 18:55:09 -04:00
|
|
|
|
guix/scripts/challenge.scm \
|
2015-07-24 10:49:57 -04:00
|
|
|
|
guix/scripts/import/cran.scm \
|
2014-11-11 09:30:58 -05:00
|
|
|
|
guix/scripts/import/gnu.scm \
|
2014-09-27 10:16:23 -04:00
|
|
|
|
guix/scripts/import/nix.scm \
|
2015-04-26 05:22:29 -04:00
|
|
|
|
guix/scripts/import/hackage.scm \
|
2017-08-27 11:41:18 -04:00
|
|
|
|
guix/scripts/import/json.scm \
|
2015-06-16 04:50:06 -04:00
|
|
|
|
guix/scripts/import/elpa.scm \
|
2017-06-09 06:35:50 -04:00
|
|
|
|
guix/scripts/import/texlive.scm \
|
2014-09-21 13:40:05 -04:00
|
|
|
|
guix/scripts/environment.scm \
|
2015-03-17 10:21:31 -04:00
|
|
|
|
guix/scripts/publish.scm \
|
2017-07-25 06:14:04 -04:00
|
|
|
|
guix/scripts/weather.scm \
|
2015-06-17 15:58:04 -04:00
|
|
|
|
guix/scripts/edit.scm \
|
2015-06-17 18:22:13 -04:00
|
|
|
|
guix/scripts/size.scm \
|
2015-08-26 18:36:41 -04:00
|
|
|
|
guix/scripts/graph.scm \
|
2015-07-01 20:32:07 -04:00
|
|
|
|
guix/scripts/container.scm \
|
|
|
|
|
guix/scripts/container/exec.scm \
|
2012-06-27 19:24:34 -04: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 17:19:03 -04:00
|
|
|
|
$(GNU_SYSTEM_MODULES)
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
2016-01-12 10:37:45 -05:00
|
|
|
|
if HAVE_GUILE_JSON
|
|
|
|
|
|
|
|
|
|
MODULES += \
|
2017-01-03 10:20:15 -05:00
|
|
|
|
guix/docker.scm \
|
2017-03-26 02:38:33 -04:00
|
|
|
|
guix/import/cpan.scm \
|
|
|
|
|
guix/import/crate.scm \
|
|
|
|
|
guix/import/gem.scm \
|
2016-03-03 11:46:58 -05:00
|
|
|
|
guix/import/github.scm \
|
2017-09-26 03:29:00 -04:00
|
|
|
|
guix/import/gnome.scm \
|
2016-01-12 10:37:45 -05:00
|
|
|
|
guix/import/json.scm \
|
|
|
|
|
guix/import/pypi.scm \
|
2017-03-26 02:38:33 -04:00
|
|
|
|
guix/import/stackage.scm \
|
|
|
|
|
guix/scripts/import/crate.scm \
|
2016-01-12 10:37:45 -05:00
|
|
|
|
guix/scripts/import/gem.scm \
|
2017-05-09 15:44:19 -04:00
|
|
|
|
guix/scripts/import/pypi.scm \
|
|
|
|
|
guix/scripts/import/stackage.scm
|
2016-01-12 10:37:45 -05:00
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
2016-12-30 17:22:27 -05:00
|
|
|
|
if HAVE_GUILE_SSH
|
|
|
|
|
|
|
|
|
|
MODULES += \
|
2016-12-31 12:19:56 -05:00
|
|
|
|
guix/ssh.scm \
|
2017-04-21 13:13:32 -04:00
|
|
|
|
guix/scripts/copy.scm \
|
|
|
|
|
guix/store/ssh.scm
|
2016-12-30 17:22:27 -05:00
|
|
|
|
|
|
|
|
|
endif HAVE_GUILE_SSH
|
|
|
|
|
|
2014-01-23 17:48:34 -05:00
|
|
|
|
if BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
|
|
|
|
MODULES += \
|
|
|
|
|
guix/scripts/offload.scm
|
|
|
|
|
|
|
|
|
|
endif BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
# Internal modules with test suite support.
|
|
|
|
|
dist_noinst_DATA = guix/tests.scm guix/tests/http.scm
|
2014-08-23 13:18:01 -04:00
|
|
|
|
|
2017-02-17 05:28:16 -05:00
|
|
|
|
# Auxiliary files for packages.
|
|
|
|
|
AUX_FILES = \
|
2017-02-18 03:24:41 -05:00
|
|
|
|
gnu/packages/aux-files/emacs/guix-emacs.el \
|
2017-09-04 05:29:12 -04:00
|
|
|
|
gnu/packages/aux-files/linux-libre/4.13-i686.conf \
|
|
|
|
|
gnu/packages/aux-files/linux-libre/4.13-x86_64.conf \
|
2017-02-17 05:28:16 -05:00
|
|
|
|
gnu/packages/aux-files/linux-libre/4.9-i686.conf \
|
|
|
|
|
gnu/packages/aux-files/linux-libre/4.9-x86_64.conf \
|
|
|
|
|
gnu/packages/aux-files/linux-libre/4.4-i686.conf \
|
|
|
|
|
gnu/packages/aux-files/linux-libre/4.4-x86_64.conf \
|
|
|
|
|
gnu/packages/aux-files/linux-libre/4.1-i686.conf \
|
|
|
|
|
gnu/packages/aux-files/linux-libre/4.1-x86_64.conf
|
2013-07-17 05:05:19 -04:00
|
|
|
|
|
2014-08-11 11:15:27 -04:00
|
|
|
|
# Templates, examples.
|
|
|
|
|
EXAMPLES = \
|
2015-05-09 17:16:11 -04:00
|
|
|
|
gnu/system/examples/bare-bones.tmpl \
|
2016-03-22 18:48:21 -04:00
|
|
|
|
gnu/system/examples/desktop.tmpl \
|
2017-05-13 20:44:36 -04:00
|
|
|
|
gnu/system/examples/lightweight-desktop.tmpl \
|
|
|
|
|
gnu/system/examples/vm-image.tmpl
|
2014-08-11 11:15:27 -04:00
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go $(dist_noinst_DATA:%.scm=%.go)
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
2017-05-02 09:43:01 -04:00
|
|
|
|
nobase_dist_guilemodule_DATA = \
|
|
|
|
|
$(MODULES) $(MODULES_NOT_COMPILED) $(AUX_FILES) $(EXAMPLES) \
|
2014-12-23 06:31:50 -05:00
|
|
|
|
$(MISC_DISTRO_FILES)
|
2017-03-20 17:13:27 -04:00
|
|
|
|
nobase_nodist_guilemodule_DATA = guix/config.scm
|
|
|
|
|
nobase_nodist_guileobject_DATA = $(GOBJECTS)
|
2012-08-22 11:24:38 -04:00
|
|
|
|
|
2013-10-15 17:25:08 -04:00
|
|
|
|
# Handy way to remove the .go files without removing all the rest.
|
|
|
|
|
clean-go:
|
|
|
|
|
-$(RM) -f $(GOBJECTS)
|
2016-09-16 00:31:41 -04:00
|
|
|
|
@find . -name '*.go' -print | \
|
|
|
|
|
if test -t 1; then \
|
|
|
|
|
xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
|
|
|
|
|
else \
|
|
|
|
|
xargs -r echo "warning: stray .go files:"; \
|
|
|
|
|
fi
|
2013-10-15 17:25:08 -04:00
|
|
|
|
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
2016-01-12 10:37:45 -05:00
|
|
|
|
# Test extensions; has to be unconditional.
|
|
|
|
|
TEST_EXTENSIONS = .scm .sh
|
|
|
|
|
|
|
|
|
|
if CAN_RUN_TESTS
|
|
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
|
SCM_TESTS = \
|
utils: Move base16 procedures to (guix base16).
* guix/utils.scm (bytevector->base16-string, base16-string->bytevector):
Move to...
* guix/base16.scm: ... here. New file.
* tests/utils.scm ("bytevector->base16-string->bytevector"): Move to...
* tests/base16.scm: ... here. New file.
* Makefile.am (MODULES): Add guix/base16.scm.
(SCM_TESTS): Add tests/base16.scm.
* build-aux/download.scm, guix/derivations.scm,
guix/docker.scm, guix/import/snix.scm, guix/pk-crypto.scm,
guix/scripts/authenticate.scm, guix/scripts/download.scm,
guix/scripts/hash.scm, guix/store.scm, tests/hash.scm,
tests/pk-crypto.scm: Adjust imports accordingly.
2017-03-15 16:54:34 -04:00
|
|
|
|
tests/base16.scm \
|
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 16:33:28 -05:00
|
|
|
|
tests/base32.scm \
|
2014-03-28 19:06:41 -04:00
|
|
|
|
tests/base64.scm \
|
2015-06-24 12:03:28 -04:00
|
|
|
|
tests/cpio.scm \
|
2013-07-02 16:38:03 -04:00
|
|
|
|
tests/hash.scm \
|
2013-12-19 18:36:26 -05:00
|
|
|
|
tests/pk-crypto.scm \
|
2013-12-29 09:53:49 -05:00
|
|
|
|
tests/pki.scm \
|
2017-08-27 11:21:39 -04:00
|
|
|
|
tests/print.scm \
|
2015-01-11 17:43:30 -05:00
|
|
|
|
tests/sets.scm \
|
2016-09-04 17:41:53 -04:00
|
|
|
|
tests/modules.scm \
|
2015-12-07 16:45:00 -05:00
|
|
|
|
tests/gnu-maintenance.scm \
|
2015-03-25 05:34:27 -04:00
|
|
|
|
tests/substitute.scm \
|
2012-06-13 12:01:25 -04:00
|
|
|
|
tests/builders.scm \
|
|
|
|
|
tests/derivations.scm \
|
2016-02-22 10:29:44 -05:00
|
|
|
|
tests/grafts.scm \
|
2013-02-01 07:16:27 -05:00
|
|
|
|
tests/ui.scm \
|
2013-05-12 09:46:16 -04:00
|
|
|
|
tests/records.scm \
|
2016-03-09 09:08:00 -05:00
|
|
|
|
tests/upstream.scm \
|
utils: Move combinators to (guix combinators).
* guix/utils.scm (compile-time-value, memoize, fold2)
(fold-tree, fold-tree-leaves): Move to...
* guix/combinators: ... here. New file.
* tests/utils.scm ("fold2, 1 list", "fold2, 2 lists")
(fold-tree tests): Move to...
* tests/combinators.scm: ... here. New file.
* Makefile.am (MODULES, SCM_TESTS): Add them.
* gnu/packages.scm, gnu/packages/bootstrap.scm,
gnu/services/herd.scm, guix/build-system/gnu.scm,
guix/build-system/python.scm, guix/derivations.scm,
guix/gnu-maintenance.scm, guix/import/elpa.scm,
guix/scripts/archive.scm, guix/scripts/build.scm,
guix/scripts/graph.scm, guix/scripts/lint.scm,
guix/scripts/size.scm, guix/scripts/substitute.scm,
guix/serialization.scm, guix/store.scm, guix/ui.scm: Adjust imports
accordingly.
2016-05-04 11:35:47 -04:00
|
|
|
|
tests/combinators.scm \
|
2017-05-03 17:03:20 -04:00
|
|
|
|
tests/discovery.scm \
|
2012-06-27 19:24:34 -04:00
|
|
|
|
tests/utils.scm \
|
2012-07-01 11:32:03 -04:00
|
|
|
|
tests/build-utils.scm \
|
2012-10-29 17:39:46 -04:00
|
|
|
|
tests/packages.scm \
|
2012-11-04 13:38:31 -05:00
|
|
|
|
tests/snix.scm \
|
2015-04-26 05:22:29 -04:00
|
|
|
|
tests/hackage.scm \
|
2015-07-24 10:49:57 -04:00
|
|
|
|
tests/cran.scm \
|
2015-06-16 04:50:06 -04:00
|
|
|
|
tests/elpa.scm \
|
2017-06-09 06:35:50 -04:00
|
|
|
|
tests/texlive.scm \
|
2012-12-09 17:52:59 -05:00
|
|
|
|
tests/store.scm \
|
2013-10-03 16:45:25 -04:00
|
|
|
|
tests/monads.scm \
|
2014-04-28 17:00:57 -04:00
|
|
|
|
tests/gexp.scm \
|
2013-04-08 16:54:08 -04:00
|
|
|
|
tests/nar.scm \
|
2013-11-01 18:11:17 -04:00
|
|
|
|
tests/union.scm \
|
2014-05-10 15:49:11 -04:00
|
|
|
|
tests/profiles.scm \
|
2017-01-22 16:42:57 -05:00
|
|
|
|
tests/search-paths.scm \
|
2014-08-31 20:13:21 -04:00
|
|
|
|
tests/syscalls.scm \
|
2015-03-31 16:10:08 -04:00
|
|
|
|
tests/gremlin.scm \
|
2016-06-06 12:12:31 -04:00
|
|
|
|
tests/bournish.scm \
|
2015-03-17 10:21:31 -04:00
|
|
|
|
tests/lint.scm \
|
2015-06-17 18:22:13 -04:00
|
|
|
|
tests/publish.scm \
|
2015-09-10 05:37:36 -04:00
|
|
|
|
tests/scripts.scm \
|
2015-06-02 08:48:16 -04:00
|
|
|
|
tests/size.scm \
|
2015-08-26 18:36:41 -04:00
|
|
|
|
tests/graph.scm \
|
2015-10-19 18:55:09 -04:00
|
|
|
|
tests/challenge.scm \
|
2017-04-18 16:07:49 -04:00
|
|
|
|
tests/cache.scm \
|
2015-11-26 15:52:25 -05:00
|
|
|
|
tests/cve.scm \
|
2017-04-17 16:04:31 -04:00
|
|
|
|
tests/workers.scm \
|
2016-07-18 17:14:14 -04:00
|
|
|
|
tests/zlib.scm \
|
2015-07-14 09:06:46 -04:00
|
|
|
|
tests/file-systems.scm \
|
2017-09-13 18:01:21 -04:00
|
|
|
|
tests/uuid.scm \
|
2016-01-21 16:45:54 -05:00
|
|
|
|
tests/system.scm \
|
services: Introduce extensible services.
This patch rewrites GuixSD services to make them extensible.
* gnu-system.am (GNU_SYSTEM_MODULES): Add gnu/services/dbus.scm.
* gnu/services.scm (<service>): Replace with new record type.
(<service-extension>, <service-type>): New record types.
(write-service-type, compute-boot-script, second-argument): New
procedures.
(%boot-service, boot-service-type): New variables.
(file-union, directory-union, modprobe-wrapper,
activation-service->script, activation-script,
gexps->activation-gexp): New procedures.
(activation-service-type, %activation-service): New variables.
(etc-directory, files->etc-directory, etc-service): New procedures.
(etc-service-type, setuid-program-service, firmware-service-type): New
variables.
(firmware->activation-gexp): New procedure.
(&service-error, &missing-target-service-error,
&ambiguous-target-service-error): New condition types.
(service-back-edges, fold-services): New procedures.
* gnu/services/avahi.scm (<avahi-configuration>): New record type.
(configuration-file): Replace keyword parameters with a single
'config' parameter.
(%avahi-accounts, %avahi-activation, avahi-service-type): New
variables.
(avahi-dmd-service): New procedure.
(avahi-service): Rewrite using 'service' and 'avahi-configuration'.
* gnu/services/base.scm (%root-file-system-dmd-service,
root-file-system-service-type): New variables.
(root-file-system-service): Use them.
(file-system->dmd-service-name): New procedure.
(file-system-service-type): New variable.
(file-system-service): Use it. Replace keyword parameters with a
single 'file-system' object.
(user-unmount-service-type): New variable.
(user-unmount-service): Use it.
(user-processes-service-type): New variable.
(user-processes-service): Use it.
(host-name-service-type): New variable.
(host-name-service): Use it.
(console-keymap-service-type): New variable.
(console-keymap-service): Use it.
(console-font-service-type): New variable.
(console-font-service): Use it.
(mingetty-pam-service, mingetty-dmd-service): New procedures.
(mingetty-service-type): New variable.
(mingetty-service): Use it.
(nscd-dmd-service): New procedure.
(nscd-activation, nscd-service-type): New variables.
(nscd-service): Use the latter.
(syslog-service-type): New variable.
(syslog-service): Use it.
(<guix-configuration>): New record type.
(%default-guix-configuration): New variable.
(guix-dmd-service, guix-accounts, guix-activation): New procedures.
(guix-service-type): New variable.
(guix-service): Replace list of keyword parameters with a single
'config' parameter. Rewrite using 'service'.
(<udev-configuration>): New record type.
(udev-dmd-service): New procedure.
(udev-service-type): New variable.
(udev-service): Use it.
(device-mapping-service-type): New variable.
(device-mapping-service): Use it.
(swap-service-type): New variable.
(swap-service): Use it.
* gnu/services/databases.scm (<postgresql-configuration>): New record
type.
(%postgresql-accounts, postgresql-activation): New variables.
(postgresql-dmd-service): New procedure.
(postgresql-service): Rewrite using 'service' and
'postgresql-configuration'.
* gnu/services/dbus.scm: New file.
* gnu/services/desktop.scm (dbus-configuration-directory, dbus-service):
Remove.
(wrapped-dbus-service): New procedure.
(<upower-configuration>): New record type.
(upower-configuration-file): Replace keyword parameters with single
<upower-configuration> parameter.
(%upower-accounts, %upower-activation): New variables.
(upower-dbus-service, upower-dmd-service): New procedures.
(upower-service-type): New variable.
(upower-service): Rewrite using 'service' and 'upower-configuration'.
(%colord-activation, %colord-accounts): New variables.
(colord-dmd-service): New procedure.
(colord-service-type): New variable.
(colord-service): Rewrite using 'service'.
(<geoclue-configuration>): New record type.
(geoclue-configuration-file): Replace keyword parameters with a single
'config' parameter.
(geoclue-dbus-service, geoclue-dmd-service): New procedures.
(%geoclue-accounts, geoclue-service-type): New variables.
(geoclue-service): Rewrite using 'service' and
'geoclue-configuration'.
(%polkit-accounts, %polkit-pam-services, polkit-service-type): New
variables.
(polkit-dmd-service): New procedure.
(polkit-service): Rewrite using 'service'.
(<elogind-configuration>)[elogind]: New field.
(elogind-dmd-service): New procedure.
(elogind-service-type): New variable.
(elogind-service): Rewrite using 'service'.
(%desktop-services): Remove argument to 'dbus-service'. Remove 'map'
over %BASE-SERVICES.
* gnu/services/dmd.scm (dmd-boot-gexp): New procedure.
(dmd-root-service-type, %dmd-root-service): New variables.
(dmd-service-type): New macro.
(<dmd-service>): New record type.
* gnu/services/lirc.scm (<lirc-configuration>): New record type.
(%lirc-activation): New variable.
(lirc-dmd-service): New procedure.
(lirc-service-type): New variable.
(lirc-service): Rewrite using 'service' and 'lirc-configuration'.
* gnu/services/networking.scm (<static-networking>): New record type.
(static-networking-service-type): New variable.
(static-networking-service): Rewrite using 'service' and
'static-networking'.
(dhcp-client-service-type): New variable.
(dhcp-client-service): Rewrite using 'service'.
(<ntp-configuration>): New record type.
(ntp-dmd-service): New procedure.
(ntp-service-type): New variable.
(ntp-service): New procedure.
(%tor-accounts, tor-service-type): New variable.
(tor-dmd-service): New procedure.
(tor-service): Rewrite using 'service'.
(<bitlbee-configuration>): New record type.
(bitlbee-dmd-service): New procedure.
(%bitlbee-accounts, %bitlbee-activation, bitlbee-service-type): New
variables.
(bitlbee-service): Rewrite using 'service'.
(%wicd-activation): New variable.
(wicd-dmd-service): New procedure.
(wicd-service-type): New variable.
(wicd-service): Rewrite using 'service'.
* gnu/services/ssh.scm (<lsh-configuration>): New record type.
(activation): Rename to...
(lsh-initialization): ... this.
(lsh-activation, lsh-dmd-service, lsh-pam-services): New procedures.
(lsh-service-type): New variable.
(lsh-service): Rewrite using 'service' and 'lsh-configuration'.
* gnu/services/web.scm (<nginx-configuration>): New record type.
(%nginx-accounts): New variable.
(nginx-activation, nginx-dmd-service): New procedures.
(nginx-service-type): New variable.
(nginx-service): Rewrite using 'service' and 'nginx-configuration'.
* gnu/services/xorg.scm (<slim-configuration>): New record type.
(slim-pam-service, slim-dmd-service): New procedures.
(slim-service-type): New variable.
(slim-service): Rewrite using 'service' and 'slim-configuration'.
* gnu/system.scm (file-union): Remove.
(other-file-system-services): Adjust to new 'file-system-service'
signature.
(essential-services): Add #:container? parameter. Add
%DMD-ROOT-SERVICE, %ACTIVATION-SERVICE, and calls to
'pam-root-service', 'account-service', 'operating-system-etc-service',
and a SETUID-PROGRAM-SERVICE instance.
(operating-system-services): Pass #:container? to 'essential-services.
(etc-directory): Remove.
(operating-system-etc-service): New procedure. Rewrite as a call to
'etc-service'.
(operating-system-accounts): Change to not return accounts required by
services.
(operating-system-etc-directory): Rewrite as a call to 'fold-services'
and 'etc-directory'.
(user-group->gexp, user-account->gexp, modprobe-wrapper): Remove.
(operating-system-activation-script): Rewrite as a call to
'fold-services' and 'activation-service->script'.
(operating-system-boot-script): Likewise.
(operating-system-derivation): Add call to 'lower-object'.
(emacs-site-file, emacs-site-directory, shells-file): Change to use
'computed-file' and 'scheme-file' instead of the monadic procedures.
* gnu/system/install.scm (cow-store-service-type): New variable.
(cow-store-service): Rewrite using 'service'.
(/etc/configuration-files): New procedure.
(configuration-template-service-type,
%configuration-template-service): New variables.
(configuration-template-service): Remove.
(installation-services): Adjust accordingly. Adjust argument to
'guix-service'.
* gnu/system/linux.scm (/etc-entry, pam-root-service): New procedures.
(pam-root-service-type): New variable.
* gnu/system/shadow.scm (user-group->gexp, user-account->gexp,
account-activation, etc-skel, account-service): New procedures.
(account-service-type): New variable.
* tests/services.scm: New file.
* doc/guix.texi (Base Services, Desktop Services): Adjust accordingly.
(Defining Services): Rewrite.
* doc/images/service-graph.dot: New file.
* doc.am (DOT_FILES): Add it.
* po/guix/POTFILES.in: Add gnu/services.scm.
2015-09-17 17:44:26 -04:00
|
|
|
|
tests/services.scm \
|
2016-01-31 14:18:52 -05:00
|
|
|
|
tests/scripts-build.scm \
|
2016-01-16 19:20:59 -05:00
|
|
|
|
tests/containers.scm \
|
2017-03-14 17:43:10 -04:00
|
|
|
|
tests/pack.scm \
|
2016-01-16 19:20:59 -05:00
|
|
|
|
tests/import-utils.scm
|
2013-04-29 15:52:21 -04:00
|
|
|
|
|
2014-09-27 10:16:23 -04:00
|
|
|
|
if HAVE_GUILE_JSON
|
|
|
|
|
|
2015-01-08 15:51:13 -05:00
|
|
|
|
SCM_TESTS += \
|
|
|
|
|
tests/pypi.scm \
|
2015-09-01 19:57:44 -04:00
|
|
|
|
tests/cpan.scm \
|
2016-09-22 05:40:58 -04:00
|
|
|
|
tests/gem.scm \
|
|
|
|
|
tests/crate.scm
|
2014-09-27 10:16:23 -04:00
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
|
SH_TESTS = \
|
2012-10-31 20:46:15 -04:00
|
|
|
|
tests/guix-build.sh \
|
2012-11-07 18:13:25 -05:00
|
|
|
|
tests/guix-download.sh \
|
2013-01-05 18:28:06 -05:00
|
|
|
|
tests/guix-gc.sh \
|
2013-05-11 09:09:56 -04:00
|
|
|
|
tests/guix-hash.sh \
|
2013-12-21 15:47:17 -05:00
|
|
|
|
tests/guix-package.sh \
|
2015-04-06 15:52:40 -04:00
|
|
|
|
tests/guix-package-net.sh \
|
2014-06-26 16:23:36 -04:00
|
|
|
|
tests/guix-system.sh \
|
2013-12-21 19:08:21 -05:00
|
|
|
|
tests/guix-archive.sh \
|
2014-10-11 19:58:29 -04:00
|
|
|
|
tests/guix-authenticate.sh \
|
2015-06-30 06:35:27 -04:00
|
|
|
|
tests/guix-environment.sh \
|
2015-06-19 08:57:44 -04:00
|
|
|
|
tests/guix-environment-container.sh \
|
2015-08-26 18:36:41 -04:00
|
|
|
|
tests/guix-graph.sh \
|
2014-10-11 19:58:29 -04:00
|
|
|
|
tests/guix-lint.sh
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
2013-09-22 17:23:38 -04:00
|
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
|
|
|
|
SH_TESTS += tests/guix-register.sh
|
|
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
|
TESTS = $(SCM_TESTS) $(SH_TESTS)
|
|
|
|
|
|
build: Add a Guile custom test driver using SRFI-64.
Before that '.log' files for scheme tests were fragmented and not
included in test-suite.log. This unifies the semantics of SRFI-64 API
with Automake test suite.
* build-aux/test-driver.scm: New file.
* Makefile.am (SCM_LOG_DRIVER, AM_SCM_LOG_DRIVER_FLAGS): New variables.
(SCM_LOG_COMPILER, AM_SCM_LOG_FLAGS): Delete variables.
(AM_TESTS_ENVIRONMENT): Set GUILE_AUTO_COMPILE to 0.
* test-env.in: Silence guix-daemon.
* doc/guix.texi (Running the Test Suite): Describe how to display the
detailed results. Bug reports require only 'test-suite.log' file.
* tests/base32.scm, tests/build-utils.scm, tests/builders.scm,
tests/challenge.scm, tests/cpan.scm, tests/cpio.scm, tests/cran.scm,
tests/cve.scm, tests/derivations.scm, tests/elpa.scm,
tests/file-systems.scm, tests/gem.scm, tests/gexp.scm,
tests/gnu-maintenance.scm, tests/grafts.scm, tests/graph.scm,
tests/gremlin.scm, tests/hackage.scm, tests/hash.scm,
tests/import-utils.scm, tests/lint.scm, tests/monads.scm, tests/nar.scm,
tests/packages.scm, tests/pk-crypto.scm, tests/pki.scm,
tests/profiles.scm, tests/publish.scm, tests/pypi.scm,
tests/records.scm, tests/scripts-build.scm, tests/scripts.scm,
tests/services.scm, tests/sets.scm, tests/size.scm, tests/snix.scm,
tests/store.scm, tests/substitute.scm, tests/syscalls.scm,
tests/system.scm, tests/ui.scm, tests/union.scm, tests/upstream.scm,
tests/utils.scm: Don't exit at the end of test groups.
* tests/containers.scm: Likewise. Use 'test-skip' instead of exiting
with error code 77.
2015-10-26 18:47:24 -04:00
|
|
|
|
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0
|
2012-11-13 16:57:50 -05:00
|
|
|
|
|
2016-05-04 11:49:32 -04:00
|
|
|
|
SCM_LOG_DRIVER = \
|
|
|
|
|
$(top_builddir)/test-env --quiet-stderr \
|
|
|
|
|
$(GUILE) --no-auto-compile -e main \
|
|
|
|
|
$(top_srcdir)/build-aux/test-driver.scm
|
|
|
|
|
|
build: Add a Guile custom test driver using SRFI-64.
Before that '.log' files for scheme tests were fragmented and not
included in test-suite.log. This unifies the semantics of SRFI-64 API
with Automake test suite.
* build-aux/test-driver.scm: New file.
* Makefile.am (SCM_LOG_DRIVER, AM_SCM_LOG_DRIVER_FLAGS): New variables.
(SCM_LOG_COMPILER, AM_SCM_LOG_FLAGS): Delete variables.
(AM_TESTS_ENVIRONMENT): Set GUILE_AUTO_COMPILE to 0.
* test-env.in: Silence guix-daemon.
* doc/guix.texi (Running the Test Suite): Describe how to display the
detailed results. Bug reports require only 'test-suite.log' file.
* tests/base32.scm, tests/build-utils.scm, tests/builders.scm,
tests/challenge.scm, tests/cpan.scm, tests/cpio.scm, tests/cran.scm,
tests/cve.scm, tests/derivations.scm, tests/elpa.scm,
tests/file-systems.scm, tests/gem.scm, tests/gexp.scm,
tests/gnu-maintenance.scm, tests/grafts.scm, tests/graph.scm,
tests/gremlin.scm, tests/hackage.scm, tests/hash.scm,
tests/import-utils.scm, tests/lint.scm, tests/monads.scm, tests/nar.scm,
tests/packages.scm, tests/pk-crypto.scm, tests/pki.scm,
tests/profiles.scm, tests/publish.scm, tests/pypi.scm,
tests/records.scm, tests/scripts-build.scm, tests/scripts.scm,
tests/services.scm, tests/sets.scm, tests/size.scm, tests/snix.scm,
tests/store.scm, tests/substitute.scm, tests/syscalls.scm,
tests/system.scm, tests/ui.scm, tests/union.scm, tests/upstream.scm,
tests/utils.scm: Don't exit at the end of test groups.
* tests/containers.scm: Likewise. Use 'test-skip' instead of exiting
with error code 77.
2015-10-26 18:47:24 -04:00
|
|
|
|
AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
|
2012-10-31 18:27:51 -04:00
|
|
|
|
|
2012-12-05 18:03:26 -05:00
|
|
|
|
SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
|
2012-10-31 18:27:51 -04:00
|
|
|
|
AM_SH_LOG_FLAGS = -x -e
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
2013-05-11 16:37:33 -04: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)
|
|
|
|
|
|
2016-01-12 10:37:45 -05:00
|
|
|
|
else !CAN_RUN_TESTS
|
|
|
|
|
|
|
|
|
|
TESTS =
|
|
|
|
|
SH_TESTS =
|
|
|
|
|
SCM_TESTS =
|
|
|
|
|
|
|
|
|
|
# Automake always generates a 'check' target, so better not override it.
|
|
|
|
|
check-local:
|
|
|
|
|
@echo
|
|
|
|
|
@echo "Cannot run tests because file name limits would be exceeded." >&2
|
|
|
|
|
@echo "Look for 'length' in the 'config.log' file for details." >&2
|
|
|
|
|
@echo
|
|
|
|
|
@exit 1
|
|
|
|
|
|
|
|
|
|
endif !CAN_RUN_TESTS
|
|
|
|
|
|
2017-05-02 09:10:05 -04:00
|
|
|
|
check-system: $(GOBJECTS) $(BOOTSTRAP_GUILE_TARBALLS)
|
2016-05-04 17:33:59 -04:00
|
|
|
|
$(AM_V_at)$(top_builddir)/pre-inst-env \
|
|
|
|
|
$(GUILE) --no-auto-compile \
|
|
|
|
|
-e '(@@ (run-system-tests) run-system-tests)' \
|
|
|
|
|
$(top_srcdir)/build-aux/run-system-tests.scm
|
|
|
|
|
|
2017-05-08 09:25:06 -04:00
|
|
|
|
# Public key used to sign substitutes from hydra.gnu.org & co.
|
|
|
|
|
dist_pkgdata_DATA = \
|
|
|
|
|
hydra.gnu.org.pub \
|
|
|
|
|
bayfront.guixsd.org.pub
|
2013-05-11 16:37:33 -04:00
|
|
|
|
|
2015-04-09 17:44:14 -04:00
|
|
|
|
# Bash completion file.
|
|
|
|
|
dist_bashcompletion_DATA = etc/completion/bash/guix
|
|
|
|
|
|
2016-09-07 01:57:38 -04:00
|
|
|
|
# Zsh completion file.
|
|
|
|
|
dist_zshcompletion_DATA = etc/completion/zsh/_guix
|
|
|
|
|
|
2014-06-18 09:03:13 -04:00
|
|
|
|
EXTRA_DIST = \
|
|
|
|
|
HACKING \
|
|
|
|
|
ROADMAP \
|
|
|
|
|
TODO \
|
2015-12-09 07:39:40 -05:00
|
|
|
|
CODE-OF-CONDUCT \
|
2014-06-18 09:03:13 -04:00
|
|
|
|
.dir-locals.el \
|
2014-11-09 16:32:21 -05:00
|
|
|
|
build-aux/build-self.scm \
|
2015-11-05 17:42:45 -05:00
|
|
|
|
build-aux/compile-all.scm \
|
2016-04-13 13:18:03 -04:00
|
|
|
|
build-aux/hydra/evaluate.scm \
|
2014-06-18 09:03:13 -04:00
|
|
|
|
build-aux/hydra/gnu-system.scm \
|
|
|
|
|
build-aux/hydra/guix.scm \
|
|
|
|
|
build-aux/check-available-binaries.scm \
|
|
|
|
|
build-aux/check-final-inputs-self-contained.scm \
|
|
|
|
|
build-aux/download.scm \
|
2015-07-19 15:54:42 -04:00
|
|
|
|
build-aux/generate-authors.scm \
|
2016-04-03 10:25:07 -04:00
|
|
|
|
build-aux/test-driver.scm \
|
2017-05-06 16:59:05 -04:00
|
|
|
|
build-aux/update-guix-package.scm \
|
2017-05-18 10:21:35 -04:00
|
|
|
|
build-aux/update-NEWS.scm \
|
2016-05-04 17:56:42 -04:00
|
|
|
|
build-aux/run-system-tests.scm \
|
2016-10-21 18:02:19 -04:00
|
|
|
|
d3.v3.js \
|
|
|
|
|
graph.js \
|
2014-06-18 09:03:13 -04:00
|
|
|
|
srfi/srfi-64.scm \
|
|
|
|
|
srfi/srfi-64.upstream.scm \
|
|
|
|
|
tests/test.drv \
|
|
|
|
|
tests/signing-key.pub \
|
|
|
|
|
tests/signing-key.sec \
|
2015-11-26 15:52:25 -05:00
|
|
|
|
tests/cve-sample.xml \
|
2014-06-18 09:03:13 -04:00
|
|
|
|
build-aux/config.rpath \
|
|
|
|
|
bootstrap \
|
|
|
|
|
release.nix \
|
2012-08-14 12:28:04 -04:00
|
|
|
|
$(TESTS)
|
2012-07-05 18:55:07 -04:00
|
|
|
|
|
2014-01-23 17:48:34 -05:00
|
|
|
|
if !BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
|
|
|
|
EXTRA_DIST += \
|
|
|
|
|
guix/scripts/offload.scm
|
|
|
|
|
|
|
|
|
|
endif !BUILD_DAEMON_OFFLOAD
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 15:52:21 -04:00
|
|
|
|
CLEANFILES = \
|
|
|
|
|
$(GOBJECTS) \
|
2013-05-11 16:42:38 -04:00
|
|
|
|
$(SCM_TESTS:tests/%.scm=%.log)
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
2015-01-20 08:55:06 -05: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
|
2016-08-01 16:52:54 -04:00
|
|
|
|
# the whole thing. Likewise, set 'XDG_CACHE_HOME' to avoid loading possibly
|
|
|
|
|
# stale files from ~/.cache/guile/ccache.
|
2015-11-05 17:42:45 -05:00
|
|
|
|
%.go: make-go ; @:
|
2016-11-16 10:34:17 -05:00
|
|
|
|
make-go: $(MODULES) guix/config.scm $(dist_noinst_DATA)
|
2015-11-05 17:42:45 -05:00
|
|
|
|
$(AM_V_at)echo "Compiling Scheme modules..." ; \
|
2015-01-20 08:55:06 -05:00
|
|
|
|
unset GUILE_LOAD_COMPILED_PATH ; \
|
2016-08-01 16:52:54 -04:00
|
|
|
|
XDG_CACHE_HOME=/nowhere \
|
2015-11-05 17:42:45 -05:00
|
|
|
|
host=$(host) srcdir="$(top_srcdir)" \
|
2012-11-12 18:33:43 -05:00
|
|
|
|
$(top_builddir)/pre-inst-env \
|
2015-11-05 17:42:45 -05:00
|
|
|
|
$(GUILE) -L "$(top_builddir)" -L "$(top_srcdir)" \
|
|
|
|
|
--no-auto-compile \
|
|
|
|
|
-s "$(top_srcdir)"/build-aux/compile-all.scm $^
|
2012-06-13 12:01:25 -04:00
|
|
|
|
|
|
|
|
|
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.
|
2017-03-20 17:13:27 -04:00
|
|
|
|
guix_install_go_files = install-nobase_nodist_guileobjectDATA
|
2012-06-13 12:01:25 -04:00
|
|
|
|
$(guix_install_go_files): install-nobase_dist_guilemoduleDATA
|
2012-06-29 16:22:48 -04:00
|
|
|
|
|
2014-12-09 05:44:21 -05:00
|
|
|
|
# The above trick doesn't work for 'config.go' because both 'config.scm' and
|
2017-03-20 17:13:27 -04:00
|
|
|
|
# 'config.go' are listed in $(nobase_nodist_guileobject_DATA). Thus, give it
|
2014-12-09 05:44:21 -05:00
|
|
|
|
# special treatment.
|
|
|
|
|
install-data-hook: set-bootstrap-executable-permissions
|
2017-03-20 17:13:27 -04:00
|
|
|
|
touch "$(DESTDIR)$(guileobjectdir)/guix/config.go"
|
2014-12-09 05:44:21 -05:00
|
|
|
|
|
|
|
|
|
|
2014-06-13 11:30:40 -04:00
|
|
|
|
SUBDIRS = po/guix po/packages
|
2014-07-24 17:38:39 -04:00
|
|
|
|
BUILT_SOURCES =
|
2013-08-29 15:20:51 -04:00
|
|
|
|
|
2016-04-21 12:07:52 -04:00
|
|
|
|
include doc/local.mk
|
2012-10-13 10:05:01 -04:00
|
|
|
|
|
2012-12-03 17:04:47 -05:00
|
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
2016-04-21 12:07:52 -04:00
|
|
|
|
include nix/local.mk
|
2012-12-03 17:04:47 -05:00
|
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
|
2012-06-29 16:22:48 -04:00
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2016-03-19 09:45:58 -04:00
|
|
|
|
|
|
|
|
|
# Pass an explicit '--localstatedir' so that configure does not error out if
|
2017-05-08 08:56:36 -04:00
|
|
|
|
# it finds an existing installation with a different localstatedir. Inherit
|
|
|
|
|
# 'ac_cv_guix_test_root' so that "make check" in $(distdir) does not have to
|
|
|
|
|
# repopulate the whole store, and to make sure $(GUIX_TEST_ROOT) is short
|
|
|
|
|
# enough for shebangs.
|
2012-11-03 16:11:02 -04:00
|
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
2016-03-19 09:45:58 -04:00
|
|
|
|
--localstatedir="$$dc_install_base/var" \
|
2012-11-03 16:43:30 -04:00
|
|
|
|
--with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
|
2014-05-17 09:41:56 -04:00
|
|
|
|
--with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
|
2012-12-05 18:04:43 -05:00
|
|
|
|
--with-nix-prefix="$(NIX_PREFIX)" \
|
2017-05-08 08:56:36 -04:00
|
|
|
|
--enable-daemon \
|
|
|
|
|
ac_cv_guix_test_root="$(GUIX_TEST_ROOT)"
|
2013-04-17 12:09:43 -04:00
|
|
|
|
|
2017-04-07 16:41:46 -04:00
|
|
|
|
# The self-contained tarball. Add 'glibc-utf8-locales' along with glibc just
|
|
|
|
|
# so 'etc/profile' defines 'GUIX_LOCPATH' pointing to a valid set of locales.
|
2015-04-14 17:19:01 -04:00
|
|
|
|
guix-binary.%.tar.xz:
|
2017-05-06 17:42:47 -04:00
|
|
|
|
$(AM_V_GEN)GUIX_PACKAGE_PATH= \
|
|
|
|
|
tarball=`$(top_builddir)/pre-inst-env guix pack -K -C xz \
|
|
|
|
|
-s "$*" --localstatedir guix glibc-utf8-locales \
|
|
|
|
|
-e '(@@ (gnu packages commencement) glibc-final)'` ; \
|
2017-03-12 11:48:40 -04:00
|
|
|
|
cp "$$tarball" "$@.tmp" ; mv "$@.tmp" "$@"
|
2015-04-14 17:19:01 -04:00
|
|
|
|
|
|
|
|
|
|
2017-05-14 05:46:08 -04:00
|
|
|
|
dist-hook: $(distdir)/ChangeLog gen-AUTHORS gen-tarball-version
|
2015-07-04 05:27:26 -04:00
|
|
|
|
dist-hook: assert-no-store-file-names
|
|
|
|
|
|
2014-06-18 09:03:13 -04:00
|
|
|
|
distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
|
2013-05-12 10:14:25 -04:00
|
|
|
|
|
2017-05-04 15:54:13 -04:00
|
|
|
|
EXTRA_DIST += $(top_srcdir)/.version
|
|
|
|
|
BUILT_SOURCES += $(top_srcdir)/.version
|
|
|
|
|
$(top_srcdir)/.version:
|
|
|
|
|
echo $(VERSION) > "$@-t" && mv "$@-t" "$@"
|
|
|
|
|
|
|
|
|
|
gen-tarball-version:
|
|
|
|
|
echo $(VERSION) > "$(distdir)/.tarball-version"
|
|
|
|
|
|
2017-05-14 05:46:08 -04:00
|
|
|
|
gen-ChangeLog $(distdir)/ChangeLog:
|
2016-01-24 13:04:53 -05:00
|
|
|
|
$(AM_V_GEN)if test -d .git; then \
|
2013-05-12 10:14:25 -04:00
|
|
|
|
$(top_srcdir)/build-aux/gitlog-to-changelog \
|
|
|
|
|
> $(distdir)/cl-t; \
|
|
|
|
|
rm -f $(distdir)/ChangeLog; \
|
|
|
|
|
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
|
|
|
|
|
fi
|
|
|
|
|
|
2015-07-04 05:27:26 -04:00
|
|
|
|
gen-AUTHORS:
|
2016-01-24 13:04:53 -05:00
|
|
|
|
$(AM_V_GEN)if test -d .git; then \
|
2015-07-19 15:50:57 -04:00
|
|
|
|
rm -f "$(distdir)/AUTHORS"; \
|
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
"$(top_srcdir)/build-aux/generate-authors.scm" \
|
|
|
|
|
"$(top_srcdir)" "$(distdir)/AUTHORS"; \
|
|
|
|
|
fi
|
2015-07-04 05:27:26 -04:00
|
|
|
|
|
2017-05-08 18:15:54 -04:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Release management.
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
releasedir = release-$(PACKAGE_VERSION)
|
|
|
|
|
|
|
|
|
|
PACKAGE_FULL_TARNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
|
|
|
|
|
|
|
|
|
|
# List of source tarballs produced. This must be kept in sync with the
|
|
|
|
|
# 'dist-' options of 'AM_INIT_AUTOMAKE' in 'configure.ac'.
|
|
|
|
|
SOURCE_TARBALLS = \
|
|
|
|
|
$(foreach ext,tar.gz,$(PACKAGE_FULL_TARNAME).$(ext))
|
|
|
|
|
|
|
|
|
|
# Systems supported by Guix.
|
2017-05-09 06:51:30 -04:00
|
|
|
|
SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux armhf-linux
|
2017-05-08 18:15:54 -04:00
|
|
|
|
|
|
|
|
|
# Guix binary tarballs.
|
|
|
|
|
BINARY_TARBALLS = \
|
|
|
|
|
$(foreach system,$(SUPPORTED_SYSTEMS),guix-binary.$(system).tar.xz)
|
|
|
|
|
|
|
|
|
|
# Systems supported by GuixSD.
|
2017-05-09 06:51:30 -04:00
|
|
|
|
GUIXSD_SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux
|
2017-05-08 18:15:54 -04:00
|
|
|
|
|
2017-05-13 20:44:36 -04:00
|
|
|
|
# Systems for which we build GuixSD VMs.
|
|
|
|
|
GUIXSD_VM_SYSTEMS ?= x86_64-linux
|
|
|
|
|
|
2017-05-08 18:15:54 -04:00
|
|
|
|
# Prefix of the GuixSD installation image file name.
|
2017-08-05 06:12:21 -04:00
|
|
|
|
GUIXSD_IMAGE_BASE = guixsd-install-$(PACKAGE_VERSION)
|
2017-05-08 18:15:54 -04:00
|
|
|
|
|
2017-05-13 20:44:36 -04:00
|
|
|
|
# Prefix of the GuixSD VM image file name.
|
|
|
|
|
GUIXSD_VM_IMAGE_BASE = guixsd-vm-image-$(PACKAGE_VERSION)
|
|
|
|
|
|
|
|
|
|
# Size of the VM image (for x86_64 typically).
|
|
|
|
|
GUIXSD_VM_IMAGE_SIZE ?= 2GiB
|
|
|
|
|
|
2017-05-08 18:15:54 -04:00
|
|
|
|
# The release process works in several phases:
|
|
|
|
|
#
|
|
|
|
|
# 0. We assume the developer created a 'vX.Y' tag.
|
|
|
|
|
# 1. Build the source tarball.
|
|
|
|
|
# 2. Update the 'guix' package so that it corresponds to the 'vX.Y' tag.
|
|
|
|
|
# 3. Build the binary tarballs for that 'guix' package.
|
|
|
|
|
# 4. Update the 'guix' package again.
|
|
|
|
|
# 5. Build the GuixSD installation images. The images will run 'guix'
|
|
|
|
|
# corresponding to 'vX.Y' + 1 commit, and they will install 'vX.Y'.
|
|
|
|
|
#
|
|
|
|
|
# This 'release' target takes care of everything and copies the resulting
|
|
|
|
|
# files to $(releasedir).
|
2017-05-14 16:14:59 -04:00
|
|
|
|
#
|
|
|
|
|
# XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
|
|
|
|
|
# issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
|
|
|
|
|
release: dist
|
2017-05-09 06:51:30 -04:00
|
|
|
|
cd po; git checkout .
|
|
|
|
|
@if ! git diff-index --quiet HEAD; then \
|
|
|
|
|
echo "There are uncommitted changes; stopping." >&2 ; \
|
|
|
|
|
exit 1 ; \
|
|
|
|
|
fi
|
2017-05-08 18:15:54 -04:00
|
|
|
|
$(MKDIR_P) "$(releasedir)"
|
|
|
|
|
rm -f "$(releasedir)"/*
|
|
|
|
|
mv $(SOURCE_TARBALLS) "$(releasedir)"
|
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
$(top_srcdir)/build-aux/update-guix-package.scm \
|
|
|
|
|
"`git rev-parse HEAD`" "$(PACKAGE_VERSION)"
|
|
|
|
|
git add $(top_srcdir)/gnu/packages/package-management.scm
|
|
|
|
|
git commit -m "gnu: guix: Update to $(PACKAGE_VERSION)."
|
|
|
|
|
rm -f $(BINARY_TARBALLS)
|
|
|
|
|
$(MAKE) $(BINARY_TARBALLS)
|
|
|
|
|
for system in $(SUPPORTED_SYSTEMS) ; do \
|
|
|
|
|
mv "guix-binary.$$system.tar.xz" \
|
|
|
|
|
"$(releasedir)/guix-binary-$(PACKAGE_VERSION).$$system.tar.xz" ; \
|
|
|
|
|
done
|
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
$(top_srcdir)/build-aux/update-guix-package.scm \
|
|
|
|
|
"`git rev-parse HEAD`"
|
|
|
|
|
git add $(top_srcdir)/gnu/packages/package-management.scm
|
|
|
|
|
git commit -m "gnu: guix: Update to `git rev-parse HEAD | cut -c1-7`."
|
|
|
|
|
for system in $(GUIXSD_SUPPORTED_SYSTEMS) ; do \
|
|
|
|
|
image=`$(top_builddir)/pre-inst-env \
|
|
|
|
|
guix system disk-image \
|
2017-08-05 06:12:21 -04:00
|
|
|
|
--file-system-type=iso9660 \
|
2017-05-14 16:14:00 -04:00
|
|
|
|
--system=$$system \
|
2017-05-08 18:15:54 -04:00
|
|
|
|
gnu/system/install.scm` ; \
|
|
|
|
|
if [ ! -f "$$image" ] ; then \
|
|
|
|
|
echo "failed to produced GuixSD installation image for $$system" >&2 ; \
|
|
|
|
|
exit 1 ; \
|
|
|
|
|
fi ; \
|
|
|
|
|
xz < "$$image" > "$(releasedir)/$(GUIXSD_IMAGE_BASE).$$system.xz.tmp" ; \
|
|
|
|
|
mv "$(releasedir)/$(GUIXSD_IMAGE_BASE).$$system.xz.tmp" \
|
|
|
|
|
"$(releasedir)/$(GUIXSD_IMAGE_BASE).$$system.xz" ; \
|
|
|
|
|
done
|
2017-05-13 20:44:36 -04:00
|
|
|
|
for system in $(GUIXSD_VM_SYSTEMS) ; do \
|
|
|
|
|
image=`$(top_builddir)/pre-inst-env \
|
|
|
|
|
guix system vm-image \
|
|
|
|
|
--system=$$system \
|
|
|
|
|
--image-size=$(GUIXSD_VM_IMAGE_SIZE) \
|
|
|
|
|
gnu/system/examples/vm-image.tmpl` ; \
|
|
|
|
|
if [ ! -f "$$image" ] ; then \
|
|
|
|
|
echo "failed to produced GuixSD VM image for $$system" >&2 ; \
|
|
|
|
|
exit 1 ; \
|
|
|
|
|
fi ; \
|
|
|
|
|
xz < "$$image" > "$(releasedir)/$(GUIXSD_VM_IMAGE_BASE).$$system.xz.tmp" ; \
|
|
|
|
|
mv "$(releasedir)/$(GUIXSD_VM_IMAGE_BASE).$$system.xz.tmp" \
|
|
|
|
|
"$(releasedir)/$(GUIXSD_VM_IMAGE_BASE).$$system.xz" ; \
|
|
|
|
|
done
|
2017-05-09 06:51:30 -04:00
|
|
|
|
@echo
|
|
|
|
|
@echo "Congratulations! All the release files are now in $(releasedir)."
|
|
|
|
|
@echo
|
2017-05-08 18:15:54 -04:00
|
|
|
|
|
2017-05-06 16:59:05 -04:00
|
|
|
|
update-guix-package:
|
|
|
|
|
git rev-parse HEAD
|
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
$(top_srcdir)/build-aux/update-guix-package.scm \
|
|
|
|
|
"`git rev-parse HEAD`"
|
|
|
|
|
|
2017-05-18 10:21:35 -04:00
|
|
|
|
# Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
|
|
|
|
|
# Package data from this checkout is used by 'update-NEWS.scm'.
|
|
|
|
|
GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
|
|
|
|
|
|
|
|
|
|
update-NEWS: $(GOBJECTS)
|
|
|
|
|
$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
$(top_srcdir)/build-aux/update-NEWS.scm \
|
|
|
|
|
$(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
|
|
|
|
|
|
2014-03-09 17:09:12 -04:00
|
|
|
|
# Make sure we're not shipping a file that embeds a local /gnu/store file name.
|
2017-05-14 05:46:08 -04:00
|
|
|
|
assert-no-store-file-names: $(distdir)/ChangeLog
|
2016-01-24 13:04:53 -05:00
|
|
|
|
$(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \
|
2016-10-12 09:26:01 -04:00
|
|
|
|
--exclude=*.info-[0-9] --exclude=*.dot \
|
|
|
|
|
--exclude=*.eps --exclude-dir=bootstrap \
|
|
|
|
|
--exclude=guix-prettify.el \
|
2016-12-16 18:21:23 -05:00
|
|
|
|
--exclude=ChangeLog \
|
2016-10-12 09:26:01 -04:00
|
|
|
|
-E "$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
|
2013-05-12 10:26:12 -04:00
|
|
|
|
then \
|
|
|
|
|
echo "error: store file names embedded in the distribution" >&2 ; \
|
|
|
|
|
exit 1 ; \
|
|
|
|
|
fi
|
|
|
|
|
|
2013-07-15 17:06:14 -04:00
|
|
|
|
# Make sure hydra.gnu.org has the important binaries.
|
2016-04-27 09:09:15 -04:00
|
|
|
|
assert-binaries-available: $(GOBJECTS)
|
2016-01-24 13:04:53 -05:00
|
|
|
|
$(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
|
2013-07-15 17:06:14 -04:00
|
|
|
|
"$(top_srcdir)/build-aux/check-available-binaries.scm"
|
|
|
|
|
|
2014-06-18 09:03:13 -04:00
|
|
|
|
# Make sure the final inputs don't refer to bootstrap tools.
|
2016-04-27 09:09:15 -04:00
|
|
|
|
assert-final-inputs-self-contained: $(GOBJECTS)
|
2016-01-24 13:04:53 -05:00
|
|
|
|
$(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
|
2014-06-18 09:03:13 -04:00
|
|
|
|
"$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
|
|
|
|
|
|
2016-04-13 13:18:03 -04:00
|
|
|
|
# Compute the Hydra jobs and write them in the target file.
|
|
|
|
|
hydra-jobs.scm: $(GOBJECTS)
|
|
|
|
|
$(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
|
|
|
|
|
$(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
"$(top_srcdir)/build-aux/hydra/evaluate.scm" \
|
|
|
|
|
"$(top_srcdir)/build-aux/hydra/gnu-system.scm" > "$@.tmp"
|
2016-05-12 17:15:37 -04:00
|
|
|
|
$(AM_V_at)mv "$@.tmp" "$@"
|
2016-04-13 13:18:03 -04:00
|
|
|
|
|
2017-09-27 16:44:56 -04:00
|
|
|
|
# Compute the Cuirass jobs and write them in the target file.
|
|
|
|
|
cuirass-jobs.scm: $(GOBJECTS)
|
|
|
|
|
$(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
|
|
|
|
|
$(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
|
|
|
|
|
"$(top_srcdir)/build-aux/hydra/evaluate.scm" \
|
|
|
|
|
"$(top_srcdir)/build-aux/cuirass/gnu-system.scm" \
|
|
|
|
|
cuirass > "$@.tmp"
|
|
|
|
|
$(AM_V_at)mv "$@.tmp" "$@"
|
|
|
|
|
|
2017-05-04 15:54:13 -04:00
|
|
|
|
.PHONY: gen-ChangeLog gen-AUTHORS gen-tarball-version
|
2013-07-15 17:06:14 -04:00
|
|
|
|
.PHONY: assert-no-store-file-names assert-binaries-available
|
2014-06-18 09:03:13 -04:00
|
|
|
|
.PHONY: assert-final-inputs-self-contained
|
2017-05-04 15:54:13 -04:00
|
|
|
|
.PHONY: clean-go make-go
|
2017-05-18 10:21:35 -04:00
|
|
|
|
.PHONY: update-guix-package update-NEWS release
|
2016-01-24 12:48:29 -05:00
|
|
|
|
|
|
|
|
|
## -------------- ##
|
|
|
|
|
## Silent rules. ##
|
|
|
|
|
## -------------- ##
|
|
|
|
|
|
|
|
|
|
AM_V_DL = $(AM_V_DL_$(V))
|
|
|
|
|
AM_V_DL_ = $(AM_V_DL_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
|
AM_V_DL_0 = @echo " DL " $@;
|
2016-01-24 12:55:38 -05:00
|
|
|
|
|
|
|
|
|
AM_V_DOT = $(AM_V_DOT_$(V))
|
|
|
|
|
AM_V_DOT_ = $(AM_V_DOT_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
|
AM_V_DOT_0 = @echo " DOT " $@;
|
2016-01-24 12:57:49 -05:00
|
|
|
|
|
2016-01-24 13:00:27 -05:00
|
|
|
|
AM_V_HELP2MAN = $(AM_V_HELP2MAN_$(V))
|
|
|
|
|
AM_V_HELP2MAN_ = $(AM_V_HELP2MAN_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
|
AM_V_HELP2MAN_0 = @echo " HELP2MAN" $@;
|