guix-patches
[Top][All Lists]
Advanced

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

[bug#62310] [PATCH v2 4/4] guix: Put check-synopsis-style to the local c


From: Sergey Trofimov
Subject: [bug#62310] [PATCH v2 4/4] guix: Put check-synopsis-style to the local checkers list.
Date: Tue, 21 Mar 2023 09:16:40 +0100

* guix/lint.scm (check-synopsis-style): Move to %local-checkers.
---
 guix/lint.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/guix/lint.scm b/guix/lint.scm
index a1a27873d9..3ed7fd6e4d 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1862,6 +1862,10 @@ (define %local-checkers
      (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")
@@ -1926,10 +1930,7 @@ (define %local-checkers
 
 (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")
-- 
2.39.2






reply via email to

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