build: Add GUIX_GIT_KEYRING variable for make authenticate.
[jackhill/guix/guix.git] / Makefile.am
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic Courtès <ludo@gnu.org>
3 # Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 # Copyright © 2015, 2017 Alex Kost <alezost@gmail.com>
5 # Copyright © 2016, 2018 Mathieu Lirzin <mthl@gnu.org>
6 # Copyright © 2016, 2017, 2018, 2019 Mark H Weaver <mhw@netris.org>
7 # Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com>
8 # Copyright © 2017 Leo Famulari <leo@famulari.name>
9 # Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
10 # Copyright © 2017, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
11 # Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
12 # Copyright © 2018 Nikita <nikita@n0.is>
13 # Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
14 # Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
15 # Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
16 # Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
17 #
18 # This file is part of GNU Guix.
19 #
20 # GNU Guix is free software; you can redistribute it and/or modify it
21 # under the terms of the GNU General Public License as published by
22 # the Free Software Foundation; either version 3 of the License, or (at
23 # your option) any later version.
24 #
25 # GNU Guix is distributed in the hope that it will be useful, but
26 # WITHOUT ANY WARRANTY; without even the implied warranty of
27 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 # GNU General Public License for more details.
29 #
30 # You should have received a copy of the GNU General Public License
31 # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
32
33 MSGMERGE_UPDATE = @MSGMERGE@ --update
34
35 bin_SCRIPTS = scripts/guix
36
37 # Handle substitution of fully-expanded Autoconf variables.
38 do_subst = $(SED) \
39 -e 's,[@]GUILE[@],$(GUILE),g' \
40 -e 's,[@]guilemoduledir[@],$(guilemoduledir),g' \
41 -e 's,[@]guileobjectdir[@],$(guileobjectdir),g' \
42 -e 's,[@]localedir[@],$(localedir),g'
43
44 scripts/guix: scripts/guix.in Makefile
45 $(AM_V_at)rm -f $@ $@-t
46 $(AM_V_at)$(MKDIR_P) "$(@D)"
47 $(AM_V_GEN)$(do_subst) < "$(srcdir)/$@.in" > "$@-t"
48 $(AM_V_at)chmod a+x,a-w "$@-t" && mv -f "$@-t" "$@"
49
50 # This is our variant of the 'guile' executable, one that doesn't complain
51 # about locales.
52 pkglibexec_PROGRAMS = guile
53 guile_SOURCES = gnu/packages/aux-files/guile-launcher.c
54 guile_LDADD = $(GUILE_LIBS)
55 guile_CFLAGS = $(GUILE_CFLAGS)
56
57 # Have the 'guix' command refer to our 'guile'.
58 install-exec-hook:
59 $(SED) -i "$(DESTDIR)$(bindir)/guix" \
60 -e 's,^#![[:graph:]]\+,#!$(pkglibexecdir)/guile,g'
61
62 nodist_noinst_SCRIPTS = \
63 pre-inst-env \
64 test-env
65
66 # Modules that are not compiled but are installed nonetheless, such as
67 # build-side modules with unusual dependencies.
68 MODULES_NOT_COMPILED = \
69 guix/build/po.scm \
70 guix/man-db.scm
71
72 include gnu/local.mk
73 include po/doc/local.mk
74
75 MODULES = \
76 guix/base16.scm \
77 guix/base32.scm \
78 guix/base64.scm \
79 guix/ci.scm \
80 guix/cpio.scm \
81 guix/deprecation.scm \
82 guix/docker.scm \
83 guix/records.scm \
84 guix/openpgp.scm \
85 guix/pki.scm \
86 guix/progress.scm \
87 guix/combinators.scm \
88 guix/memoization.scm \
89 guix/utils.scm \
90 guix/sets.scm \
91 guix/modules.scm \
92 guix/download.scm \
93 guix/discovery.scm \
94 guix/android-repo-download.scm \
95 guix/bzr-download.scm \
96 guix/git-download.scm \
97 guix/hg-download.scm \
98 guix/swh.scm \
99 guix/monads.scm \
100 guix/monad-repl.scm \
101 guix/gexp.scm \
102 guix/profiles.scm \
103 guix/serialization.scm \
104 guix/nar.scm \
105 guix/derivations.scm \
106 guix/grafts.scm \
107 guix/repl.scm \
108 guix/inferior.scm \
109 guix/describe.scm \
110 guix/quirks.scm \
111 guix/channels.scm \
112 guix/gnu-maintenance.scm \
113 guix/self.scm \
114 guix/upstream.scm \
115 guix/licenses.scm \
116 guix/lint.scm \
117 guix/glob.scm \
118 guix/git.scm \
119 guix/git-authenticate.scm \
120 guix/graph.scm \
121 guix/cache.scm \
122 guix/cve.scm \
123 guix/workers.scm \
124 guix/build-system.scm \
125 guix/build-system/android-ndk.scm \
126 guix/build-system/ant.scm \
127 guix/build-system/cargo.scm \
128 guix/build-system/clojure.scm \
129 guix/build-system/cmake.scm \
130 guix/build-system/dub.scm \
131 guix/build-system/dune.scm \
132 guix/build-system/emacs.scm \
133 guix/build-system/font.scm \
134 guix/build-system/go.scm \
135 guix/build-system/meson.scm \
136 guix/build-system/minify.scm \
137 guix/build-system/asdf.scm \
138 guix/build-system/copy.scm \
139 guix/build-system/glib-or-gtk.scm \
140 guix/build-system/gnu.scm \
141 guix/build-system/guile.scm \
142 guix/build-system/haskell.scm \
143 guix/build-system/julia.scm \
144 guix/build-system/linux-module.scm \
145 guix/build-system/maven.scm \
146 guix/build-system/node.scm \
147 guix/build-system/perl.scm \
148 guix/build-system/python.scm \
149 guix/build-system/ocaml.scm \
150 guix/build-system/qt.scm \
151 guix/build-system/waf.scm \
152 guix/build-system/r.scm \
153 guix/build-system/rakudo.scm \
154 guix/build-system/ruby.scm \
155 guix/build-system/scons.scm \
156 guix/build-system/texlive.scm \
157 guix/build-system/trivial.scm \
158 guix/ftp-client.scm \
159 guix/http-client.scm \
160 guix/gnupg.scm \
161 guix/elf.scm \
162 guix/profiling.scm \
163 guix/store.scm \
164 guix/cvs-download.scm \
165 guix/svn-download.scm \
166 guix/colors.scm \
167 guix/i18n.scm \
168 guix/diagnostics.scm \
169 guix/ui.scm \
170 guix/status.scm \
171 guix/build/android-ndk-build-system.scm \
172 guix/build/ant-build-system.scm \
173 guix/build/download.scm \
174 guix/build/download-nar.scm \
175 guix/build/cargo-build-system.scm \
176 guix/build/cargo-utils.scm \
177 guix/build/cmake-build-system.scm \
178 guix/build/dub-build-system.scm \
179 guix/build/dune-build-system.scm \
180 guix/build/emacs-build-system.scm \
181 guix/build/meson-build-system.scm \
182 guix/build/minify-build-system.scm \
183 guix/build/font-build-system.scm \
184 guix/build/go-build-system.scm \
185 guix/build/android-repo.scm \
186 guix/build/asdf-build-system.scm \
187 guix/build/bzr.scm \
188 guix/build/copy-build-system.scm \
189 guix/build/git.scm \
190 guix/build/hg.scm \
191 guix/build/glib-or-gtk-build-system.scm \
192 guix/build/gnu-bootstrap.scm \
193 guix/build/gnu-build-system.scm \
194 guix/build/gnu-dist.scm \
195 guix/build/guile-build-system.scm \
196 guix/build/maven-build-system.scm \
197 guix/build/node-build-system.scm \
198 guix/build/perl-build-system.scm \
199 guix/build/python-build-system.scm \
200 guix/build/ocaml-build-system.scm \
201 guix/build/qt-build-system.scm \
202 guix/build/r-build-system.scm \
203 guix/build/rakudo-build-system.scm \
204 guix/build/ruby-build-system.scm \
205 guix/build/scons-build-system.scm \
206 guix/build/texlive-build-system.scm \
207 guix/build/waf-build-system.scm \
208 guix/build/haskell-build-system.scm \
209 guix/build/julia-build-system.scm \
210 guix/build/linux-module-build-system.scm \
211 guix/build/store-copy.scm \
212 guix/build/json.scm \
213 guix/build/utils.scm \
214 guix/build/union.scm \
215 guix/build/profiles.scm \
216 guix/build/compile.scm \
217 guix/build/rpath.scm \
218 guix/build/cvs.scm \
219 guix/build/svn.scm \
220 guix/build/syscalls.scm \
221 guix/build/gremlin.scm \
222 guix/build/debug-link.scm \
223 guix/build/clojure-build-system.scm \
224 guix/build/clojure-utils.scm \
225 guix/build/emacs-utils.scm \
226 guix/build/java-utils.scm \
227 guix/build/lisp-utils.scm \
228 guix/build/maven/java.scm \
229 guix/build/maven/plugin.scm \
230 guix/build/maven/pom.scm \
231 guix/build/graft.scm \
232 guix/build/bournish.scm \
233 guix/build/qt-utils.scm \
234 guix/build/make-bootstrap.scm \
235 guix/search-paths.scm \
236 guix/packages.scm \
237 guix/import/cabal.scm \
238 guix/import/cpan.scm \
239 guix/import/cran.scm \
240 guix/import/crate.scm \
241 guix/import/elpa.scm \
242 guix/import/gem.scm \
243 guix/import/github.scm \
244 guix/import/gnome.scm \
245 guix/import/gnu.scm \
246 guix/import/hackage.scm \
247 guix/import/json.scm \
248 guix/import/kde.scm \
249 guix/import/launchpad.scm \
250 guix/import/opam.scm \
251 guix/import/print.scm \
252 guix/import/pypi.scm \
253 guix/import/snix.scm \
254 guix/import/stackage.scm \
255 guix/import/texlive.scm \
256 guix/import/utils.scm \
257 guix/scripts.scm \
258 guix/scripts/download.scm \
259 guix/scripts/perform-download.scm \
260 guix/scripts/build.scm \
261 guix/scripts/archive.scm \
262 guix/scripts/import.scm \
263 guix/scripts/package.scm \
264 guix/scripts/install.scm \
265 guix/scripts/remove.scm \
266 guix/scripts/upgrade.scm \
267 guix/scripts/search.scm \
268 guix/scripts/show.scm \
269 guix/scripts/gc.scm \
270 guix/scripts/hash.scm \
271 guix/scripts/pack.scm \
272 guix/scripts/pull.scm \
273 guix/scripts/processes.scm \
274 guix/scripts/substitute.scm \
275 guix/scripts/authenticate.scm \
276 guix/scripts/refresh.scm \
277 guix/scripts/repl.scm \
278 guix/scripts/describe.scm \
279 guix/scripts/system.scm \
280 guix/scripts/system/search.scm \
281 guix/scripts/system/reconfigure.scm \
282 guix/scripts/lint.scm \
283 guix/scripts/challenge.scm \
284 guix/scripts/import/crate.scm \
285 guix/scripts/import/cran.scm \
286 guix/scripts/import/elpa.scm \
287 guix/scripts/import/gem.scm \
288 guix/scripts/import/gnu.scm \
289 guix/scripts/import/hackage.scm \
290 guix/scripts/import/json.scm \
291 guix/scripts/import/nix.scm \
292 guix/scripts/import/opam.scm \
293 guix/scripts/import/pypi.scm \
294 guix/scripts/import/stackage.scm \
295 guix/scripts/import/texlive.scm \
296 guix/scripts/environment.scm \
297 guix/scripts/publish.scm \
298 guix/scripts/edit.scm \
299 guix/scripts/size.scm \
300 guix/scripts/git.scm \
301 guix/scripts/git/authenticate.scm \
302 guix/scripts/graph.scm \
303 guix/scripts/weather.scm \
304 guix/scripts/container.scm \
305 guix/scripts/container/exec.scm \
306 guix/scripts/deploy.scm \
307 guix/scripts/time-machine.scm \
308 guix.scm \
309 $(GNU_SYSTEM_MODULES)
310
311 if HAVE_GUILE_SSH
312
313 MODULES += \
314 guix/ssh.scm \
315 guix/remote.scm \
316 guix/scripts/copy.scm \
317 guix/store/ssh.scm
318
319 endif HAVE_GUILE_SSH
320
321 if BUILD_DAEMON_OFFLOAD
322
323 MODULES += \
324 guix/scripts/offload.scm
325
326 endif BUILD_DAEMON_OFFLOAD
327
328 # Scheme implementation of the build daemon and related functionality.
329 STORE_MODULES = \
330 guix/store/database.scm \
331 guix/store/deduplication.scm \
332 guix/store/roots.scm
333
334 MODULES += $(STORE_MODULES)
335
336 # Internal modules with test suite support.
337 dist_noinst_DATA = \
338 guix/tests.scm \
339 guix/tests/http.scm \
340 guix/tests/git.scm \
341 guix/tests/gnupg.scm
342
343 # Auxiliary files for packages.
344 AUX_FILES = \
345 gnu/packages/aux-files/chromium/master-preferences.json \
346 gnu/packages/aux-files/emacs/guix-emacs.el \
347 gnu/packages/aux-files/linux-libre/5.8-arm.conf \
348 gnu/packages/aux-files/linux-libre/5.8-arm64.conf \
349 gnu/packages/aux-files/linux-libre/5.8-i686.conf \
350 gnu/packages/aux-files/linux-libre/5.8-x86_64.conf \
351 gnu/packages/aux-files/linux-libre/5.4-arm.conf \
352 gnu/packages/aux-files/linux-libre/5.4-arm64.conf \
353 gnu/packages/aux-files/linux-libre/5.4-i686.conf \
354 gnu/packages/aux-files/linux-libre/5.4-x86_64.conf \
355 gnu/packages/aux-files/linux-libre/4.19-arm.conf \
356 gnu/packages/aux-files/linux-libre/4.19-arm64.conf \
357 gnu/packages/aux-files/linux-libre/4.19-i686.conf \
358 gnu/packages/aux-files/linux-libre/4.19-x86_64.conf \
359 gnu/packages/aux-files/linux-libre/4.14-arm.conf \
360 gnu/packages/aux-files/linux-libre/4.14-i686.conf \
361 gnu/packages/aux-files/linux-libre/4.14-x86_64.conf \
362 gnu/packages/aux-files/linux-libre/4.9-i686.conf \
363 gnu/packages/aux-files/linux-libre/4.9-x86_64.conf \
364 gnu/packages/aux-files/linux-libre/4.4-i686.conf \
365 gnu/packages/aux-files/linux-libre/4.4-x86_64.conf \
366 gnu/packages/aux-files/pack-audit.c \
367 gnu/packages/aux-files/run-in-namespace.c
368
369 # Templates, examples.
370 EXAMPLES = \
371 gnu/system/examples/asus-c201.tmpl \
372 gnu/system/examples/bare-bones.tmpl \
373 gnu/system/examples/bare-hurd.tmpl \
374 gnu/system/examples/beaglebone-black.tmpl \
375 gnu/system/examples/desktop.tmpl \
376 gnu/system/examples/lightweight-desktop.tmpl \
377 gnu/system/examples/docker-image.tmpl \
378 gnu/system/examples/vm-image.tmpl
379
380 GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go $(dist_noinst_DATA:%.scm=%.go)
381
382 nobase_dist_guilemodule_DATA = \
383 guix/store/schema.sql \
384 $(MODULES) $(MODULES_NOT_COMPILED) $(AUX_FILES) $(EXAMPLES) \
385 $(MISC_DISTRO_FILES)
386 nobase_nodist_guilemodule_DATA = guix/config.scm
387 nobase_nodist_guileobject_DATA = $(GOBJECTS)
388
389 # Handy way to remove the .go files without removing all the rest.
390 clean-go:
391 -$(RM) -f $(GOBJECTS)
392 @find . -path ./test-tmp -prune -o -name '*.go' -print | \
393 if test -t 1; then \
394 xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
395 else \
396 xargs -r echo "warning: stray .go files:"; \
397 fi
398
399
400 # Test extensions; has to be unconditional.
401 TEST_EXTENSIONS = .scm .sh
402
403 if CAN_RUN_TESTS
404
405 SCM_TESTS = \
406 tests/accounts.scm \
407 tests/base16.scm \
408 tests/base32.scm \
409 tests/base64.scm \
410 tests/boot-parameters.scm \
411 tests/bournish.scm \
412 tests/builders.scm \
413 tests/build-utils.scm \
414 tests/cache.scm \
415 tests/challenge.scm \
416 tests/channels.scm \
417 tests/combinators.scm \
418 tests/containers.scm \
419 tests/cpan.scm \
420 tests/cpio.scm \
421 tests/cran.scm \
422 tests/crate.scm \
423 tests/cve.scm \
424 tests/debug-link.scm \
425 tests/derivations.scm \
426 tests/discovery.scm \
427 tests/elpa.scm \
428 tests/file-systems.scm \
429 tests/gem.scm \
430 tests/gexp.scm \
431 tests/git.scm \
432 tests/git-authenticate.scm \
433 tests/glob.scm \
434 tests/gnu-maintenance.scm \
435 tests/grafts.scm \
436 tests/graph.scm \
437 tests/gremlin.scm \
438 tests/hackage.scm \
439 tests/import-utils.scm \
440 tests/inferior.scm \
441 tests/lint.scm \
442 tests/modules.scm \
443 tests/monads.scm \
444 tests/nar.scm \
445 tests/networking.scm \
446 tests/offload.scm \
447 tests/opam.scm \
448 tests/openpgp.scm \
449 tests/packages.scm \
450 tests/pack.scm \
451 tests/pki.scm \
452 tests/print.scm \
453 tests/processes.scm \
454 tests/profiles.scm \
455 tests/publish.scm \
456 tests/pypi.scm \
457 tests/records.scm \
458 tests/scripts.scm \
459 tests/scripts-build.scm \
460 tests/search-paths.scm \
461 tests/services.scm \
462 tests/services/linux.scm \
463 tests/sets.scm \
464 tests/size.scm \
465 tests/snix.scm \
466 tests/status.scm \
467 tests/store-database.scm \
468 tests/store-deduplication.scm \
469 tests/store-roots.scm \
470 tests/store.scm \
471 tests/substitute.scm \
472 tests/swh.scm \
473 tests/syscalls.scm \
474 tests/system.scm \
475 tests/texlive.scm \
476 tests/ui.scm \
477 tests/union.scm \
478 tests/upstream.scm \
479 tests/utils.scm \
480 tests/uuid.scm \
481 tests/workers.scm
482
483 SH_TESTS = \
484 tests/guix-build.sh \
485 tests/guix-build-branch.sh \
486 tests/guix-download.sh \
487 tests/guix-gc.sh \
488 tests/guix-git-authenticate.sh \
489 tests/guix-hash.sh \
490 tests/guix-pack.sh \
491 tests/guix-pack-localstatedir.sh \
492 tests/guix-pack-relocatable.sh \
493 tests/guix-package.sh \
494 tests/guix-package-aliases.sh \
495 tests/guix-package-net.sh \
496 tests/guix-system.sh \
497 tests/guix-archive.sh \
498 tests/guix-authenticate.sh \
499 tests/guix-environment.sh \
500 tests/guix-environment-container.sh \
501 tests/guix-graph.sh \
502 tests/guix-describe.sh \
503 tests/guix-repl.sh \
504 tests/guix-lint.sh
505
506 TESTS = $(SCM_TESTS) $(SH_TESTS)
507
508 AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0
509
510 SCM_LOG_DRIVER = \
511 $(top_builddir)/test-env --quiet-stderr \
512 $(GUILE) --no-auto-compile -e main \
513 $(top_srcdir)/build-aux/test-driver.scm
514
515 AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
516
517 SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
518 AM_SH_LOG_FLAGS = -x -e
519
520 # Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
521 # could end up removing files from the store while they are being used by
522 # other instances of the daemon.
523 tests/guix-gc.log: \
524 $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
525 $(SCM_TESTS:%.scm=%.log)
526
527 else !CAN_RUN_TESTS
528
529 TESTS =
530 SH_TESTS =
531 SCM_TESTS =
532
533 # Automake always generates a 'check' target, so better not override it.
534 check-local:
535 @echo
536 @echo "Cannot run tests because file name limits would be exceeded." >&2
537 @echo "Look for 'length' in the 'config.log' file for details." >&2
538 @echo
539 @exit 1
540
541 endif !CAN_RUN_TESTS
542
543 check-system: $(GOBJECTS)
544 $(AM_V_at)$(top_builddir)/pre-inst-env \
545 guix build -m $(top_srcdir)/etc/system-tests.scm -K
546
547 # Public keys used to sign substitutes.
548 dist_pkgdata_DATA = \
549 etc/substitutes/berlin.guix.gnu.org.pub \
550 etc/substitutes/ci.guix.gnu.org.pub \
551 etc/substitutes/ci.guix.info.pub
552
553 # Bash completion file.
554 dist_bashcompletion_DATA = etc/completion/bash/guix \
555 etc/completion/bash/guix-daemon
556
557 # Zsh completion file.
558 dist_zshcompletion_DATA = etc/completion/zsh/_guix
559
560 # Fish completion file.
561 dist_fishcompletion_DATA = etc/completion/fish/guix.fish
562
563 # SELinux policy
564 dist_selinux_policy_DATA = etc/guix-daemon.cil
565
566 EXTRA_DIST += \
567 HACKING \
568 ROADMAP \
569 TODO \
570 CODE-OF-CONDUCT \
571 .dir-locals.el \
572 .guix-channel \
573 scripts/guix.in \
574 etc/guix-install.sh \
575 etc/news.scm \
576 etc/release-manifest.scm \
577 etc/system-tests.scm \
578 etc/historical-authorizations \
579 build-aux/build-self.scm \
580 build-aux/compile-all.scm \
581 build-aux/hydra/evaluate.scm \
582 build-aux/hydra/gnu-system.scm \
583 build-aux/hydra/guix.scm \
584 build-aux/hydra/guix-modular.scm \
585 build-aux/cuirass/gnu-system.scm \
586 build-aux/cuirass/guix-modular.scm \
587 build-aux/cuirass/hurd-manifest.scm \
588 build-aux/cuirass/hydra-to-cuirass.scm \
589 build-aux/check-final-inputs-self-contained.scm \
590 build-aux/check-channel-news.scm \
591 build-aux/compile-as-derivation.scm \
592 build-aux/generate-authors.scm \
593 build-aux/test-driver.scm \
594 build-aux/update-guix-package.scm \
595 build-aux/update-NEWS.scm \
596 d3.v3.js \
597 graph.js \
598 tests/test.drv \
599 tests/signing-key.pub \
600 tests/signing-key.sec \
601 tests/cve-sample.json \
602 tests/civodul.key \
603 tests/rsa.key \
604 tests/dsa.key \
605 tests/ed25519.key \
606 tests/ed25519.sec \
607 tests/ed25519bis.key \
608 tests/ed25519bis.sec \
609 build-aux/config.rpath \
610 bootstrap \
611 doc/build.scm \
612 $(TESTS)
613
614 if !BUILD_DAEMON_OFFLOAD
615
616 EXTRA_DIST += \
617 guix/scripts/offload.scm
618
619 endif !BUILD_DAEMON_OFFLOAD
620
621
622 CLEANFILES = \
623 $(bin_SCRIPTS) \
624 $(GOBJECTS) \
625 $(SCM_TESTS:tests/%.scm=%.log)
626
627 # Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling. Otherwise, if
628 # $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
629 # there that are newer than the local .scm files (for instance because the
630 # user ran 'make install' recently). When that happens, we end up loading
631 # those previously-installed .go files, which may be stale, thereby breaking
632 # the whole thing. Likewise, set 'XDG_CACHE_HOME' to avoid loading possibly
633 # stale files from ~/.cache/guile/ccache.
634 %.go: make-go ; @:
635 make-go: $(MODULES) guix/config.scm $(dist_noinst_DATA)
636 $(AM_V_at)echo "Compiling Scheme modules..." ; \
637 unset GUILE_LOAD_COMPILED_PATH ; \
638 XDG_CACHE_HOME=/nowhere \
639 host=$(host) srcdir="$(top_srcdir)" \
640 $(top_builddir)/pre-inst-env \
641 $(GUILE) -L "$(top_builddir)" -L "$(top_srcdir)" \
642 --no-auto-compile \
643 -s "$(top_srcdir)"/build-aux/compile-all.scm $^
644
645 SUFFIXES = .go
646
647 # Make sure source files are installed first, so that the mtime of
648 # installed compiled files is greater than that of installed source
649 # files. See
650 # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
651 # for details.
652 guix_install_go_files = install-nobase_nodist_guileobjectDATA
653 $(guix_install_go_files): install-nobase_dist_guilemoduleDATA
654
655 # The above trick doesn't work for 'config.go' because both 'config.scm' and
656 # 'config.go' are listed in $(nobase_nodist_guileobject_DATA). Thus, give it
657 # special treatment.
658 install-data-hook:
659 touch "$(DESTDIR)$(guileobjectdir)/guix/config.go"
660
661 # Commit corresponding to the 'v1.0.0' tag.
662 commit_v1_0_0 = 6298c3ffd9654d3231a6f25390b056483e8f407c
663
664 # Introduction of the 'guix' channel. Keep in sync with (guix channels)!
665 channel_intro_commit = 9edb3f66fd807b096b48283debdcddccfea34bad
666 channel_intro_signer = BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA
667
668 # Authenticate the current Git checkout by checking signatures on every commit.
669 GUIX_GIT_KEYRING = origin/keyring
670 authenticate:
671 $(AM_V_at)echo "Authenticating Git checkout..." ; \
672 guix git authenticate \
673 --keyring=$(GUIX_GIT_KEYRING) \
674 --cache-key=channels/guix --stats \
675 "$(channel_intro_commit)" "$(channel_intro_signer)"
676
677 # Assuming Guix is already installed and the daemon is up and running, this
678 # rule builds from $(srcdir), creating and building derivations.
679 as-derivation:
680 $(AM_V_at)echo "Building Guix in Guix..." ; \
681 $(GUILE) --no-auto-compile \
682 "$(top_srcdir)/build-aux/compile-as-derivation.scm" \
683 "$(abs_top_srcdir)"
684
685 SUBDIRS = po/guix po/packages
686 BUILT_SOURCES =
687
688 include doc/local.mk
689
690 if BUILD_DAEMON
691
692 include nix/local.mk
693
694 endif BUILD_DAEMON
695
696 ACLOCAL_AMFLAGS = -I m4
697
698 # Pass an explicit '--localstatedir' so that configure does not error out if
699 # it finds an existing installation with a different localstatedir. Inherit
700 # 'ac_cv_guix_test_root' so that "make check" in $(distdir) does not have to
701 # repopulate the whole store, and to make sure $(GUIX_TEST_ROOT) is short
702 # enough for shebangs.
703 AM_DISTCHECK_CONFIGURE_FLAGS = \
704 --localstatedir="$$dc_install_base/var" \
705 --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
706 --with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
707 --with-nix-prefix="$(NIX_PREFIX)" \
708 --enable-daemon \
709 ac_cv_guix_test_root="$(GUIX_TEST_ROOT)"
710
711 # Name of the 'guix' package shipped in the binary tarball.
712 GUIX_FOR_BINARY_TARBALL = guile3.0-guix
713
714 # The self-contained tarball.
715 guix-binary.%.tar.xz:
716 $(AM_V_GEN)GUIX_PACKAGE_PATH= \
717 tarball=`$(top_builddir)/pre-inst-env guix pack -C xz \
718 --fallback \
719 -s "$*" --localstatedir --profile-name=current-guix \
720 $(GUIX_FOR_BINARY_TARBALL)` ; \
721 cp "$$tarball" "$@.tmp" ; mv "$@.tmp" "$@"
722
723
724 dist-hook: gen-ChangeLog gen-AUTHORS gen-tarball-version
725 dist-hook: assert-no-store-file-names
726 dist-hook: doc-po-update
727
728 distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
729
730 EXTRA_DIST += $(top_srcdir)/.version
731 BUILT_SOURCES += $(top_srcdir)/.version
732 $(top_srcdir)/.version:
733 echo $(VERSION) > "$@-t" && mv "$@-t" "$@"
734
735 gen-tarball-version:
736 echo $(VERSION) > "$(distdir)/.tarball-version"
737
738 gen-ChangeLog:
739 $(AM_V_GEN)if test -d .git; then \
740 $(top_srcdir)/build-aux/gitlog-to-changelog \
741 > $(distdir)/ChangeLog.tmp; \
742 rm -f $(distdir)/ChangeLog; \
743 mv $(distdir)/ChangeLog.tmp $(distdir)/ChangeLog; \
744 fi
745
746 gen-AUTHORS:
747 $(AM_V_GEN)if test -d .git; then \
748 rm -f "$(distdir)/AUTHORS"; \
749 $(top_builddir)/pre-inst-env "$(GUILE)" \
750 "$(top_srcdir)/build-aux/generate-authors.scm" \
751 "$(top_srcdir)" "$(distdir)/AUTHORS"; \
752 fi
753
754 # Like 'dist', but regenerate 'configure' so we get an up-to-date
755 # 'PACKAGE_VERSION' string. (In Gnulib, 'GNUmakefile' has a special trick to
756 # do that whenever a 'dist' target is used.)
757 dist-with-updated-version:
758 @echo "Running './bootstrap' for new version string..."
759 $(top_srcdir)/bootstrap
760 $(MAKE) $(AM_MAKEFLAGS) $(top_srcdir)/.version dist
761
762 .PHONY: dist-with-updated-version
763
764 \f
765 #
766 # Release management.
767 #
768
769 releasedir = release-$(PACKAGE_VERSION)
770
771 PACKAGE_FULL_TARNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
772
773 # List of source tarballs produced. This must be kept in sync with the
774 # 'dist-' options of 'AM_INIT_AUTOMAKE' in 'configure.ac'.
775 SOURCE_TARBALLS = \
776 $(foreach ext,tar.gz,$(PACKAGE_FULL_TARNAME).$(ext))
777
778 # Systems supported by Guix.
779 SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux armhf-linux aarch64-linux
780
781 # Guix binary tarballs.
782 BINARY_TARBALLS = \
783 $(foreach system,$(SUPPORTED_SYSTEMS),guix-binary.$(system).tar.xz)
784
785 # Systems supported by Guix System.
786 GUIX_SYSTEM_SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux
787
788 # Systems for which we build Guix VMs.
789 GUIX_SYSTEM_VM_SYSTEMS ?= x86_64-linux
790
791 # Prefix of the Guix installation image file name.
792 GUIX_SYSTEM_IMAGE_BASE = guix-system-install-$(PACKAGE_VERSION)
793
794 # Prefix of the Guix VM image file name.
795 GUIX_SYSTEM_VM_IMAGE_BASE = guix-system-vm-image-$(PACKAGE_VERSION)
796
797 # Flags for 'guix system vm-image'. By default create a VM image that appears
798 # to have a 20G hard disk.
799 GUIX_SYSTEM_VM_IMAGE_FLAGS ?= --image-size=30G
800
801 # Return the sequence of '-s' flags for the given systems.
802 system_flags = $(foreach system,$(1),-s $(system))
803
804 # The release process works in several phases:
805 #
806 # 0. We assume the developer created a 'vX.Y' tag.
807 # 1. Build the source tarball.
808 # 2. Update the 'guix' package so that it corresponds to the 'vX.Y' tag.
809 # 3. Build the binary tarballs for that 'guix' package.
810 # 4. Update the 'guix' package again.
811 # 5. Build the installation images. The images will run 'guix'
812 # corresponding to 'vX.Y' + 1 commit, and they will install 'vX.Y'.
813 #
814 # This 'release' target takes care of everything and copies the resulting
815 # files to $(releasedir).
816 #
817 # XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
818 # issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
819 release: dist-with-updated-version
820 cd po; git checkout .
821 @if ! git diff-index --quiet HEAD; then \
822 echo "There are uncommitted changes; stopping." >&2 ; \
823 exit 1 ; \
824 fi
825 $(MKDIR_P) "$(releasedir)"
826 rm -f "$(releasedir)"/*
827 mv $(SOURCE_TARBALLS) "$(releasedir)"
828 $(top_builddir)/pre-inst-env "$(GUILE)" \
829 $(top_srcdir)/build-aux/update-guix-package.scm \
830 "`git rev-parse HEAD`" "$(PACKAGE_VERSION)"
831 git add $(top_srcdir)/gnu/packages/package-management.scm
832 git commit -m "gnu: guix: Update to $(PACKAGE_VERSION)."
833 $(top_builddir)/pre-inst-env guix build $(GUIX_FOR_BINARY_TARBALL) \
834 $(call system_flags,$(SUPPORTED_SYSTEMS)) \
835 -v1 --no-grafts --fallback
836 rm -f $(BINARY_TARBALLS)
837 $(MAKE) $(BINARY_TARBALLS)
838 for system in $(SUPPORTED_SYSTEMS) ; do \
839 mv "guix-binary.$$system.tar.xz" \
840 "$(releasedir)/guix-binary-$(PACKAGE_VERSION).$$system.tar.xz" ; \
841 done
842 $(top_builddir)/pre-inst-env "$(GUILE)" \
843 $(top_srcdir)/build-aux/update-guix-package.scm \
844 "`git rev-parse HEAD`"
845 git add $(top_srcdir)/gnu/packages/package-management.scm
846 git commit -m "gnu: guix: Update to `git rev-parse HEAD | cut -c1-7`."
847 $(top_builddir)/pre-inst-env guix build guix \
848 $(call system_flags,$(GUIX_SYSTEM_SUPPORTED_SYSTEMS)) \
849 -v1 --no-grafts --fallback
850 for system in $(GUIX_SYSTEM_SUPPORTED_SYSTEMS) ; do \
851 image=`$(top_builddir)/pre-inst-env \
852 guix system disk-image -t iso9660 \
853 --label="GUIX_$${system}_$(VERSION)" \
854 --system=$$system --fallback \
855 gnu/system/install.scm` ; \
856 if [ ! -f "$$image" ] ; then \
857 echo "failed to produced Guix installation image for $$system" >&2 ; \
858 exit 1 ; \
859 fi ; \
860 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" ; \
861 mv "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" \
862 "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz" ; \
863 done
864 for system in $(GUIX_SYSTEM_VM_SYSTEMS) ; do \
865 image=`$(top_builddir)/pre-inst-env \
866 guix system vm-image $(GUIX_SYSTEM_VM_IMAGE_FLAGS) \
867 --save-provenance \
868 --system=$$system --fallback \
869 gnu/system/examples/vm-image.tmpl` ; \
870 if [ ! -f "$$image" ] ; then \
871 echo "failed to produced Guix VM image for $$system" >&2 ; \
872 exit 1 ; \
873 fi ; \
874 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" ; \
875 mv "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" \
876 "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz" ; \
877 done
878 @echo
879 @echo "Congratulations! All the release files are now in $(releasedir)."
880 @echo
881
882 update-guix-package:
883 git rev-parse HEAD
884 $(top_builddir)/pre-inst-env "$(GUILE)" \
885 $(top_srcdir)/build-aux/update-guix-package.scm \
886 "`git rev-parse HEAD`"
887
888 # Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
889 # Package data from this checkout is used by 'update-NEWS.scm'.
890 GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
891
892 update-NEWS: $(GOBJECTS)
893 $(top_builddir)/pre-inst-env "$(GUILE)" \
894 $(top_srcdir)/build-aux/update-NEWS.scm \
895 $(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
896
897 # Make sure we're not shipping a file that embeds a local /gnu/store file name.
898 assert-no-store-file-names:
899 $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \
900 --exclude=*.info-[0-9] --exclude=*.dot \
901 --exclude=*.eps --exclude-dir=bootstrap \
902 --exclude=guix-manual.pot --exclude=guix-manual.*.po \
903 --exclude=guix-cookbook.pot --exclude=guix-cookbook.*.po \
904 --exclude=guix-prettify.el \
905 --exclude=ChangeLog* \
906 --exclude=binutils-boot-2.20*.patch \
907 -E "$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
908 then \
909 echo "error: store file names embedded in the distribution" >&2 ; \
910 exit 1 ; \
911 fi
912
913 # Make sure important substitutes are available.
914 assert-binaries-available: $(GOBJECTS)
915 $(AM_V_at)$(top_builddir)/pre-inst-env \
916 guix weather -m "$(top_srcdir)/etc/release-manifest.scm" \
917 --display-missing
918
919 # Make sure the final inputs don't refer to bootstrap tools.
920 assert-final-inputs-self-contained: $(GOBJECTS)
921 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
922 "$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
923
924 # Validate channel news.
925 check-channel-news: $(GOBJECTS)
926 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
927 "$(top_srcdir)/build-aux/check-channel-news.scm"
928
929 # Compute the Hydra jobs and write them in the target file.
930 hydra-jobs.scm: $(GOBJECTS)
931 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
932 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
933 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
934 "$(top_srcdir)/build-aux/hydra/gnu-system.scm" > "$@.tmp"
935 $(AM_V_at)mv "$@.tmp" "$@"
936
937 # Compute the Cuirass jobs and write them in the target file.
938 cuirass-jobs.scm: $(GOBJECTS)
939 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
940 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
941 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
942 "$(top_srcdir)/build-aux/cuirass/gnu-system.scm" \
943 cuirass > "$@.tmp"
944 $(AM_V_at)mv "$@.tmp" "$@"
945
946 .PHONY: gen-ChangeLog gen-AUTHORS gen-tarball-version
947 .PHONY: assert-no-store-file-names assert-binaries-available
948 .PHONY: assert-final-inputs-self-contained check-channel-news
949 .PHONY: clean-go make-go as-derivation authenticate
950 .PHONY: update-guix-package update-NEWS release
951
952 # Downloading up-to-date PO files.
953
954 # make-download-po-rule DOMAIN DIRECTORY [FILE-NAME-PREFIX]
955 define make-download-po-rule
956
957 download-po.$(1):
958 if [ -f "$(top_srcdir)/$(2)/LINGUAS" ]; then \
959 LINGUAS="`grep -v '^[[:blank:]]*#' < $(top_srcdir)/$(2)/LINGUAS`" ; \
960 else \
961 LINGUAS="`(cd $(top_srcdir)/$(2); \
962 for i in *.po; do echo $$$$i; done) | cut -d . -f 2`" ; \
963 fi ; \
964 for lang in $$$$LINGUAS; do \
965 if wget -nv -O "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" \
966 "https://translationproject.org/latest/$(1)/$$$$lang.po" ; \
967 then \
968 mv "$(top_srcdir)/$(2)/$(3)$$$$lang.po"{.tmp,} ; \
969 else \
970 rm "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" ; \
971 fi ; \
972 done
973
974 .PHONY: download-po.$(1)
975
976 endef
977
978 $(eval $(call make-download-po-rule,guix,po/guix))
979 $(eval $(call make-download-po-rule,guix-packages,po/packages))
980 $(eval $(call make-download-po-rule,guix-manual,po/doc,guix-manual.))
981
982 download-po: $(foreach domain,guix guix-packages guix-manual,download-po.$(domain))
983 .PHONY: download-po
984
985 ## -------------- ##
986 ## Silent rules. ##
987 ## -------------- ##
988
989 AM_V_DL = $(AM_V_DL_$(V))
990 AM_V_DL_ = $(AM_V_DL_$(AM_DEFAULT_VERBOSITY))
991 AM_V_DL_0 = @echo " DL " $@;
992
993 AM_V_DOT = $(AM_V_DOT_$(V))
994 AM_V_DOT_ = $(AM_V_DOT_$(AM_DEFAULT_VERBOSITY))
995 AM_V_DOT_0 = @echo " DOT " $@;
996
997 AM_V_HELP2MAN = $(AM_V_HELP2MAN_$(V))
998 AM_V_HELP2MAN_ = $(AM_V_HELP2MAN_$(AM_DEFAULT_VERBOSITY))
999 AM_V_HELP2MAN_0 = @echo " HELP2MAN" $@;
1000
1001 AM_V_PO4A = $(AM_V_PO4A_$(V))
1002 AM_V_PO4A_ = $(AM_V_PO4A_$(AM_DEFAULT_VERBOSITY))
1003 AM_V_PO4A_0 = @echo " PO4A" $@;
1004
1005 AM_V_POXREF = $(AM_V_POXREF_$(V))
1006 AM_V_POXREF_ = $(AM_V_POXREF_$(AM_DEFAULT_VERBOSITY))
1007 AM_V_POXREF_0 = @echo " POXREF" $@;