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