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