aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
author宋文武 <iyzsong@member.fsf.org>2024-06-19 20:38:37 +0800
committerLudovic Courtès <ludo@gnu.org>2024-08-31 10:45:18 +0200
commit98b4fb8dab5fa26ae18304a5526210d6ca33b535 (patch)
treee5b09389daa854cf986a49a5c9c61b944062af8b /tests
parenta5a6ab4015db874113d17a41cc1caa98dc8ea2b3 (diff)
downloadguix-98b4fb8dab5fa26ae18304a5526210d6ca33b535.tar.gz
guix-98b4fb8dab5fa26ae18304a5526210d6ca33b535.zip
gnu: alpine: Disable parallel build.
* gnu/packages/mail.scm (alpine)[arguments]: Add '#:parallel-build? #f'. Change-Id: Ic5c7f34ba8b720762b345670f4d568af5e39cb2d
Diffstat (limited to 'tests')
0 files changed, 0 insertions, 0 deletions
tests/opam.scm?id=d9dfbf886ddbb92dfdaa118bb9765e78aad5c53a'>Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-08-21guix: opam: More flexibility in the importer....* guix/scripts/import/opam.scm: Pass all instances of --repo as a list to the importer. * guix/import/opam.scm (opam-fetch): Stop expecting "expanded" repositories and call get-opam-repository instead to keep values "symbolic" as long as possible and factorize. (get-opam-repository): Use the same repository source as CLI opam does (i.e. HTTP-served index.tar.gz instead of git repositories). (find-latest-version): Be more flexible on the repositories structure instead of expecting packages/PACKAGE-NAME/PACKAGE-NAME.VERSION/. * tests/opam.scm: Update the call to opam->guix-package since repo is now expected to be a list and remove the mocked get-opam-repository deprecated by the support for local folders by the actual implementation. * doc/guix.texi: Document the new semantics and valid arguments for the --repo option. Signed-off-by: Julien Lepiller <julien@lepiller.eu> Alice BRENON 2021-07-20import: opam: Emit new-style package inputs....* guix/import/opam.scm (opam->guix-package): Wrap INPUTS and NATIVE-INPUTS in 'list' instead of 'quasiquote'. (dependency-list->inputs): Return a list of symbols. * tests/opam.scm ("opam->guix-package"): Adjust accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sarah Morgensen 2021-05-28import: opam: Generate license for package....* guix/import/opam.scm (opam->guix-package): Generate license for the ‘license’ field. * tests/opam.scm (test-opam-file): Update accordingly. ("opam->guix-package"): Likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Xinglu Chen