aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/mm-common-reproducible-tarball.patch
diff options
context:
space:
mode:
authorPaul A. Patience <paul@apatience.com>2023-10-10 14:20:46 +0000
committerMathieu Othacehe <othacehe@gnu.org>2023-10-25 11:59:59 +0200
commitc6d2bb9d0a1e7e74af3984b7dad1ffacff20768c (patch)
tree1d25aaf6696cce96cb59731bc865bc67c11fdc9a /gnu/packages/patches/mm-common-reproducible-tarball.patch
parentefe9e0ce0cccee468ad7640e5cda9edebf504dab (diff)
downloadguix-c6d2bb9d0a1e7e74af3984b7dad1ffacff20768c.tar.gz
guix-c6d2bb9d0a1e7e74af3984b7dad1ffacff20768c.zip
gnu: gnuplot: Update to 5.4.9.
* gnu/packages/maths.scm (gnuplot): Update to 5.4.9. [arguments]<#:configure-flags>: Add --with-qt=no. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages/patches/mm-common-reproducible-tarball.patch')
0 files changed, 0 insertions, 0 deletions
href='/guix/commit/nix/libstore/local-store.hh?id=f6919ebdc6b0ce0286814cc6ab0564b1a4c67f5f'>daemon: Run 'guix substitute' directly and assume a single substituter.Ludovic Courtès The daemon had a mechanism that allows it to handle a list of substituters and try them sequentially; this removes it. * nix/scripts/substitute.in: Remove. * nix/local.mk (nodist_pkglibexec_SCRIPTS): Remove. * config-daemon.ac: Don't output 'nix/scripts/substitute'. * nix/libstore/build.cc (SubstitutionGoal)[subs, sub, hasSubstitute]: Remove. [tryNext]: Make private. (SubstitutionGoal::SubstitutionGoal, SubstitutionGoal::init): Remove now unneeded initializers. (SubstitutionGoal::tryNext): Adjust to assume a single substituter: call 'amDone' upfront when we couldn't find substitutes. (SubstitutionGoal::tryToRun): Adjust to run 'guix substitute' via 'settings.guixProgram'. (SubstitutionGoal::finished): Call 'amDone(ecFailed)' upon failure instead of setting 'state' to 'tryNext'. * nix/libstore/globals.hh (Settings)[substituters]: Remove. * nix/libstore/local-store.cc (LocalStore::~LocalStore): Adjust to handle a single substituter. (LocalStore::startSubstituter): Remove 'path' parameter. Adjust to invoke 'settings.guixProgram'. Don't refer to 'run.program', which no longer exists. (LocalStore::querySubstitutablePaths): Adjust for 'runningSubstituters' being a singleton instead of a list. (LocalStore::querySubstitutablePathInfos): Likewise, and remove 'substituter' parameter. * nix/libstore/local-store.hh (RunningSubstituter)[program]: Remove. (LocalStore)[runningSubstituters]: Remove. [runningSubstituter]: New field. [querySubstitutablePathInfos]: Remove 'substituter' parameter. [startSubstituter]: Remove 'substituter' parameter. * nix/nix-daemon/guix-daemon.cc (main): Remove references to 'settings.substituters'. * nix/nix-daemon/nix-daemon.cc (performOp): Ignore the user's "build-use-substitutes" value when 'settings.useSubstitutes' is false.