git-authenticate: Add tests.
[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 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/beaglebone-black.tmpl \
352 gnu/system/examples/desktop.tmpl \
353 gnu/system/examples/lightweight-desktop.tmpl \
354 gnu/system/examples/docker-image.tmpl \
355 gnu/system/examples/vm-image.tmpl
356
357 GOBJECTS = $(MODULES:%.scm=%.go) guix/config.go $(dist_noinst_DATA:%.scm=%.go)
358
359 nobase_dist_guilemodule_DATA = \
360 guix/store/schema.sql \
361 $(MODULES) $(MODULES_NOT_COMPILED) $(AUX_FILES) $(EXAMPLES) \
362 $(MISC_DISTRO_FILES)
363 nobase_nodist_guilemodule_DATA = guix/config.scm
364 nobase_nodist_guileobject_DATA = $(GOBJECTS)
365
366 # Handy way to remove the .go files without removing all the rest.
367 clean-go:
368 -$(RM) -f $(GOBJECTS)
369 @find . -path ./test-tmp -prune -o -name '*.go' -print | \
370 if test -t 1; then \
371 xargs -r echo -e "\033[31mwarning:\033[0m stray .go files:"; \
372 else \
373 xargs -r echo "warning: stray .go files:"; \
374 fi
375
376
377 # Test extensions; has to be unconditional.
378 TEST_EXTENSIONS = .scm .sh
379
380 if CAN_RUN_TESTS
381
382 SCM_TESTS = \
383 tests/accounts.scm \
384 tests/base16.scm \
385 tests/base32.scm \
386 tests/base64.scm \
387 tests/bournish.scm \
388 tests/builders.scm \
389 tests/build-utils.scm \
390 tests/cache.scm \
391 tests/challenge.scm \
392 tests/channels.scm \
393 tests/combinators.scm \
394 tests/containers.scm \
395 tests/cpan.scm \
396 tests/cpio.scm \
397 tests/cran.scm \
398 tests/crate.scm \
399 tests/cve.scm \
400 tests/debug-link.scm \
401 tests/derivations.scm \
402 tests/discovery.scm \
403 tests/elpa.scm \
404 tests/file-systems.scm \
405 tests/gem.scm \
406 tests/gexp.scm \
407 tests/git.scm \
408 tests/git-authenticate.scm \
409 tests/glob.scm \
410 tests/gnu-maintenance.scm \
411 tests/grafts.scm \
412 tests/graph.scm \
413 tests/gremlin.scm \
414 tests/hackage.scm \
415 tests/import-utils.scm \
416 tests/inferior.scm \
417 tests/lint.scm \
418 tests/lzlib.scm \
419 tests/modules.scm \
420 tests/monads.scm \
421 tests/nar.scm \
422 tests/networking.scm \
423 tests/opam.scm \
424 tests/openpgp.scm \
425 tests/packages.scm \
426 tests/pack.scm \
427 tests/pki.scm \
428 tests/print.scm \
429 tests/processes.scm \
430 tests/profiles.scm \
431 tests/publish.scm \
432 tests/pypi.scm \
433 tests/records.scm \
434 tests/scripts.scm \
435 tests/scripts-build.scm \
436 tests/search-paths.scm \
437 tests/services.scm \
438 tests/services/linux.scm \
439 tests/sets.scm \
440 tests/size.scm \
441 tests/snix.scm \
442 tests/status.scm \
443 tests/store-database.scm \
444 tests/store-deduplication.scm \
445 tests/store-roots.scm \
446 tests/store.scm \
447 tests/substitute.scm \
448 tests/swh.scm \
449 tests/syscalls.scm \
450 tests/system.scm \
451 tests/texlive.scm \
452 tests/ui.scm \
453 tests/union.scm \
454 tests/upstream.scm \
455 tests/utils.scm \
456 tests/uuid.scm \
457 tests/workers.scm \
458 tests/zlib.scm
459
460 SH_TESTS = \
461 tests/guix-build.sh \
462 tests/guix-build-branch.sh \
463 tests/guix-download.sh \
464 tests/guix-gc.sh \
465 tests/guix-hash.sh \
466 tests/guix-pack.sh \
467 tests/guix-pack-localstatedir.sh \
468 tests/guix-pack-relocatable.sh \
469 tests/guix-package.sh \
470 tests/guix-package-aliases.sh \
471 tests/guix-package-net.sh \
472 tests/guix-system.sh \
473 tests/guix-archive.sh \
474 tests/guix-authenticate.sh \
475 tests/guix-environment.sh \
476 tests/guix-environment-container.sh \
477 tests/guix-graph.sh \
478 tests/guix-describe.sh \
479 tests/guix-lint.sh
480
481 TESTS = $(SCM_TESTS) $(SH_TESTS)
482
483 AM_TESTS_ENVIRONMENT = abs_top_srcdir="$(abs_top_srcdir)" GUILE_AUTO_COMPILE=0
484
485 SCM_LOG_DRIVER = \
486 $(top_builddir)/test-env --quiet-stderr \
487 $(GUILE) --no-auto-compile -e main \
488 $(top_srcdir)/build-aux/test-driver.scm
489
490 AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
491
492 SH_LOG_COMPILER = $(top_builddir)/test-env $(SHELL)
493 AM_SH_LOG_FLAGS = -x -e
494
495 # Make sure `tests/guix-gc.sh' runs last, after all the others. Otherwise it
496 # could end up removing files from the store while they are being used by
497 # other instances of the daemon.
498 tests/guix-gc.log: \
499 $(patsubst %.sh,%.log,$(filter-out tests/guix-gc.sh,$(SH_TESTS))) \
500 $(SCM_TESTS:%.scm=%.log)
501
502 else !CAN_RUN_TESTS
503
504 TESTS =
505 SH_TESTS =
506 SCM_TESTS =
507
508 # Automake always generates a 'check' target, so better not override it.
509 check-local:
510 @echo
511 @echo "Cannot run tests because file name limits would be exceeded." >&2
512 @echo "Look for 'length' in the 'config.log' file for details." >&2
513 @echo
514 @exit 1
515
516 endif !CAN_RUN_TESTS
517
518 check-system: $(GOBJECTS)
519 $(AM_V_at)$(top_builddir)/pre-inst-env \
520 guix build -m $(top_srcdir)/etc/system-tests.scm -K
521
522 # Public keys used to sign substitutes.
523 dist_pkgdata_DATA = \
524 etc/substitutes/berlin.guixsd.org.pub \
525 etc/substitutes/ci.guix.gnu.org.pub \
526 etc/substitutes/ci.guix.info.pub
527
528 # Bash completion file.
529 dist_bashcompletion_DATA = etc/completion/bash/guix \
530 etc/completion/bash/guix-daemon
531
532 # Zsh completion file.
533 dist_zshcompletion_DATA = etc/completion/zsh/_guix
534
535 # Fish completion file.
536 dist_fishcompletion_DATA = etc/completion/fish/guix.fish
537
538 # SELinux policy
539 dist_selinux_policy_DATA = etc/guix-daemon.cil
540
541 EXTRA_DIST += \
542 HACKING \
543 ROADMAP \
544 TODO \
545 CODE-OF-CONDUCT \
546 .dir-locals.el \
547 .guix-channel \
548 scripts/guix.in \
549 etc/guix-install.sh \
550 etc/news.scm \
551 etc/release-manifest.scm \
552 etc/system-tests.scm \
553 build-aux/build-self.scm \
554 build-aux/compile-all.scm \
555 build-aux/hydra/evaluate.scm \
556 build-aux/hydra/gnu-system.scm \
557 build-aux/hydra/guix.scm \
558 build-aux/hydra/guix-modular.scm \
559 build-aux/cuirass/gnu-system.scm \
560 build-aux/cuirass/guix-modular.scm \
561 build-aux/cuirass/hydra-to-cuirass.scm \
562 build-aux/check-final-inputs-self-contained.scm \
563 build-aux/check-channel-news.scm \
564 build-aux/compile-as-derivation.scm \
565 build-aux/generate-authors.scm \
566 build-aux/git-authenticate.scm \
567 build-aux/test-driver.scm \
568 build-aux/update-guix-package.scm \
569 build-aux/update-NEWS.scm \
570 d3.v3.js \
571 graph.js \
572 tests/test.drv \
573 tests/signing-key.pub \
574 tests/signing-key.sec \
575 tests/cve-sample.json \
576 tests/civodul.key \
577 tests/rsa.key \
578 tests/dsa.key \
579 tests/ed25519.key \
580 tests/ed25519.sec \
581 tests/ed25519bis.key \
582 tests/ed25519bis.sec \
583 build-aux/config.rpath \
584 bootstrap \
585 doc/build.scm \
586 $(TESTS)
587
588 if !BUILD_DAEMON_OFFLOAD
589
590 EXTRA_DIST += \
591 guix/scripts/offload.scm
592
593 endif !BUILD_DAEMON_OFFLOAD
594
595
596 CLEANFILES = \
597 $(bin_SCRIPTS) \
598 $(GOBJECTS) \
599 $(SCM_TESTS:tests/%.scm=%.log)
600
601 # Unset 'GUILE_LOAD_COMPILED_PATH' altogether while compiling. Otherwise, if
602 # $GUILE_LOAD_COMPILED_PATH contains $(moduledir), we may find .go files in
603 # there that are newer than the local .scm files (for instance because the
604 # user ran 'make install' recently). When that happens, we end up loading
605 # those previously-installed .go files, which may be stale, thereby breaking
606 # the whole thing. Likewise, set 'XDG_CACHE_HOME' to avoid loading possibly
607 # stale files from ~/.cache/guile/ccache.
608 %.go: make-go ; @:
609 make-go: $(MODULES) guix/config.scm $(dist_noinst_DATA)
610 $(AM_V_at)echo "Compiling Scheme modules..." ; \
611 unset GUILE_LOAD_COMPILED_PATH ; \
612 XDG_CACHE_HOME=/nowhere \
613 host=$(host) srcdir="$(top_srcdir)" \
614 $(top_builddir)/pre-inst-env \
615 $(GUILE) -L "$(top_builddir)" -L "$(top_srcdir)" \
616 --no-auto-compile \
617 -s "$(top_srcdir)"/build-aux/compile-all.scm $^
618
619 SUFFIXES = .go
620
621 # Make sure source files are installed first, so that the mtime of
622 # installed compiled files is greater than that of installed source
623 # files. See
624 # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
625 # for details.
626 guix_install_go_files = install-nobase_nodist_guileobjectDATA
627 $(guix_install_go_files): install-nobase_dist_guilemoduleDATA
628
629 # The above trick doesn't work for 'config.go' because both 'config.scm' and
630 # 'config.go' are listed in $(nobase_nodist_guileobject_DATA). Thus, give it
631 # special treatment.
632 install-data-hook:
633 touch "$(DESTDIR)$(guileobjectdir)/guix/config.go"
634
635 # Commit corresponding to the 'v1.0.1' tag.
636 commit_v1_0_1 = d68de958b60426798ed62797ff7c96c327a672ac
637
638 # Authenticate the current Git checkout by checking signatures on every commit
639 # starting from $(commit_v1_0_1).
640 authenticate: guix/openpgp.go guix/git-authenticate.go guix/git.go
641 $(AM_V_at)echo "Authenticating Git checkout..." ; \
642 "$(top_builddir)/pre-inst-env" $(GUILE) \
643 --no-auto-compile -e git-authenticate \
644 "$(top_srcdir)/build-aux/git-authenticate.scm" \
645 "$(commit_v1_0_1)"
646
647 # Assuming Guix is already installed and the daemon is up and running, this
648 # rule builds from $(srcdir), creating and building derivations.
649 as-derivation:
650 $(AM_V_at)echo "Building Guix in Guix..." ; \
651 $(GUILE) --no-auto-compile \
652 "$(top_srcdir)/build-aux/compile-as-derivation.scm" \
653 "$(abs_top_srcdir)"
654
655 SUBDIRS = po/guix po/packages
656 BUILT_SOURCES =
657
658 include doc/local.mk
659
660 if BUILD_DAEMON
661
662 include nix/local.mk
663
664 endif BUILD_DAEMON
665
666 ACLOCAL_AMFLAGS = -I m4
667
668 # Pass an explicit '--localstatedir' so that configure does not error out if
669 # it finds an existing installation with a different localstatedir. Inherit
670 # 'ac_cv_guix_test_root' so that "make check" in $(distdir) does not have to
671 # repopulate the whole store, and to make sure $(GUIX_TEST_ROOT) is short
672 # enough for shebangs.
673 AM_DISTCHECK_CONFIGURE_FLAGS = \
674 --localstatedir="$$dc_install_base/var" \
675 --with-libgcrypt-prefix="$(LIBGCRYPT_PREFIX)" \
676 --with-libgcrypt-libdir="$(LIBGCRYPT_LIBDIR)" \
677 --with-nix-prefix="$(NIX_PREFIX)" \
678 --enable-daemon \
679 ac_cv_guix_test_root="$(GUIX_TEST_ROOT)"
680
681 # Name of the 'guix' package shipped in the binary tarball.
682 GUIX_FOR_BINARY_TARBALL = guile3.0-guix
683
684 # The self-contained tarball.
685 guix-binary.%.tar.xz:
686 $(AM_V_GEN)GUIX_PACKAGE_PATH= \
687 tarball=`$(top_builddir)/pre-inst-env guix pack -C xz \
688 --fallback \
689 -s "$*" --localstatedir --profile-name=current-guix \
690 $(GUIX_FOR_BINARY_TARBALL)` ; \
691 cp "$$tarball" "$@.tmp" ; mv "$@.tmp" "$@"
692
693
694 dist-hook: gen-ChangeLog gen-AUTHORS gen-tarball-version
695 dist-hook: assert-no-store-file-names
696 dist-hook: doc-po-update
697
698 distcheck-hook: assert-binaries-available assert-final-inputs-self-contained
699
700 EXTRA_DIST += $(top_srcdir)/.version
701 BUILT_SOURCES += $(top_srcdir)/.version
702 $(top_srcdir)/.version:
703 echo $(VERSION) > "$@-t" && mv "$@-t" "$@"
704
705 gen-tarball-version:
706 echo $(VERSION) > "$(distdir)/.tarball-version"
707
708 gen-ChangeLog:
709 $(AM_V_GEN)if test -d .git; then \
710 $(top_srcdir)/build-aux/gitlog-to-changelog \
711 > $(distdir)/ChangeLog.tmp; \
712 rm -f $(distdir)/ChangeLog; \
713 mv $(distdir)/ChangeLog.tmp $(distdir)/ChangeLog; \
714 fi
715
716 gen-AUTHORS:
717 $(AM_V_GEN)if test -d .git; then \
718 rm -f "$(distdir)/AUTHORS"; \
719 $(top_builddir)/pre-inst-env "$(GUILE)" \
720 "$(top_srcdir)/build-aux/generate-authors.scm" \
721 "$(top_srcdir)" "$(distdir)/AUTHORS"; \
722 fi
723
724 # Like 'dist', but regenerate 'configure' so we get an up-to-date
725 # 'PACKAGE_VERSION' string. (In Gnulib, 'GNUmakefile' has a special trick to
726 # do that whenever a 'dist' target is used.)
727 dist-with-updated-version:
728 @echo "Running './bootstrap' for new version string..."
729 $(top_srcdir)/bootstrap
730 $(MAKE) $(AM_MAKEFLAGS) $(top_srcdir)/.version dist
731
732 .PHONY: dist-with-updated-version
733
734 \f
735 #
736 # Release management.
737 #
738
739 releasedir = release-$(PACKAGE_VERSION)
740
741 PACKAGE_FULL_TARNAME = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
742
743 # List of source tarballs produced. This must be kept in sync with the
744 # 'dist-' options of 'AM_INIT_AUTOMAKE' in 'configure.ac'.
745 SOURCE_TARBALLS = \
746 $(foreach ext,tar.gz,$(PACKAGE_FULL_TARNAME).$(ext))
747
748 # Systems supported by Guix.
749 SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux armhf-linux aarch64-linux
750
751 # Guix binary tarballs.
752 BINARY_TARBALLS = \
753 $(foreach system,$(SUPPORTED_SYSTEMS),guix-binary.$(system).tar.xz)
754
755 # Systems supported by Guix System.
756 GUIX_SYSTEM_SUPPORTED_SYSTEMS ?= x86_64-linux i686-linux
757
758 # Systems for which we build Guix VMs.
759 GUIX_SYSTEM_VM_SYSTEMS ?= x86_64-linux
760
761 # Prefix of the Guix installation image file name.
762 GUIX_SYSTEM_IMAGE_BASE = guix-system-install-$(PACKAGE_VERSION)
763
764 # Prefix of the Guix VM image file name.
765 GUIX_SYSTEM_VM_IMAGE_BASE = guix-system-vm-image-$(PACKAGE_VERSION)
766
767 # Flags for 'guix system vm-image'. By default create a VM image that appears
768 # to have a 20G hard disk.
769 GUIX_SYSTEM_VM_IMAGE_FLAGS ?= --image-size=30G
770
771 # Return the sequence of '-s' flags for the given systems.
772 system_flags = $(foreach system,$(1),-s $(system))
773
774 # The release process works in several phases:
775 #
776 # 0. We assume the developer created a 'vX.Y' tag.
777 # 1. Build the source tarball.
778 # 2. Update the 'guix' package so that it corresponds to the 'vX.Y' tag.
779 # 3. Build the binary tarballs for that 'guix' package.
780 # 4. Update the 'guix' package again.
781 # 5. Build the installation images. The images will run 'guix'
782 # corresponding to 'vX.Y' + 1 commit, and they will install 'vX.Y'.
783 #
784 # This 'release' target takes care of everything and copies the resulting
785 # files to $(releasedir).
786 #
787 # XXX: Depend on 'dist' rather than 'distcheck' to work around the Gettext
788 # issue described at <https://savannah.gnu.org/bugs/index.php?51027>.
789 release: dist-with-updated-version
790 cd po; git checkout .
791 @if ! git diff-index --quiet HEAD; then \
792 echo "There are uncommitted changes; stopping." >&2 ; \
793 exit 1 ; \
794 fi
795 $(MKDIR_P) "$(releasedir)"
796 rm -f "$(releasedir)"/*
797 mv $(SOURCE_TARBALLS) "$(releasedir)"
798 $(top_builddir)/pre-inst-env "$(GUILE)" \
799 $(top_srcdir)/build-aux/update-guix-package.scm \
800 "`git rev-parse HEAD`" "$(PACKAGE_VERSION)"
801 git add $(top_srcdir)/gnu/packages/package-management.scm
802 git commit -m "gnu: guix: Update to $(PACKAGE_VERSION)."
803 $(top_builddir)/pre-inst-env guix build $(GUIX_FOR_BINARY_TARBALL) \
804 $(call system_flags,$(SUPPORTED_SYSTEMS)) \
805 -v1 --no-grafts --fallback
806 rm -f $(BINARY_TARBALLS)
807 $(MAKE) $(BINARY_TARBALLS)
808 for system in $(SUPPORTED_SYSTEMS) ; do \
809 mv "guix-binary.$$system.tar.xz" \
810 "$(releasedir)/guix-binary-$(PACKAGE_VERSION).$$system.tar.xz" ; \
811 done
812 $(top_builddir)/pre-inst-env "$(GUILE)" \
813 $(top_srcdir)/build-aux/update-guix-package.scm \
814 "`git rev-parse HEAD`"
815 git add $(top_srcdir)/gnu/packages/package-management.scm
816 git commit -m "gnu: guix: Update to `git rev-parse HEAD | cut -c1-7`."
817 $(top_builddir)/pre-inst-env guix build guix \
818 $(call system_flags,$(GUIX_SYSTEM_SUPPORTED_SYSTEMS)) \
819 -v1 --no-grafts --fallback
820 for system in $(GUIX_SYSTEM_SUPPORTED_SYSTEMS) ; do \
821 image=`$(top_builddir)/pre-inst-env \
822 guix system disk-image \
823 --file-system-type=iso9660 \
824 --system=$$system --fallback \
825 gnu/system/install.scm` ; \
826 if [ ! -f "$$image" ] ; then \
827 echo "failed to produced Guix installation image for $$system" >&2 ; \
828 exit 1 ; \
829 fi ; \
830 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" ; \
831 mv "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz.tmp" \
832 "$(releasedir)/$(GUIX_SYSTEM_IMAGE_BASE).$$system.iso.xz" ; \
833 done
834 for system in $(GUIX_SYSTEM_VM_SYSTEMS) ; do \
835 image=`$(top_builddir)/pre-inst-env \
836 guix system vm-image $(GUIX_SYSTEM_VM_IMAGE_FLAGS) \
837 --save-provenance \
838 --system=$$system --fallback \
839 gnu/system/examples/vm-image.tmpl` ; \
840 if [ ! -f "$$image" ] ; then \
841 echo "failed to produced Guix VM image for $$system" >&2 ; \
842 exit 1 ; \
843 fi ; \
844 xz < "$$image" > "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" ; \
845 mv "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz.tmp" \
846 "$(releasedir)/$(GUIX_SYSTEM_VM_IMAGE_BASE).$$system.xz" ; \
847 done
848 @echo
849 @echo "Congratulations! All the release files are now in $(releasedir)."
850 @echo
851
852 update-guix-package:
853 git rev-parse HEAD
854 $(top_builddir)/pre-inst-env "$(GUILE)" \
855 $(top_srcdir)/build-aux/update-guix-package.scm \
856 "`git rev-parse HEAD`"
857
858 # Location of a checkout of <git://git.savannah.gnu.org/guix/maintenance.git>.
859 # Package data from this checkout is used by 'update-NEWS.scm'.
860 GUIX_MAINTENANCE_DIRECTORY ?= $(top_srcdir)/../guix-maintenance
861
862 update-NEWS: $(GOBJECTS)
863 $(top_builddir)/pre-inst-env "$(GUILE)" \
864 $(top_srcdir)/build-aux/update-NEWS.scm \
865 $(top_srcdir)/NEWS "$(GUIX_MAINTENANCE_DIRECTORY)/data"
866
867 # Make sure we're not shipping a file that embeds a local /gnu/store file name.
868 assert-no-store-file-names:
869 $(AM_V_at)if grep -r --exclude=*.texi --exclude=*.info \
870 --exclude=*.info-[0-9] --exclude=*.dot \
871 --exclude=*.eps --exclude-dir=bootstrap \
872 --exclude=guix-manual.pot --exclude=guix-manual.*.po \
873 --exclude=guix-cookbook.pot --exclude=guix-cookbook.*.po \
874 --exclude=guix-prettify.el \
875 --exclude=ChangeLog* \
876 --exclude=binutils-boot-2.20*.patch \
877 -E "$(storedir)/[a-z0-9]{32}-" $(distdir) ; \
878 then \
879 echo "error: store file names embedded in the distribution" >&2 ; \
880 exit 1 ; \
881 fi
882
883 # Make sure important substitutes are available.
884 assert-binaries-available: $(GOBJECTS)
885 $(AM_V_at)$(top_builddir)/pre-inst-env \
886 guix weather -m "$(top_srcdir)/etc/release-manifest.scm" \
887 --display-missing
888
889 # Make sure the final inputs don't refer to bootstrap tools.
890 assert-final-inputs-self-contained: $(GOBJECTS)
891 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
892 "$(top_srcdir)/build-aux/check-final-inputs-self-contained.scm"
893
894 # Validate channel news.
895 check-channel-news: $(GOBJECTS)
896 $(AM_V_at)$(top_builddir)/pre-inst-env "$(GUILE)" \
897 "$(top_srcdir)/build-aux/check-channel-news.scm"
898
899 # Compute the Hydra jobs and write them in the target file.
900 hydra-jobs.scm: $(GOBJECTS)
901 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
902 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
903 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
904 "$(top_srcdir)/build-aux/hydra/gnu-system.scm" > "$@.tmp"
905 $(AM_V_at)mv "$@.tmp" "$@"
906
907 # Compute the Cuirass jobs and write them in the target file.
908 cuirass-jobs.scm: $(GOBJECTS)
909 $(AM_V_at)$(MKDIR_P) "`dirname "$@"`"
910 $(AM_V_GEN)$(top_builddir)/pre-inst-env "$(GUILE)" \
911 "$(top_srcdir)/build-aux/hydra/evaluate.scm" \
912 "$(top_srcdir)/build-aux/cuirass/gnu-system.scm" \
913 cuirass > "$@.tmp"
914 $(AM_V_at)mv "$@.tmp" "$@"
915
916 .PHONY: gen-ChangeLog gen-AUTHORS gen-tarball-version
917 .PHONY: assert-no-store-file-names assert-binaries-available
918 .PHONY: assert-final-inputs-self-contained check-channel-news
919 .PHONY: clean-go make-go as-derivation authenticate
920 .PHONY: update-guix-package update-NEWS release
921
922 # Downloading up-to-date PO files.
923
924 # make-download-po-rule DOMAIN DIRECTORY [FILE-NAME-PREFIX]
925 define make-download-po-rule
926
927 download-po.$(1):
928 if [ -f "$(top_srcdir)/$(2)/LINGUAS" ]; then \
929 LINGUAS="`grep -v '^[[:blank:]]*#' < $(top_srcdir)/$(2)/LINGUAS`" ; \
930 else \
931 LINGUAS="`(cd $(top_srcdir)/$(2); \
932 for i in *.po; do echo $$$$i; done) | cut -d . -f 2`" ; \
933 fi ; \
934 for lang in $$$$LINGUAS; do \
935 if wget -nv -O "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" \
936 "https://translationproject.org/latest/$(1)/$$$$lang.po" ; \
937 then \
938 mv "$(top_srcdir)/$(2)/$(3)$$$$lang.po"{.tmp,} ; \
939 else \
940 rm "$(top_srcdir)/$(2)/$(3)$$$$lang.po.tmp" ; \
941 fi ; \
942 done
943
944 .PHONY: download-po.$(1)
945
946 endef
947
948 $(eval $(call make-download-po-rule,guix,po/guix))
949 $(eval $(call make-download-po-rule,guix-packages,po/packages))
950 $(eval $(call make-download-po-rule,guix-manual,po/doc,guix-manual.))
951
952 download-po: $(foreach domain,guix guix-packages guix-manual,download-po.$(domain))
953 .PHONY: download-po
954
955 ## -------------- ##
956 ## Silent rules. ##
957 ## -------------- ##
958
959 AM_V_DL = $(AM_V_DL_$(V))
960 AM_V_DL_ = $(AM_V_DL_$(AM_DEFAULT_VERBOSITY))
961 AM_V_DL_0 = @echo " DL " $@;
962
963 AM_V_DOT = $(AM_V_DOT_$(V))
964 AM_V_DOT_ = $(AM_V_DOT_$(AM_DEFAULT_VERBOSITY))
965 AM_V_DOT_0 = @echo " DOT " $@;
966
967 AM_V_HELP2MAN = $(AM_V_HELP2MAN_$(V))
968 AM_V_HELP2MAN_ = $(AM_V_HELP2MAN_$(AM_DEFAULT_VERBOSITY))
969 AM_V_HELP2MAN_0 = @echo " HELP2MAN" $@;
970
971 AM_V_PO4A = $(AM_V_PO4A_$(V))
972 AM_V_PO4A_ = $(AM_V_PO4A_$(AM_DEFAULT_VERBOSITY))
973 AM_V_PO4A_0 = @echo " PO4A" $@;
974
975 AM_V_POXREF = $(AM_V_POXREF_$(V))
976 AM_V_POXREF_ = $(AM_V_POXREF_$(AM_DEFAULT_VERBOSITY))
977 AM_V_POXREF_0 = @echo " POXREF" $@;