On Wed, 2021-04-14 at 15:59 +0000, Ekaitz Zarraga wrote: > Hi, > > This set of patches update freecad from unstable to the 0.19.1 release. > > More information in this help-guix thread: > > https://lists.gnu.org/archive/html/help-guix/2021-04/msg00118.html > > Thanks! + `(#:tests? #f Why's that? ‘We’ prefer to have tests enabled when possible. Please document why tests are disabled here (with a comment #:tests? #f ; no tests / tests require dependency X, which is not packaged ...). + (add-before 'configure 'restore-pythonpath + (lambda _ + (substitute* "src/Main/MainGui.cpp" + (("_?putenv\\(\"PYTHONPATH=\"\\);") "")) + #t)) The #t can be removed. The warning that results when #t is absent has been removed on the core-updates branch; we might as well stop introducing these silly #t now such that we don't have to remove them later. Greetings, Maxme.