;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2017 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 . (define-module (test-search-paths) #:use-module (guix search-paths) #:use-module (ice-9 match) #:use-module (srfi srfi-64)) (define %top-srcdir (dirname (search-path %load-path "guix.scm"))) (test-begin "search-paths") (test-equal "evaluate-search-paths, separator is #f" (string-append %top-srcdir "/gnu/packages/bootstrap/aarch64-linux") ;; The following search path spec should evaluate to a single item: the ;; first directory that matches the "-linux$" pattern in ;; gnu/packages/bootstrap. (let ((spec (search-path-specification (variable "CHBOUIB") (files '("gnu/packages/bootstrap")) (file-type 'directory) (separator #f) (file-pattern "-linux$")))) (match (evaluate-search-paths (list spec) (list %top-srcdir)) (((spec* . value)) (and (eq? spec* spec) value))))) (test-end "search-paths") ebe19746ea253591aad'/>
AgeCommit message (Collapse)Author
2023-09-24etc/committer: Speed up surrounding-sexp.Ricardo Wurmus
The old surrounding-sexp procedure would read all S-expressions from the beginning of the file up to the given line number and then return the last encountered S-expression. This is quite wasteful. Instead we can record all lines that begin with an S-expression and jump straight to the offset closest to the desired line number to read the S-expression there. * etc/committer.scm.in (lines+offsets-with-opening-parens): New procedure. (surrounding-sexp): Use it.
2023-09-24etc/committer: Avoid reading original files more than once.Ricardo Wurmus
* etc/committer.scm.in (%original-file-cache): New variable. (read-original-file): New procedure. (read-original-file*): New procedure. (old-sexp): Use it.
2023-09-24etc/committer: Do not record positions when reading from git files.Ricardo Wurmus
This gives us a slight performance boost. * etc/committer.scm.in (main): Disable recording of positions.
2023-09-24etc/committer: Do not recompute changes when there are no definitions.Ricardo Wurmus
* etc/committer.scm.in (main): Reuse previously computed changes if there are no changes to the number of definitions.