From cf1216d8763adf3c5e9d79d7abd2c5ecc8861d60 Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Sat, 8 Jul 2023 00:03:18 -0400 Subject: [PATCH] gnu: patman: Add python-u-boot-pylib to inputs. * gnu/packages/bootloaders.scm (patman) [inputs]: Add python-u-boot-pylib. [phases]: Remove 'sanity-check. Signed-off-by: Vagrant Cascadian --- gnu/packages/bootloaders.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 8afb2c3293..30ef673f7d 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -876,10 +876,13 @@ (define-public patman #:tests? #f #:phases #~(modify-phases %standard-phases + ;; Patman fails to run during 'sanity-check phase, as it needs to be + ;; run within a git directory. + (delete 'sanity-check) (add-after 'unpack 'chdir (lambda _ (chdir "tools/patman")))))) - (inputs (list python-pygit2 python-requests)) + (inputs (list python-pygit2 python-requests python-u-boot-pylib)) (synopsis "Patch automation tool") (description "Patman is a patch automation script which: @itemize