>mer. 16 avril 2025 at 21:49, Liliana Marie Prikler wrote: >>      (source >>       (origin >>         (method url-fetch) >>         (uri (string-append >> "https://elpa.nongnu.org/nongnu/ws-butler-" version >>                             ".tar")) >>         (sha256 >> -        (base32 >> "1vy7g2ryg1drcz9zpn011d36zcd9a5b5yny5hwpjrllqj5dg73jx")))) >> +        (base32 >> "14q19rvps5jcshyls3aa55pxmqbbkhhbdlchnl7ybxwkvvmig9zh")))) >>      (build-system emacs-build-system) >> +    (arguments >> +     (list >> +      #:tests? #f ; no Makefile in tar file >> +      #:test-command #~(list "make" "test"))) > Why do you use "make" for a test command, when there's no Makefile? There is a Makefile in the repo, including a target for tests: https://git.savannah.gnu.org/cgit/emacs/nongnu.git/tree/?h=elpa/ws-butler Except that the Makefile is removed from elpa .tar file. Similar to other packages, we disable tests, specifying the reason, while we provide the recipe to run them, once the issue fixed. Not sure what is the right option with elpa .tar files, cloning nongnu instead ? remove test-command ? C.