pkgsrc-Changes archive

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

CVS commit: pkgsrc/shells/shellcheck



Module Name:    pkgsrc
Committed By:   drixter
Date:           Sun Jun 14 08:35:34 UTC 2026

Modified Files:
        pkgsrc/shells/shellcheck: Makefile distinfo

Log Message:
shells/shellcheck: Update to v0.11.0

v0.11.0 - 2025-08-03
Added
SC2327/SC2328: Warn about capturing the output of redirected commands.
SC2329: Warn when (non-escaping) functions are never invoked.
SC2330: Warn about unsupported glob matches with [[ .. ]] in BusyBox.
SC2331: Suggest using standard -e instead of unary -a in tests.
SC2332: Warn about [ ! -o opt ] being unconditionally true in Bash.
SC3062: Warn about bashism [ -o opt ].
Optional avoid-negated-conditions: suggest replacing [ ! a -eq b ]
with [ a -ne b ], and similar for -ge/-lt/=/!=/etc (SC2335).
Precompiled binaries for Linux riscv64 (linux.riscv64)
Changed
SC2002 about Useless Use Of Cat is now disabled by default. It can be
re-enabled with --enable=useless-use-of-cat or equivalent directive.
SC2236/SC2237 about replacing [ ! -n .. ] with [ -z ] and vice versa
is now optional under avoid-negated-conditions.
SC2015 about A && B || C no longer triggers when B is a test command.
SC3012: Do not warn about \< and \> in test/[] as specified in POSIX.1-2024
Diff output now uses / as path separator on Windows
Fixed
SC2218 about function use-before-define is now more accurate.
SC2317 about unreachable commands is now less spammy for nested ones.
SC2292, optional suggestion for [[ ]], now triggers for Busybox.
Updates for Bash 5.3, including ${| cmd; } and source -p
Removed
SC3013: removed since the operators -ot/-nt/-ef are specified in POSIX.1-2024


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 pkgsrc/shells/shellcheck/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/shells/shellcheck/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/shells/shellcheck/Makefile
diff -u pkgsrc/shells/shellcheck/Makefile:1.21 pkgsrc/shells/shellcheck/Makefile:1.22
--- pkgsrc/shells/shellcheck/Makefile:1.21      Wed Aug 13 11:07:23 2025
+++ pkgsrc/shells/shellcheck/Makefile   Sun Jun 14 08:35:34 2026
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.21 2025/08/13 11:07:23 pho Exp $
+# $NetBSD: Makefile,v 1.22 2026/06/14 08:35:34 drixter Exp $
 
-DISTNAME=      ShellCheck-0.10.0
+DISTNAME=      ShellCheck-0.11.0
 PKGNAME=       ${DISTNAME:tl}
-PKGREVISION=   4
 CATEGORIES=    shells devel
 
-MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+MAINTAINER=    drixter%e-utp.net@localhost
 HOMEPAGE=      https://www.shellcheck.net/
 COMMENT=       Shell script analysis tool
 LICENSE=       gnu-gpl-v3

Index: pkgsrc/shells/shellcheck/distinfo
diff -u pkgsrc/shells/shellcheck/distinfo:1.7 pkgsrc/shells/shellcheck/distinfo:1.8
--- pkgsrc/shells/shellcheck/distinfo:1.7       Fri Apr 12 13:51:28 2024
+++ pkgsrc/shells/shellcheck/distinfo   Sun Jun 14 08:35:34 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.7 2024/04/12 13:51:28 nikita Exp $
+$NetBSD: distinfo,v 1.8 2026/06/14 08:35:34 drixter Exp $
 
-BLAKE2s (ShellCheck-0.10.0.tar.gz) = 4a02c683046da383666878659bbcc548462f60df38f364b66a69c0ec490b65cf
-SHA512 (ShellCheck-0.10.0.tar.gz) = 30d574ad718e599a8b6b5346a96cb5af9ec7442f69e2d7b525b27a5b875bb70bc387e8bc010b848c360856f8130a40dbd9bba47a1dec3315cd9b22b1650442c9
-Size (ShellCheck-0.10.0.tar.gz) = 234856 bytes
+BLAKE2s (ShellCheck-0.11.0.tar.gz) = c82b51f85a8d3ed70fc8f372bcc7204223259bc7a0df095785f0b83192f97661
+SHA512 (ShellCheck-0.11.0.tar.gz) = 138cb7ad447a715528d6fe5af0fef43046516fbb9eebf5f30def6358a84416e13e9f89bbe4843039a0a7a19c944f2cf44ed51d64c17502aaf6d04b2581d81d83
+Size (ShellCheck-0.11.0.tar.gz) = 239314 bytes



Home | Main Index | Thread Index | Old Index