summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-10-29 18:30:07 +0100
committerLudovic Courtès <ludo@gnu.org>2020-10-31 23:16:43 +0100
commitf68b3ba12dc7532dddde7dc63afb81a8492c661e (patch)
tree79d63569d34c05a677ede5461877730f2b1d422a /Makefile.am
parent1ae33664a67d9588ee730a2a1d46c29e20a92bcb (diff)
guix build: Move transformation options to (guix transformations).
* guix/transformations.scm: New file. * tests/scripts-build.scm: Rename to... * tests/transformations.scm: ... this. * Makefile.am (MODULES): Add 'guix/transformations.scm'. (SCM_TESTS): Adjust to rename. * guix/scripts/build.scm (numeric-extension?) (tarball-base-name, <downloaded-file>, download-to-store*) (compile-downloaded-file, package-with-source) (transform-package-source, evaluate-replacement-specs) (transform-package-inputs, transform-package-inputs/graft) (%not-equal, package-git-url, evaluate-git-replacement-specs) (transform-package-source-branch, transform-package-source-commit) (transform-package-source-git-url, package-dependents/spec) (package-toolchain-rewriting, transform-package-toolchain) (transform-package-with-debug-info, transform-package-tests) (%transformations, transformation-procedure, %transformation-options) (show-transformation-options-help, options->transformation) (package-transformations): Move to (guix transformations). * guix/scripts/environment.scm: Adjust accordingly. * guix/scripts/graph.scm: Likewise. * guix/scripts/install.scm: Likewise. * guix/scripts/pack.scm: Likewise. * guix/scripts/package.scm: Likewise. * guix/scripts/upgrade.scm: Likewise. * po/guix/POTFILES.in: Add 'guix/transformations.scm'.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index f3eb681a2b4..e7053ee4f45 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -105,6 +105,7 @@ MODULES = \
105 guix/derivations.scm \ 105 guix/derivations.scm \
106 guix/grafts.scm \ 106 guix/grafts.scm \
107 guix/repl.scm \ 107 guix/repl.scm \
108 guix/transformations.scm \
108 guix/inferior.scm \ 109 guix/inferior.scm \
109 guix/describe.scm \ 110 guix/describe.scm \
110 guix/quirks.scm \ 111 guix/quirks.scm \
@@ -456,7 +457,6 @@ SCM_TESTS = \
456 tests/pypi.scm \ 457 tests/pypi.scm \
457 tests/records.scm \ 458 tests/records.scm \
458 tests/scripts.scm \ 459 tests/scripts.scm \
459 tests/scripts-build.scm \
460 tests/search-paths.scm \ 460 tests/search-paths.scm \
461 tests/services.scm \ 461 tests/services.scm \
462 tests/services/linux.scm \ 462 tests/services/linux.scm \
@@ -473,6 +473,7 @@ SCM_TESTS = \
473 tests/syscalls.scm \ 473 tests/syscalls.scm \
474 tests/system.scm \ 474 tests/system.scm \
475 tests/texlive.scm \ 475 tests/texlive.scm \
476 tests/transformations.scm \
476 tests/ui.scm \ 477 tests/ui.scm \
477 tests/union.scm \ 478 tests/union.scm \
478 tests/upstream.scm \ 479 tests/upstream.scm \