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