2013-06-18 09:29:39 -07:00
|
|
|
Name: ShellCheck
|
2018-12-02 18:04:59 -08:00
|
|
|
Version: 0.6.0
|
2014-01-13 19:14:18 -08:00
|
|
|
Synopsis: Shell script analysis tool
|
2015-06-20 09:52:07 -07:00
|
|
|
License: GPL-3
|
2013-06-18 09:29:39 -07:00
|
|
|
License-file: LICENSE
|
2014-01-19 13:03:05 -08:00
|
|
|
Category: Static Analysis
|
2013-06-18 09:29:39 -07:00
|
|
|
Author: Vidar Holen
|
|
|
|
|
Maintainer: vidar@vidarholen.net
|
2017-12-14 01:06:43 -05:00
|
|
|
Homepage: https://www.shellcheck.net/
|
2016-01-05 14:10:45 -08:00
|
|
|
Build-Type: Custom
|
2014-02-28 19:55:04 +01:00
|
|
|
Cabal-Version: >= 1.8
|
2014-01-13 19:14:18 -08:00
|
|
|
Bug-reports: https://github.com/koalaman/shellcheck/issues
|
|
|
|
|
Description:
|
|
|
|
|
The goals of ShellCheck are:
|
|
|
|
|
.
|
|
|
|
|
* To point out and clarify typical beginner's syntax issues,
|
|
|
|
|
that causes a shell to give cryptic error messages.
|
|
|
|
|
.
|
|
|
|
|
* To point out and clarify typical intermediate level semantic problems,
|
|
|
|
|
that causes a shell to behave strangely and counter-intuitively.
|
|
|
|
|
.
|
|
|
|
|
* To point out subtle caveats, corner cases and pitfalls, that may cause an
|
|
|
|
|
advanced user's otherwise working script to fail under future circumstances.
|
|
|
|
|
|
2014-06-01 17:53:16 +02:00
|
|
|
Extra-Source-Files:
|
|
|
|
|
-- documentation
|
|
|
|
|
README.md
|
|
|
|
|
shellcheck.1.md
|
2015-01-24 12:15:36 -05:00
|
|
|
-- built with a cabal sdist hook
|
|
|
|
|
shellcheck.1
|
2018-12-02 18:40:56 -08:00
|
|
|
-- convenience script for stripping tests
|
|
|
|
|
striptests
|
2014-06-01 17:53:16 +02:00
|
|
|
-- tests
|
2014-06-01 21:35:45 +02:00
|
|
|
test/shellcheck.hs
|
2014-06-01 17:53:16 +02:00
|
|
|
|
2018-03-08 18:41:23 +02:00
|
|
|
custom-setup
|
|
|
|
|
setup-depends:
|
|
|
|
|
base >= 4 && <5,
|
|
|
|
|
process >= 1.0 && <1.7,
|
2018-09-27 17:32:45 +02:00
|
|
|
Cabal >= 1.10 && <2.5
|
2018-03-08 18:41:23 +02:00
|
|
|
|
2014-01-13 19:14:18 -08:00
|
|
|
source-repository head
|
|
|
|
|
type: git
|
|
|
|
|
location: git://github.com/koalaman/shellcheck.git
|
2013-06-18 09:29:39 -07:00
|
|
|
|
|
|
|
|
library
|
2018-03-08 19:57:40 +02:00
|
|
|
hs-source-dirs: src
|
2018-04-02 11:44:18 -05:00
|
|
|
if impl(ghc < 8.0)
|
|
|
|
|
build-depends:
|
|
|
|
|
semigroups
|
2014-02-28 19:44:09 +01:00
|
|
|
build-depends:
|
2018-03-29 21:41:00 -07:00
|
|
|
-- GHC 7.6.3 (base 4.6.0.1) is buggy (#1131, #1119) in optimized mode.
|
|
|
|
|
-- Just disable that version entirely to fail fast.
|
2018-05-06 16:07:53 -07:00
|
|
|
aeson,
|
2018-03-29 21:41:00 -07:00
|
|
|
base > 4.6.0.1 && < 5,
|
2018-05-06 16:07:53 -07:00
|
|
|
bytestring,
|
2018-03-08 18:41:23 +02:00
|
|
|
containers >= 0.5,
|
2018-10-22 19:39:24 -07:00
|
|
|
deepseq >= 1.4.0.0,
|
2014-02-28 19:44:09 +01:00
|
|
|
directory,
|
2015-08-15 09:34:19 -07:00
|
|
|
mtl >= 2.2.1,
|
2014-02-28 19:44:09 +01:00
|
|
|
parsec,
|
2015-04-04 16:26:28 -07:00
|
|
|
regex-tdfa,
|
2016-01-13 14:10:21 -08:00
|
|
|
QuickCheck >= 2.7.4,
|
|
|
|
|
-- When cabal supports it, move this to setup-depends:
|
|
|
|
|
process
|
2014-02-28 19:44:09 +01:00
|
|
|
exposed-modules:
|
|
|
|
|
ShellCheck.AST
|
2015-08-16 12:53:23 -07:00
|
|
|
ShellCheck.ASTLib
|
2015-08-15 12:51:13 -07:00
|
|
|
ShellCheck.Analytics
|
|
|
|
|
ShellCheck.Analyzer
|
2016-04-10 17:01:40 -07:00
|
|
|
ShellCheck.AnalyzerLib
|
2015-08-15 12:51:13 -07:00
|
|
|
ShellCheck.Checker
|
2016-04-10 17:01:40 -07:00
|
|
|
ShellCheck.Checks.Commands
|
2016-11-12 15:51:36 -08:00
|
|
|
ShellCheck.Checks.ShellSupport
|
2014-02-28 19:44:09 +01:00
|
|
|
ShellCheck.Data
|
2015-08-15 12:51:13 -07:00
|
|
|
ShellCheck.Formatter.Format
|
2015-09-05 19:17:22 -07:00
|
|
|
ShellCheck.Formatter.CheckStyle
|
|
|
|
|
ShellCheck.Formatter.GCC
|
|
|
|
|
ShellCheck.Formatter.JSON
|
|
|
|
|
ShellCheck.Formatter.TTY
|
2015-08-15 09:34:19 -07:00
|
|
|
ShellCheck.Interface
|
2015-08-15 12:51:13 -07:00
|
|
|
ShellCheck.Parser
|
2015-04-04 16:26:28 -07:00
|
|
|
ShellCheck.Regex
|
2014-05-30 00:08:09 +00:00
|
|
|
other-modules:
|
|
|
|
|
Paths_ShellCheck
|
2013-06-18 09:29:39 -07:00
|
|
|
|
|
|
|
|
executable shellcheck
|
2018-04-02 11:44:18 -05:00
|
|
|
if impl(ghc < 8.0)
|
|
|
|
|
build-depends:
|
|
|
|
|
semigroups
|
2014-02-28 19:55:04 +01:00
|
|
|
build-depends:
|
2018-05-06 16:07:53 -07:00
|
|
|
aeson,
|
2014-02-28 19:55:04 +01:00
|
|
|
base >= 4 && < 5,
|
2018-05-06 16:07:53 -07:00
|
|
|
bytestring,
|
2018-10-22 19:39:24 -07:00
|
|
|
deepseq >= 1.4.0.0,
|
2018-05-06 16:07:53 -07:00
|
|
|
ShellCheck,
|
2014-02-28 19:55:04 +01:00
|
|
|
containers,
|
|
|
|
|
directory,
|
2015-08-15 09:34:19 -07:00
|
|
|
mtl >= 2.2.1,
|
2018-03-08 18:41:23 +02:00
|
|
|
parsec >= 3.0,
|
2018-04-02 20:27:34 -07:00
|
|
|
QuickCheck >= 2.7.4,
|
|
|
|
|
regex-tdfa
|
2013-06-18 09:29:39 -07:00
|
|
|
main-is: shellcheck.hs
|
2014-05-30 00:08:09 +00:00
|
|
|
|
2014-05-31 01:30:23 +00:00
|
|
|
test-suite test-shellcheck
|
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
|
build-depends:
|
2018-05-06 16:07:53 -07:00
|
|
|
aeson,
|
2014-05-31 01:30:23 +00:00
|
|
|
base >= 4 && < 5,
|
2018-05-06 16:07:53 -07:00
|
|
|
bytestring,
|
2018-10-22 19:39:24 -07:00
|
|
|
deepseq >= 1.4.0.0,
|
2018-05-06 16:07:53 -07:00
|
|
|
ShellCheck,
|
2014-05-31 01:30:23 +00:00
|
|
|
containers,
|
|
|
|
|
directory,
|
2015-08-15 09:34:19 -07:00
|
|
|
mtl >= 2.2.1,
|
2014-05-31 01:30:23 +00:00
|
|
|
parsec,
|
2018-04-02 20:27:34 -07:00
|
|
|
QuickCheck >= 2.7.4,
|
|
|
|
|
regex-tdfa
|
2014-05-31 01:30:23 +00:00
|
|
|
main-is: test/shellcheck.hs
|
|
|
|
|
|