guix-commits
[Top][All Lists]
Advanced

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

01/04: Revert "guix: Run check-synopsis-style with other local checks."


From: guix-commits
Subject: 01/04: Revert "guix: Run check-synopsis-style with other local checks."
Date: Wed, 26 Jun 2024 10:23:58 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 56770f7d597e8cc4f735c5885437050c9bd5533f
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Jun 26 15:02:27 2024 +0100

    Revert "guix: Run check-synopsis-style with other local checks."
    
    The synopsis lint checker is network dependent.
    
    This reverts commit 4f63b4b86de47b094ccf42ed68f9f3aa960285bd.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 guix/lint.scm | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/guix/lint.scm b/guix/lint.scm
index 68d532968d..7612832a5a 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1970,10 +1970,6 @@ them for PACKAGE."
      (name        'description)
      (description "Validate package descriptions")
      (check       check-description-style))
-   (lint-checker
-     (name        'synopsis)
-     (description "Validate package synopses")
-     (check       check-synopsis-style))
    (lint-checker
      (name        'inputs-should-be-native)
      (description "Identify inputs that should be native inputs")
@@ -2038,7 +2034,10 @@ or a list thereof")
 
 (define %network-dependent-checkers
   (list
-
+   (lint-checker
+     (name        'synopsis)
+     (description "Validate package synopses")
+     (check       check-synopsis-style))
    (lint-checker
      (name        'gnu-description)
      (description "Validate synopsis & description of GNU packages")



reply via email to

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