aboutsummaryrefslogtreecommitdiff
path: root/build-aux/xgettext.scm
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2024-12-15 13:18:25 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2024-12-16 23:32:09 +0300
commit48d4df3c29a9b3d8806831cd3dea65fac92567ca (patch)
tree4d3e6e8edcb87ea027751deb64587dcf3f1efd67 /build-aux/xgettext.scm
parent4dd316cd82ff431845417ea2fc3047cacc95f0e4 (diff)
downloadguix-48d4df3c29a9b3d8806831cd3dea65fac92567ca.tar.gz
guix-48d4df3c29a9b3d8806831cd3dea65fac92567ca.zip
gnu: magic-wormhole-transit-relay: Fix build.
* gnu/packages/magic-wormhole.scm (magic-wormhole-transit-relay): Fix build. [native-inputs]: Add "python-setuptools" and "python-wheel". Sort alphabetically. Change-Id: Ibc1b611f2f0c4e5975d8e123001c5afced87a367 Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'build-aux/xgettext.scm')
0 files changed, 0 insertions, 0 deletions
y unbound. (call-with-http-server): set %http-server-port to the allocated port while the thunk is called. * tests/derivations.scm: adjust test cases to use automatically assign a port. As there is no risk of a port conflict now, do not make any tests conditional upon 'http-server-can-listen?' anymore. * tests/elpa.scm: likewise. * tests/lint.scm: likewise, and add a TODO comment about a port that is still hard-coded. * tests/texlive.scm: likewise. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos 2020-12-02import: utils: 'recursive-import' accepts an optional version parameter....This adds a key VERSION to 'recursive-import' and moves the parameter REPO to a key. This also changes all the places that rely on 'recursive-import'. * guix/import/utils.scm (recursive-import): Add the VERSION key. Make REPO a key. (package->definition): Add optional 'append-version?'. * guix/scripts/import/crate.scm (guix-import-crate): Add the VERSION key. * guix/import/crate.scm (crate->guix-package): Add the VERSION key. (crate-recursive-import): Pass VERSION to recursive-import, remove now unnecessary code. * guix/import/cran.scm (cran->guix-package, cran-recursive-import): Change the REPO parameter to a key. * guix/import/elpa.scm (elpa->guix-package, elpa-recursive-import): Likewise. * guix/import/gem.scm (gem->guix-package, recursive-import): Likewise. * guix/import/opam.scm (opam-recurive-import): Likewise. * guix/import/pypi.scm (pypi-recursive-import): Likewise. * guix/import/stackage.scm (stackage-recursive-import): Likewise. * guix/scripts/import/cran.scm (guix-import-cran): Likewise. * guix/scripts/import/elpa.scm (guix-import-elpa): Likewise. * tests/elpa.scm (eval-test-with-elpa): Likewise. * tests/import-utils.scm (recursive-import): Likewise. Co-authored-by: Hartmut Goebel <h.goebel@crazy-compilers.com> Martin Becze