From 19afa591ea54ff21b4b44da032895080721b8a2f Mon Sep 17 00:00:00 2001 From: triallax Date: Sat, 5 Aug 2023 20:55:37 +0100 Subject: xlint: fix short_desc max chars lint warning on 72 chars https://github.com/void-linux/void-packages/blob/master/Manual.md states that the description can have a maximum of 72 chars. --- xlint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlint') diff --git a/xlint b/xlint index 891e735..997d99d 100755 --- a/xlint +++ b/xlint @@ -400,7 +400,7 @@ for argument; do scan 'short_desc=["'\''][a-z]' "short_desc should start uppercase" scan 'short_desc=["'\''](An?|The) ' "short_desc should not start with an article" scan 'short_desc=["'\''][\t ]' "short_desc should not start with whitespace" - scan 'short_desc=["'\''].{73}' "short_desc should be less than 72 chars" + scan 'short_desc=["'\''].{74}' "short_desc should be at most 72 chars" scan 'license=.*[^NL]GPL[^-]' "license GPL without version" scan 'license=.*SSPL' "Uses the SSPL license, which is not packageable" scan 'license=.*LGPL[^-]' "license LGPL without version" -- cgit 1.4.1