summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2022-09-01 17:55:21 +0200
committerConrad Kostecki <conikost@gentoo.org>2022-10-02 16:37:55 +0200
commit2b9d41f270c19cb878c4d56bb14246cca1bfe5d4 (patch)
tree8cda1446bee75a1482084e01b7f6a1051856bd4f /dev-util
parentdev-lang/lua: remove unused patch (diff)
downloadgentoo-2b9d41f270c19cb878c4d56bb14246cca1bfe5d4.tar.gz
gentoo-2b9d41f270c19cb878c4d56bb14246cca1bfe5d4.tar.bz2
gentoo-2b9d41f270c19cb878c4d56bb14246cca1bfe5d4.zip
dev-util/shellcheck: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Portage 3.0.35 / pkgdev 0.2.1 / pkgcheck 0.10.14 Closes: https://github.com/gentoo/gentoo/pull/27104 Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/shellcheck/files/shellcheck-0.7.2-haddock.patch53
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-util/shellcheck/files/shellcheck-0.7.2-haddock.patch b/dev-util/shellcheck/files/shellcheck-0.7.2-haddock.patch
deleted file mode 100644
index db6297064bad..000000000000
--- a/dev-util/shellcheck/files/shellcheck-0.7.2-haddock.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 9e60b3ea841bcaf48780bfcfc2e44aa6563a62de Mon Sep 17 00:00:00 2001
-From: Vidar Holen <spam@vidarholen.net>
-Date: Thu, 22 Apr 2021 22:17:51 -0700
-Subject: [PATCH] Fix haddock failures (fixes #2216)
-
----
- src/ShellCheck/Analytics.hs | 12 ++++++------
- test/buildtest | 2 ++
- 2 files changed, 8 insertions(+), 6 deletions(-)
-
---- a/src/ShellCheck/Analytics.hs
-+++ b/src/ShellCheck/Analytics.hs
-@@ -4155,11 +4155,11 @@ checkEqualsInCommand params originalToken =
- _ | "===" `isPrefixOf` s -> borderMsg (getId originalToken)
- _ -> prefixMsg (getId cmd)
-
-- -- $var==42
-+ -- '$var==42'
- _ | "==" `isInfixOf` s ->
- badComparisonMsg (getId cmd)
-
-- -- ${foo[x]}=42 and $foo=42
-+ -- '${foo[x]}=42' and '$foo=42'
- [T_DollarBraced id braced l] | "=" `isPrefixOf` s -> do
- let variableStr = concat $ oversimplify l
- let variableReference = getBracedReference variableStr
-@@ -4172,22 +4172,22 @@ checkEqualsInCommand params originalToken =
- && "]" `isSuffixOf` variableModifier
-
- case () of
-- -- $foo=bar should already have caused a parse-time SC1066
-+ -- '$foo=bar' should already have caused a parse-time SC1066
- -- _ | not braced && isPlain ->
- -- return ()
-
- _ | variableStr == "" -> -- Don't try to fix ${}=foo
- genericMsg (getId cmd)
-
-- -- $#=42 or ${#var}=42
-+ -- '$#=42' or '${#var}=42'
- _ | "#" `isPrefixOf` variableStr ->
- genericMsg (getId cmd)
-
-- -- ${0}=42
-+ -- '${0}=42'
- _ | variableStr == "0" ->
- assign0Msg id $ fixWith [replaceToken id params "BASH_ARGV0"]
-
-- -- $2=2
-+ -- '$2=2'
- _ | isPositional ->
- positionalMsg id
-