[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48320] [PATCH v2] lint: Verify if #:tests? is respected in the 'che
From: |
Mathieu Othacehe |
Subject: |
[bug#48320] [PATCH v2] lint: Verify if #:tests? is respected in the 'check' phase. |
Date: |
Tue, 29 Jun 2021 12:34:48 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) |
Hello Maxime,
Thanks for the new revision.
> +@deffn {Procedure} gexp->approximate-sexp @var{gexp}
> +Sometimes, it may be useful to convert a G-exp into a S-exp.
> +For example, some linters (@pxref{Invoking guix lint})
You can write longer sentences here, up to 78 columns. If you are using
Emacs, fill-paragraph does the right thing.
> + (define (sexp-uses-tests?? sexp)
> + "Test if SEXP contains the symbol 'tests?'."
> + (sexp-contains-atom? sexp 'tests?))
> + (define (sexp-contains-atom? sexp atom)
> + "Test if SEXP contains ATOM."
> + (if (pair? sexp)
> + (or (sexp-contains-atom? (car sexp) atom)
> + (sexp-contains-atom? (cdr sexp) atom))
> + (eq? sexp atom)))
It would make more sense to define "sexp-uses-tests??" later as it uses
"sexp-contains-atom" that is defined afterwards.
> + (or (check-phases-delta head)
> + (check-phases-deltas tail)))
I think it should be "append" instead of "or". Otherwise, it fails to
detect package which 'replace is not the first phase, see mkvtoolnix for
instance.
Otherwise looks fine :)
Thanks,
Mathieu