summary refs log tree commit diff
AgeCommit message (Collapse)Author
2021-06-04gnu: wireguard-tools: Set #:sh argument of 'wrap-program'.Maxime Devos
* gnu/packages/vpn.scm (wireguard-tools)[arguments]<#:phases>{wrap-wg-quick}: Set #:sh argument of ‘wrap-program’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: protonvpn-cli: Set #:sh argument of 'wrap-program'.Maxime Devos
* gnu/packages/vpn.scm (protonvpn-cli)[arguments]<#:phases>{wrap-wrapper}: Set #:sh argument of ‘wrap-program’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: openconnect-sso: Set #:sh argument of 'wrap-program'.Maxime Devos
* gnu/packages/vpn.scm (openconnect-sso)[arguments]<#:phases>{wrap-qt-process-path} Set #:sh argument of ‘wrap-program’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: vpnc-scripts: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/vpn.scm (vpnc-scripts)[arguments]<#:phases>{wrap-scripts}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: clipmenu: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/xdisorg.scm (clipmenu)[arguments]<#:phases>{wrap-script}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: sieve-connect: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/mail.scm (sieve-connect)[arguments]<#:phases>{wrap-program}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: nanopolish: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/bioinformatics.scm (nanopolish)[arguments]<#:phases>{wrap-programs}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: gess: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/bioinformatics.scm (gess)[arguments]<#:phases>{install} Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: prinseq: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/bioinformatics.scm (prinseq)[arguments]<#:phases>{install}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: proteinortho: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/bioinformatics.scm (proteinortho)[arguments]<#:phases>{wrap-programs}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: bats: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/bash.scm (bats)[arguments]<#:builder>: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04gnu: carla: Set #:guile argument of 'wrap-script'.Maxime Devos
* gnu/packages/audio.scm (carla)[arguments]<#:phases>{wrap-executables}: Set #:guile argument of ‘wrap-script’. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04rakudo-build-system: Look up the interpreter in 'inputs'.Maxime Devos
* guix/build/rakudo-build-system.scm (wrap): Pass the shell interpreter from 'inputs' to 'wrap-program' using 'search-input-file'. Partially-Fixes: <https://issues.guix.gnu.org/47869> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04qt-build-system: Look up the interpreter in 'inputs'.Maxime Devos
* guix/build/qt-build-system.scm (wrap-all-programs): Pass the shell interpreter from 'inputs' to 'wrap-program' using 'search-input-file'. Partially-Fixes: <https://issues.guix.gnu.org/47869> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04python-build-system: Look up the interpreter in 'inputs'.Maxime Devos
* guix/build/python-build-system.scm (wrap): Pass the shell interpreter from 'inputs' to 'wrap-program' using 'search-input-file'. Partially-Fixes: <https://issues.guix.gnu.org/47869> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04glib-or-gtk-build-system: Look up the interpreter in 'inputs'.Maxime Devos
* guix/build/glib-or-gtk-build-system.scm (wrap-all-programs): Pass the shell interpreter from 'inputs' to 'wrap-program' using 'search-input-file'. Partially-Fixes: <https://issues.guix.gnu.org/47869> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04utils: Define ‘search-input-file’ procedure.Maxime Devos
The procedure ‘which’ from (guix build utils) is used for two different purposes: 1. for finding the absolute file name of a binary that needs to run during the build process 2. for finding the absolute file name of a binary, for the target system (as in --target=TARGET), e.g. for substituting sh->/gnu/store/.../bin/sh, python->/gnu/store/.../bin/python. When compiling natively (target=#f in Guix parlance), this is perfectly fine. However, when cross-compiling, there is a problem. "which" looks in $PATH for binaries. That's good for purpose (1), but incorrect for (2), as the $PATH contains binaries from native-inputs instead of inputs. This commit defines a ‘search-input-file’ procedure. It functions like 'which', but instead of searching in $PATH, it searches in the 'inputs' of the build phase, which must be passed to ‘search-input-file’ as an argument. Also, the file name must include "bin/" or "sbin/" as appropriate. * guix/build/utils.scm (search-input-file): New procedure. * tests/build-utils.scm ("search-input-file: exception if not found") ("search-input-file: can find if existent"): Test it. * doc/guix.texi (File Search): Document it. Partially-Fixes: <https://issues.guix.gnu.org/47869> Co-Authored-By: Ludovic Courtès <ludo@gnu.org> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-04utils: Allow overriding the shell interpreter in ‘wrap-program’.Maxime Devos
Previously, when creating new wrappers, 'wrap-program' would search for an interpreter to use in PATH. However, this is incorrect when cross-compiling. Allow overriding the shell interpreter to use, via an optional keyword argument #:sh. In time, when all users of 'wrap-program' have been corrected, this keyword argument can be made mandatory. * guix/build/utils.scm (wrap-program): Introduce a #:sh keyword argument, defaulting to (which "sh"). Use this keyword argument. Partially-Fixes: <https://issues.guix.gnu.org/47869> Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2021-06-01gnu: jemalloc: Fix building on powerpc-linux.Efraim Flashner
* gnu/packages/jemalloc.scm (jemalloc)[arguments]: Change configure-flags so they are configurable per-architecture.
2021-05-28gnu: guile-3.0: Fix building on powerpc-linux.Efraim Flashner
* gnu/packages/guile.scm (guile-3.0)[source]: Adjust snippet to skip OOM-test. [arguments]: On powerpc add a phase to adjust the compile flags during the bootstrap process. Add phase to skip known failing test.
2021-05-25guile: Leave 'scm_install_gmp_memory_functions' unchanged.Ludovic Courtès
Since the switch to Guile 3.0.7 using mini-GMP, we can leave 'scm_install_gmp_memory_functions' to its default value, which is to use custom memory allocators; there is no interference with users of GMP such as GnuTLS/Nettle. * gnu/packages/aux-files/guile-launcher.c (main) [!SCM_ENABLE_MINI_GMP]: Leave 'scm_install_gmp_memory_functions' unchanged.
2021-05-25ci: Add derivation inputs.Mathieu Othacehe
* gnu/ci.scm (derivation->job): Add the derivation inputs to the job association list.
2021-05-24gnu: mesa: Unify custom phases.Efraim Flashner
* gnu/packages/gl.scm (mesa)[arguments]: Rewrite custom 'disable-failing-test phases to be one joint phase. Adjust 'split-outputs phase to simplify.
2021-05-23gnu: mesa: Add support for powerpc-linux.Efraim Flashner
* gnu/packages/gl.scm (mesa)[inputs]: Add llvm, glslang for powerpc. [arguments]: Customize the configure flags for powerpc. Add powerpc specific phase to skip failing tests.
2021-05-23gnu: binutils: Fix bug in test suite in libiberty.Efraim Flashner
* gnu/packages/base.scm (binutils)[source]: Add patch. * gnu/packages/patches/binutils-libiberty-endianness-bug.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it.
2021-05-23gnu: gcc-boot0: Use 128-bit long-double on powerpc-linux.Efraim Flashner
* gnu/packages/commencement.scm (gcc-boot0)[arguments]: Adjust configure-flag to also use '--with-long-double-128' on powerpc-linux.
2021-05-23gnu: bootstrap: Add support for powerpc-linux.Efraim Flashner
On 923bb70a1bff657125c3008f119a477e5cb57c2b gnu:glibc-for-bootstrap: Fix patch. Run ./pre-inst-env guix build --target=powerpc-linux-gnu bootstrap-tarballs Producing /gnu/store/dyj1wvayyp1ihaknkxniz1xamcf4yrhl-bootstrap-tarballs-0 With guix hash -rx /gnu/store/dyj1wvayyp1ihaknkxniz1xamcf4yrhl-bootstrap-tarballs-0 02xx2ydj28pwv3vflqffinpq1icj09gzi9icm8j4bwc4lca9irxn * gnu/packages/bootstrap.scm (%bootstrap-executables): Add entries for powerpc-linux. (%bootstrap-guile-hash, %bootstrap-coreutils&co, %bootstrap-binutils, %bootstrap-glibc, %bootstrap-gcc): Add entry for powerpc-linux. * gnu/packages.scm (%supported-systems): Add powerpc-linux. (%hydra-supported-systems): Remove powerpc-linux. * m4/guix.m4: Add powerpc-linux as a supported system.
2021-05-22gnu: python-pyflakes: Remove obsolete patch.Marius Bakke
This patch was added on 'core-updates' in 43c889de85e79f279931d6cced261f54c9be5075, but no longer necessary since the update to 2.3.1 in 91741db5397174a2e96b4010c3c9ff53d34e8ef0. * gnu/packages/patches/python-pyflakes-fix-tests.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/python-xyz.scm (python-pyflakes)[source](patches): Remove.
2021-05-22gnu: python-tqdm: Update to 4.60.0.Marius Bakke
* gnu/packages/python-xyz.scm (python-tqdm): Update to 4.60.0. [native-inputs]: Remove PYTHON-NOSE. Add PYTHON-PYTEST, PYTHON-PYTEST-ASYNCIO, PYTHON-PYTEST-TIMEOUT, PYTHON-SETUPTOOLS-SCM, and PYTHON-TOML. [arguments]: Use pytest instead of nosetests in check phase.
2021-05-22gnu: Remove 'texlive-amsfonts/patched'.Marius Bakke
* gnu/packages/tex.scm (texlive-amsfonts)[arguments]: Add the fix from 'texlive-amsfonts/patched'. (texlive-amsfonts/patched): Remove variable. * gnu/packages/python-xyz.scm (python-nbconvert)[native-inputs]: Change from TEXLIVE-AMSFONTS/PATCHED to TEXLIVE-AMSFONTS.
2021-05-22gnu: guile-static: Fix build without GMP.Marius Bakke
* gnu/packages/make-bootstrap.scm (make-guile-static)[arguments]: Add "--enable-mini-gmp" to #:configure-flags.
2021-05-22gnu: guile-static: Remove obsolete workaround.Marius Bakke
* gnu/packages/make-bootstrap.scm (make-guile-static)[arguments]: Don't disable JIT on ARMv7.
2021-05-22Merge branch 'master' into core-updatesMarius Bakke
2021-05-22gnu: autotrace: Prepare for GLib 2.68 and later.Marius Bakke
* gnu/packages/patches/autotrace-glib-compat.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/graphics.scm (autotrace)[source](patches): New field.
2021-05-22gnu: emacs-libgit: Fix installation failure.Marius Bakke
* gnu/packages/emacs-xyz.scm (emacs-libgit)[arguments]: Adjust for renamed source directory. While at it, removing trailing #t's.
2021-05-22gnu: wget: Update to 1.21.1.Marius Bakke
* gnu/packages/wget.scm (wget): Update to 1.21.1.
2021-05-22gnu: gtk-doc: Remove obsolete workaround.Marius Bakke
* gnu/packages/gtk.scm (gtk-doc)[arguments]: Remove set-HOME phase.
2021-05-22gnu: libxaw: Update to 1.0.14.Marius Bakke
* gnu/packages/xorg.scm (libxaw): Update to 1.0.14.
2021-05-22gnu: libxt: Update to 1.2.1.Marius Bakke
* gnu/packages/xorg.scm (libxt): Update to 1.2.1. * gnu/packages/patches/libxt-guix-search-paths.patch: Adjust context.
2021-05-22gnu: xkeyboard-config: Update to 2.32.Marius Bakke
* gnu/packages/xorg.scm (xkeyboard-config): Update to 2.32.
2021-05-22gnu: libxfixes: Update to 6.0.0.Marius Bakke
* gnu/packages/xorg.scm (libxfixes): Update to 6.0.0.
2021-05-22gnu: libxres: Update to 1.2.1.Marius Bakke
* gnu/packages/xorg.scm (libxres): Update to 1.2.1.
2021-05-22gnu: xorgproto: Update to 2021.4.Marius Bakke
* gnu/packages/xorg.scm (xorgproto): Update to 2021.4.
2021-05-22gnu: util-macros: Update to 1.19.3.Marius Bakke
* gnu/packages/xorg.scm (util-macros): Update to 1.19.3.
2021-05-22gnu: doxygen: Update to 1.9.1.Marius Bakke
* gnu/packages/patches/doxygen-1.8.17-runtests.patch, gnu/packages/patches/doxygen-test.patch: Delete files. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/documentation.scm (doxygen): Update to 1.9.1. [source](patches): Remove. [home-page]: Use HTTPS. [arguments]: Disable bibtex test with a phase instead of patch.
2021-05-22gnu: SWIG: Update to 4.0.2.Marius Bakke
* gnu/packages/swig.scm (swig): Update to 4.0.2. [arguments]: Remove.
2021-05-22gnu: Tcl/Tk: Update to 8.6.11.Marius Bakke
* gnu/packages/patches/tcl-fix-cross-compilation.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly. * gnu/packages/tcl.scm (tcl): Update to 8.6.11. [source](patches): Remove. [arguments]: Remove trailing #t's. (tk): Update to 8.6.11.1. [arguments]: Remove trailing #t's and reindent.
2021-05-22gnu: libuv: Update to 1.41.0.Marius Bakke
* gnu/packages/libevent.scm (libuv): Update to 1.41.0. [native-inputs]: Change from AUTOCONF-WRAPPER to AUTOCONF.
2021-05-22gnu: libfaketime: Use absolute 'date' reference.Marius Bakke
* gnu/packages/check.scm (libfaketime)[inputs]: Add COREUTILS. [arguments]: Add phase to substitute the absolute 'date' file name.
2021-05-22gnu: help2man: Update to 1.48.3.Marius Bakke
* gnu/packages/man.scm (help2man): Update to 1.48.3.