[pacman-dev,2/3] makepkg: check_pkgrel: Don't say "decimal" in the error message

Message ID 20180808031643.8054-3-lukeshu@lukeshu.com
State Superseded, archived
Headers show
Series makepkg: Improve lint_pkgbuild error messages for epoch/ver/rel | expand

Commit Message

Luke Shumaker Aug. 8, 2018, 3:16 a.m. UTC
From: Luke Shumaker <lukeshu@parabola.nu>

If you have a malformed pkgrel, the error message says that it must be a
"decimal".  That isn't quite true, as that would mean that `1.1 == 1.10`.
---
 scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in b/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
index 762f054a..30fa6d71 100644
--- a/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
@@ -37,7 +37,7 @@  check_pkgrel() {
 	fi
 
 	if [[ $rel != +([0-9])?(.+([0-9])) ]]; then
-		error "$(gettext "%s must be a decimal, not %s.")" "pkgrel${type:+ in $type}" "$rel"
+		error "$(gettext "%s must be of the form 'integer[.integer]', not %s.")" "pkgrel${type:+ in $type}" "$rel"
 		return 1
 	fi
 }