# GNU Guix --- Functional package management for GNU # Copyright © 2023 Antoine R. Dumont # Copyright © 2023 Ludovic Courtès # # This file is part of GNU Guix. # # GNU Guix is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GNU Guix is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Guix. If not, see . # # Test the 'guix locate' command-line utility. # set -x RUN_EXPENSIVE_TESTS="${RUN_EXPENSIVE_TESTS:-false}" tmpdir="guix-index-$$" # In the following tests, we use two different databases, one for each # indexation method. tmpdb_manifests="$tmpdir/manifests/db.sqlite" tmpdb_store="$tmpdir/store/db.sqlite" trap 'rm -rf "$tmpdir" "$tmpdb_store" "$tmpdb_manifests"' EXIT guix locate --version # Preparing db locations for both indexation methods. mkdir -p "$(dirname "$tmpdb_manifests")" "$(dirname "$tmpdb_store")" cmd_manifests="guix locate --database=$tmpdb_manifests --method=manifests" cmd_store="guix locate --database=$tmpdb_store --method=store" # Lookup without any db should fail. guix locate --database="$tmpdb_manifests" guile && false guix locate --database="$tmpdb_store" guile && false # Lookup without anything in db should yield no results because the indexer # didn't stumble upon any profile. test -z "$(guix locate --database="$tmpdb_manifests" guile)" # Install a package. guix package --bootstrap --install guile-bootstrap \ --profile="$tmpdir/profile" # Look for 'guile'. $cmd_manifests --update $cmd_manifests guile | grep "$(guix build guile-bootstrap)/bin/guile" $cmd_manifests boot-9.scm | grep ^guile-bootstrap # Using a glob pattern. $cmd_manifests -g '*.scm' | grep "^guile-bootstrap.*boot-9" # Statistics. $cmd_manifests --stats if $RUN_EXPENSIVE_TESTS then $cmd_store --update $cmd_store guile $cmd_store guile | grep "$(guix build guile-bootstrap)/bin/guile" $cmd_store boot-9.scm | grep ^guile-bootstrap fi .gitignore
2-10-23
AgeCommit message (Expand)Author
etc: systemd services shouldn't ‘RemainAfterExit’....* etc/guix-daemon.service.in (RemainAfterExit): Don't. * etc/guix-publish.service.in (RemainAfterExit): Likewise don't. Tobias Geerinckx-Rice
2022-10-23etc: Add ‘Restart=always’ to both systemd services....* etc/guix-daemon.service.in (Restart): ‘Always’ do. * etc/guix-publish.service.in (Restart): Likewise. Tobias Geerinckx-Rice
2022-10-23etc: Add ‘OOMPolicy=continue’ to guix-daemon.service....* etc/guix-daemon.service.in (OOMPolicy): Continue. Tobias Geerinckx-Rice
2021-07-07guix-install.sh: Prompt for configuring substitutes discovery....Also ensure prompt_yes_no always print the message with a trailing space, which is more pleasing to the eye. * etc/guix-daemon.conf.in <--discover=no>: New guix-daemon option. * etc/guix-daemon.service.in: Likewise. * etc/init.d/guix-daemon.in: Likewise. * etc/openrc/guix-daemon.in: Likewise. * etc/guix-install.sh (configure_substitute_discovery): New procedure. (sys_enable_guix_daemon): Ask the user whether automatic substitute discovery should be enabled. Set the '--discover' argument accordingly. (prompt_yes_no): Add a trailing space to the message. (sys_authorize_build_farms): Remove trailing space from the message argument. * NEWS (Distribution): Add news. Maxim Cournoyer
2019-06-05etc: guix-daemon.service.in: Fix GUIX_LOCPATH quoting....Fixes <https://bugs.gnu.org/36074>. * etc/guix-daemon.service.in: Move the GUIX_LOCPATH environment variable name inside the quotes. Signed-off-by: Ricardo Wurmus <rekado@elephly.net> Jack Hill
2019-05-13Set 'LC_ALL=en_US.utf8' in systemd '.service' files....Fixes <https://bugs.gnu.org/35671>. * etc/guix-daemon.service.in (Environment): Quote the 'GUIX_LOCPATH' value; add 'LC_ALL'. * etc/guix-publish.service.in (Environment): Likewise. Ludovic Courtès
2018-11-23build: Binary tarball now populates the "current-guix" profile....* Makefile.am (guix-binary.%.tar.xz): Pass '--profile-name=current-guix'. Remove glibc and glibc-utf8-locales. * doc/guix.texi (Binary Installation): Update accordingly. * etc/guix-install.sh * etc/guix-install.sh (sys_create_store, sys_enable_guix_daemon) (sys_authorize_build_farms): Likewise. * etc/guix-publish.conf.in, etc/guix-publish.service.in, etc/guix-daemon.conf.in, etc/guix-daemon.service.in: Update file names accordingly. Ludovic Courtès
2017-04-22Increase "TasksMax" in 'guix-daemon.service'....* etc/guix-daemon.service.in (TasksMax): Increase to 8192. Signed-off-by: Leo Famulari <leo@famulari.name> Sergei Trofimovich