2013-01-05 23:47:50 +00:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
|
|
|
# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2013-01-17 21:09:15 +00:00
|
|
|
# Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
2012-06-13 16:01:25 +00:00
|
|
|
#
|
2013-01-05 23:47:50 +00:00
|
|
|
# This file is part of GNU Guix.
|
2012-06-13 16:01:25 +00:00
|
|
|
#
|
2013-01-05 23:47:50 +00:00
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-13 16:01:25 +00: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 23:47:50 +00:00
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
2012-06-13 16:01:25 +00: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 23:47:50 +00:00
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2012-10-24 21:10:09 +00: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 09:15:25 +00:00
|
|
|
scripts/guix
|
2012-06-30 22:56:24 +00:00
|
|
|
|
2013-02-12 00:23:20 +00: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 21:19:03 +00:00
|
|
|
include gnu-system.am
|
|
|
|
|
2012-06-13 16:01:25 +00:00
|
|
|
MODULES = \
|
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 09:15:25 +00:00
|
|
|
guix/scripts/build.scm \
|
|
|
|
guix/scripts/download.scm \
|
|
|
|
guix/scripts/import.scm \
|
|
|
|
guix/scripts/package.scm \
|
|
|
|
guix/scripts/gc.scm \
|
2013-04-21 17:20:00 +00:00
|
|
|
guix/scripts/hash.scm \
|
2013-02-20 22:46:38 +00:00
|
|
|
guix/scripts/pull.scm \
|
2013-04-02 08:44:20 +00:00
|
|
|
guix/scripts/substitute-binary.scm \
|
2013-04-24 21:48:36 +00:00
|
|
|
guix/scripts/refresh.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 21:33:28 +00:00
|
|
|
guix/base32.scm \
|
2013-05-12 13:46:16 +00:00
|
|
|
guix/records.scm \
|
2013-07-01 21:28:21 +00:00
|
|
|
guix/hash.scm \
|
2012-07-01 13:10:50 +00:00
|
|
|
guix/utils.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 20:29:08 +00:00
|
|
|
guix/serialization.scm \
|
|
|
|
guix/nar.scm \
|
2012-06-13 16:01:25 +00:00
|
|
|
guix/derivations.scm \
|
2012-11-12 22:10:26 +00:00
|
|
|
guix/download.scm \
|
2012-12-04 23:02:22 +00:00
|
|
|
guix/gnu-maintenance.scm \
|
2012-12-08 01:48:17 +00:00
|
|
|
guix/licenses.scm \
|
2012-06-27 21:58:07 +00:00
|
|
|
guix/build-system.scm \
|
2013-03-26 21:14:24 +00:00
|
|
|
guix/build-system/cmake.scm \
|
2012-06-27 21:58:07 +00:00
|
|
|
guix/build-system/gnu.scm \
|
2013-03-03 23:41:46 +00:00
|
|
|
guix/build-system/perl.scm \
|
2013-05-08 22:44:28 +00:00
|
|
|
guix/build-system/python.scm \
|
2012-09-10 20:47:10 +00:00
|
|
|
guix/build-system/trivial.scm \
|
2012-09-12 21:47:49 +00:00
|
|
|
guix/ftp-client.scm \
|
2013-07-14 14:35:37 +00:00
|
|
|
guix/http-client.scm \
|
2013-04-24 21:48:36 +00:00
|
|
|
guix/gnupg.scm \
|
2012-06-13 16:01:25 +00:00
|
|
|
guix/store.scm \
|
2012-10-31 23:50:01 +00:00
|
|
|
guix/ui.scm \
|
2012-11-12 22:10:26 +00:00
|
|
|
guix/build/download.scm \
|
2013-03-26 21:14:24 +00:00
|
|
|
guix/build/cmake-build-system.scm \
|
2012-06-13 16:01:25 +00:00
|
|
|
guix/build/gnu-build-system.scm \
|
2013-08-24 15:17:06 +00:00
|
|
|
guix/build/gnu-dist.scm \
|
2013-08-28 22:04:04 +00:00
|
|
|
guix/build/linux-initrd.scm \
|
2013-03-03 23:41:46 +00:00
|
|
|
guix/build/perl-build-system.scm \
|
2013-05-08 22:44:28 +00:00
|
|
|
guix/build/python-build-system.scm \
|
2012-06-15 08:03:08 +00:00
|
|
|
guix/build/utils.scm \
|
2012-10-29 21:39:46 +00:00
|
|
|
guix/build/union.scm \
|
2013-05-08 21:24:05 +00:00
|
|
|
guix/build/rpath.scm \
|
2012-06-27 23:24:34 +00:00
|
|
|
guix/packages.scm \
|
2012-11-04 18:38:31 +00:00
|
|
|
guix/snix.scm \
|
2012-06-27 23:24:34 +00: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 21:19:03 +00:00
|
|
|
$(GNU_SYSTEM_MODULES)
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2013-02-17 21:18:16 +00: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
|
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 21:37:22 +00:00
|
|
|
|
2013-07-17 09:05:19 +00:00
|
|
|
|
2012-11-03 20:07:52 +00:00
|
|
|
GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2012-08-22 15:24:38 +00:00
|
|
|
nobase_dist_guilemodule_DATA = $(MODULES)
|
2013-07-17 09:05:19 +00:00
|
|
|
nobase_nodist_guilemodule_DATA = $(GOBJECTS) guix/config.scm
|
2012-08-22 15:24:38 +00:00
|
|
|
|
2013-07-17 09:05:19 +00: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 19:44:25 +00:00
|
|
|
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2013-04-29 19:52:21 +00: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 21:33:28 +00:00
|
|
|
tests/base32.scm \
|
2013-07-02 20:38:03 +00:00
|
|
|
tests/hash.scm \
|
2012-06-13 16:01:25 +00:00
|
|
|
tests/builders.scm \
|
|
|
|
tests/derivations.scm \
|
2013-02-01 12:16:27 +00:00
|
|
|
tests/ui.scm \
|
2013-05-12 13:46:16 +00:00
|
|
|
tests/records.scm \
|
2012-06-27 23:24:34 +00:00
|
|
|
tests/utils.scm \
|
2012-07-01 15:32:03 +00:00
|
|
|
tests/build-utils.scm \
|
2012-10-29 21:39:46 +00:00
|
|
|
tests/packages.scm \
|
2012-11-04 18:38:31 +00:00
|
|
|
tests/snix.scm \
|
2012-12-09 22:52:59 +00:00
|
|
|
tests/store.scm \
|
2013-04-08 20:54:08 +00:00
|
|
|
tests/nar.scm \
|
2013-04-29 19:52:21 +00:00
|
|
|
tests/union.scm
|
|
|
|
|
|
|
|
SH_TESTS = \
|
2012-11-01 00:46:15 +00:00
|
|
|
tests/guix-build.sh \
|
2012-11-07 23:13:25 +00:00
|
|
|
tests/guix-download.sh \
|
2013-01-05 23:28:06 +00:00
|
|
|
tests/guix-gc.sh \
|
2013-05-11 13:09:56 +00:00
|
|
|
tests/guix-hash.sh \
|
2012-11-01 00:46:15 +00:00
|
|
|
tests/guix-package.sh
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2013-09-22 21:23:38 +00:00
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
|
|
SH_TESTS += tests/guix-register.sh
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
|
|
|
|
2013-04-29 19:52:21 +00:00
|
|
|
TESTS = $(SCM_TESTS) $(SH_TESTS)
|
|
|
|
|
2012-10-31 22:27:51 +00:00
|
|
|
TEST_EXTENSIONS = .scm .sh
|
|
|
|
|
2012-11-13 21:57:50 +00:00
|
|
|
AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)"
|
|
|
|
|
2012-12-05 23:03:26 +00:00
|
|
|
SCM_LOG_COMPILER = $(top_builddir)/test-env $(GUILE)
|
2012-10-31 22:27:51 +00:00
|
|
|
AM_SCM_LOG_FLAGS = --no-auto-compile -L "$(top_srcdir)"
|
|
|
|
|
2012-12-05 23:03:26 +00:00
|
|
|
SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
|
2012-10-31 22:27:51 +00:00
|
|
|
AM_SH_LOG_FLAGS = -x -e
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2013-05-11 20:37:33 +00: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)
|
|
|
|
|
|
|
|
|
2012-08-14 16:28:04 +00:00
|
|
|
EXTRA_DIST = \
|
2012-10-25 21:44:27 +00:00
|
|
|
HACKING \
|
2012-11-18 16:46:55 +00:00
|
|
|
ROADMAP \
|
2012-11-18 16:10:47 +00:00
|
|
|
TODO \
|
distro: Add the `guile', `typesetting', and `databases' package modules.
* distro.scm (package-files): Adjust PREFIX-LEN to use the top-level
directory, not %DISTRO-MODULE-DIRECTORY.
* distro/packages/base.scm (guile-reader, guile-reader/guile-1.8,
guile-reader/guile-2.0, lout, recutils): Move to...
* distro/packages/guile.scm, distro/packages/typesetting.scm,
distro/packages/databases.scm: ... here. New files.
* Makefile.am (MODULES): Add them.
(EXTRA_DIST): Add `.dir-locals.el'.
* .dir-locals.el: New file, with settings formerly in `base.scm'.
2012-09-26 20:17:41 +00:00
|
|
|
.dir-locals.el \
|
2013-06-20 20:49:34 +00:00
|
|
|
build-aux/hydra/gnu-system.scm \
|
2013-08-24 15:29:55 +00:00
|
|
|
build-aux/hydra/guix.scm \
|
2013-07-15 21:06:14 +00:00
|
|
|
build-aux/check-available-binaries.scm \
|
2012-10-17 19:44:25 +00:00
|
|
|
build-aux/download.scm \
|
2013-07-09 22:27:53 +00:00
|
|
|
build-aux/list-packages.scm \
|
2013-04-17 16:09:43 +00:00
|
|
|
build-aux/sync-synopses.scm \
|
2013-07-17 09:05:19 +00:00
|
|
|
srfi/srfi-37.scm.in \
|
2012-08-14 16:28:04 +00:00
|
|
|
srfi/srfi-64.scm \
|
|
|
|
srfi/srfi-64.upstream.scm \
|
2012-08-14 16:44:52 +00:00
|
|
|
tests/test.drv \
|
2012-08-14 16:28:04 +00:00
|
|
|
build-aux/config.rpath \
|
2012-12-03 21:43:26 +00:00
|
|
|
bootstrap \
|
2012-08-14 16:28:04 +00:00
|
|
|
release.nix \
|
|
|
|
$(TESTS)
|
2012-07-05 22:55:07 +00:00
|
|
|
|
2013-04-29 19:52:21 +00:00
|
|
|
CLEANFILES = \
|
|
|
|
$(GOBJECTS) \
|
2013-05-11 20:42:38 +00:00
|
|
|
$(SCM_TESTS:tests/%.scm=%.log)
|
2012-06-13 16:01:25 +00:00
|
|
|
|
2013-04-29 20:00:24 +00:00
|
|
|
AM_V_GUILEC = $(AM_V_GUILEC_$(V))
|
|
|
|
AM_V_GUILEC_ = $(AM_V_GUILEC_$(AM_DEFAULT_VERBOSITY))
|
|
|
|
AM_V_GUILEC_0 = @echo " GUILEC" $@;
|
|
|
|
|
2013-02-08 23:05:24 +00: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 16:01:25 +00:00
|
|
|
.scm.go:
|
2013-04-29 20:00:24 +00:00
|
|
|
$(AM_V_GUILEC)$(MKDIR_P) `dirname "$@"` ; \
|
2013-02-08 23:05:24 +00:00
|
|
|
LC_ALL=C \
|
2012-11-12 23:33:43 +00:00
|
|
|
$(top_builddir)/pre-inst-env \
|
|
|
|
$(GUILD) compile -L "$(top_builddir)" -L "$(top_srcdir)" \
|
|
|
|
-Wformat -Wunbound-variable -Warity-mismatch \
|
|
|
|
--target="$(host)" \
|
2012-06-13 16:01:25 +00: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 20:22:48 +00:00
|
|
|
|
2013-08-29 19:20:51 +00:00
|
|
|
SUBDIRS = po
|
|
|
|
|
|
|
|
include doc.am
|
2012-10-13 14:05:01 +00:00
|
|
|
|
2012-12-03 22:04:47 +00:00
|
|
|
if BUILD_DAEMON
|
|
|
|
|
|
|
|
include daemon.am
|
|
|
|
|
|
|
|
endif BUILD_DAEMON
|
|
|
|
|
2012-06-29 20:22:48 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2012-11-03 20:11:02 +00:00
|
|
|
AM_DISTCHECK_CONFIGURE_FLAGS = \
|
2012-11-03 20:43:30 +00:00
|
|
|
--with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
|
2012-12-05 23:04:43 +00:00
|
|
|
--with-nix-prefix="$(NIX_PREFIX)" \
|
|
|
|
--enable-daemon
|
2013-04-17 16:09:43 +00:00
|
|
|
|
2013-05-12 14:26:12 +00:00
|
|
|
dist-hook: sync-synopses gen-ChangeLog assert-no-store-file-names
|
2013-07-15 21:06:14 +00:00
|
|
|
distcheck-hook: assert-binaries-available
|
2013-05-12 14:14:25 +00:00
|
|
|
|
|
|
|
sync-synopses:
|
2013-04-17 16:09:43 +00:00
|
|
|
-$(top_builddir)/pre-inst-env $(GUILE) \
|
|
|
|
$(top_srcdir)/build-aux/sync-synopses.scm
|
2013-05-12 14:14:25 +00: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
|
|
|
|
|
2013-05-12 14:26:12 +00:00
|
|
|
# Make sure we're not shipping a file that embeds a local /nix/store file name.
|
|
|
|
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 21:06:14 +00: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"
|
|
|
|
|
|
|
|
.PHONY: sync-synopses gen-ChangeLog
|
|
|
|
.PHONY: assert-no-store-file-names assert-binaries-available
|