guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/05: gnu: patman: Add python-u-boot-pylib to inputs.


From: guix-commits
Subject: 05/05: gnu: patman: Add python-u-boot-pylib to inputs.
Date: Thu, 20 Jul 2023 01:56:46 -0400 (EDT)

vagrantc pushed a commit to branch master
in repository guix.

commit cf1216d8763adf3c5e9d79d7abd2c5ecc8861d60
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Jul 8 00:03:18 2023 -0400

    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 <vagrant@debian.org>
---
 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 @@ commands part of the U-Boot project, such as 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]