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