Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ghc-ShellCheck-devel | Distribution: openSUSE Leap 16.0 |
Version: 0.10.0 | Vendor: openSUSE |
Release: lp160.1.1 | Build date: Fri Mar 8 03:49:11 2024 |
Group: Unspecified | Build host: reproducible |
Size: 58849096 | Source RPM: ShellCheck-0.10.0-lp160.1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://hackage.haskell.org/package/ShellCheck | |
Summary: Haskell ShellCheck library development files |
This package provides the Haskell ShellCheck library development files.
GPL-3.0-or-later
* Fri Mar 08 2024 Peter Simons <psimons@suse.com> - Update ShellCheck to version 0.10.0. [#]# v0.10.0 - 2024-03-07 [#]## Added - Precompiled binaries for macOS ARM64 (darwin.aarch64) - Added support for busybox sh - Added flag --rcfile to specify an rc file by name. - Added `extended-analysis=true` directive to enable/disable dataflow analysis (with a corresponding --extended-analysis flag). - SC2324: Warn when x+=1 appends instead of increments - SC2325: Warn about multiple `!`s in dash/sh. - SC2326: Warn about `foo | ! bar` in bash/dash/sh. - SC3012: Warn about lexicographic-compare bashism in test like in [ ] - SC3013: Warn bashism `test _ -op/-nt/-ef _` like in [ ] - SC3014: Warn bashism `test _ == _` like in [ ] - SC3015: Warn bashism `test _ =~ _` like in [ ] - SC3016: Warn bashism `test -v _` like in [ ] - SC3017: Warn bashism `test -a _` like in [ ] [#]## Fixed - source statements with here docs now work correctly - "(Array.!): undefined array element" error should no longer occur * Wed Dec 06 2023 Peter Simons <psimons@suse.com> - Update ShellCheck to version 0.9.0 revision 2. Upstream has revised the Cabal build instructions on Hackage. * Thu Nov 16 2023 Peter Simons <psimons@suse.com> - Relax over-specified constraints to fix the build with ghc-9.6.x. * Thu Mar 30 2023 Peter Simons <psimons@suse.com> - Updated spec file to conform with ghc-rpm-macros-2.5.2. * Sat Feb 04 2023 Peter Simons <psimons@suse.com> - Update ShellCheck to version 0.9.0 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Tue Dec 13 2022 Peter Simons <psimons@suse.com> - Update ShellCheck to version 0.9.0. [#]# v0.9.0 - 2022-12-12 [#]## Added - SC2316: Warn about 'local readonly foo' and similar (thanks, patrickxia!) - SC2317: Warn about unreachable commands - SC2318: Warn about backreferences in 'declare x=1 y=$x' - SC2319/SC2320: Warn when $? refers to echo/printf/[ ]/[[ ]]/test - SC2321: Suggest removing $((..)) in array[$((idx))]=val - SC2322: Suggest collapsing double parentheses in arithmetic contexts - SC2323: Suggest removing wrapping parentheses in a[(x+1)]=val [#]## Fixed - SC2086: Now uses DFA to make more accurate predictions about values - SC2086: No longer warns about values declared as integer with declare -i [#]## Changed - ShellCheck now has a Data Flow Analysis engine to make smarter decisions based on control flow rather than just syntax. Existing checks will gradually start using it, which may cause them to trigger differently (but more accurately). - Values in directives/shellcheckrc can now be quoted with '' or "" * Thu May 19 2022 Peter Simons <psimons@suse.com> - Update ShellCheck to version 0.8.0 revision 1. Upstream has revised the Cabal build instructions on Hackage. * Sun Nov 07 2021 psimons@suse.com - Update ShellCheck to version 0.8.0. - drop haddock.patch Upstream added a new change log file in this release. With no previous version to compare against, the automatic updater cannot reliable determine the relevante entries for this release. * Fri Apr 23 2021 Ondřej Súkup <mimi.vx@gmail.com> - add haddock.patch to fix build with haddock * Thu Apr 22 2021 psimons@suse.com - Update ShellCheck to version 0.7.2. Upstream does not provide a change log file. * Thu Dec 17 2020 Ondřej Súkup <mimi.vx@gmail.com> - disable %{ix86} build * Tue Aug 18 2020 Peter Simons <psimons@suse.com> - Replace %setup -q with the more modern %autosetup macro. * Tue Aug 04 2020 Michel Normand <normand@linux.vnet.ibm.com> - Add _constraints default min disk space to 4GB and memory constraints that differ per architecture. * Tue Jun 16 2020 Peter Simons <psimons@suse.com> - Re-generate file with latest version of spec-cleaner. * Wed May 06 2020 psimons@suse.com - Update ShellCheck to version 0.7.1. Upstream does not provide a change log file. * Wed Jan 01 2020 Peter Simons <psimons@suse.com> - Drop bogus Setup.hs file to let the build succeed with ghc-8.8.x. - Fix download URL. * Fri Nov 08 2019 Peter Simons <psimons@suse.com> - Drop obsolete group attributes. * Tue Jul 30 2019 psimons@suse.com - Update ShellCheck to version 0.7.0. Upstream does not provide a change log file. * Tue Dec 04 2018 psimons@suse.com - Update ShellCheck to version 0.6.0. Upstream does not provide a change log file. * Mon Oct 15 2018 psimons@suse.com - Update to version v0.5.0-81-ge0e46e9 from Github to fix the build with GHC 8.6.x. * Added Command line option --severity/-S for filtering by minimum severity SC2236/SC2237: Suggest -n/-z instead of ! -z/-n SC2238: Warn when redirecting to a known command name, e.g. ls > rm * Changed Most warnings now have useful end positions SC1117 about unknown double-quoted escape sequences has been retired * Fixed SC2021 no longer triggers for equivalence classes like '[=e=]' SC2221/SC2222 no longer mistriggers on fall-through case branches * Wed Jul 18 2018 psimons@suse.com - Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner. * Fri Jul 13 2018 psimons@suse.com - Update ShellCheck to version 0.5.0. * Added SC2233/SC2234/SC2235: Suggest removing or replacing (..) around tests * Wed May 16 2018 psimons@suse.com - Update to version v0.4.7-106-g235bf66 from Github to fix the build with GHC 8.4.x. * Added: SC2232: Warn about invalid arguments to sudo SC2231: Suggest quoting expansions in for loop globs SC2229: Warn about 'read $var' SC2227: Warn about redirections in the middle of 'find' commands SC2224,SC2225,SC2226: Warn when using mv/cp/ln without a destination SC2223: Quote warning specific to : ${var=value} SC1131: Warn when using elseif or elsif SC1128: Warn about blanks/comments before shebang SC1127: Warn about C-style comments * Fixed: Annotations intended for a command's here documents now work Escaped characters inside groups in =~ regexes now parse Associative arrays are now respected in arithmetic contexts SC1087 about $var[@] now correctly triggers on any index Bad expansions in here documents are no longer ignored FD move operations like {fd}>1- now parse correctly * Changed: SC1073: 'else if' is now parsed correctly and not like 'elif' SC2163: 'export $name' can now be silenced with 'export ${name?}' SC2183: Now warns when printf arg count is not a multiple of format count * Thu Apr 12 2018 guillaume@opensuse.org - Add _constraints to avoid OOM error with a special case for aarch64 which needs lots of RAM. * Thu Apr 12 2018 psimons@suse.com - Update ShellCheck to version 0.4.7 revision 1. A more detailed change log is not available. * Thu Aug 03 2017 psimons@suse.com - Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. * Mon Mar 27 2017 psimons@suse.com - Update to version 0.4.6 with cabal2obs. * Sun Feb 12 2017 psimons@suse.com - Update to version 0.4.5 with cabal2obs. * Sun Jul 10 2016 psimons@suse.com - Update to version 0.4.4 revision 0 with cabal2obs. * Sat May 21 2016 mimi.vx@gmail.com - update to 0.4.4 * Sun Jan 24 2016 mimi.vx@gmail.com - update to 0.4.3 * Tue Jan 12 2016 mimi.vx@gmail.com - update to 0.4.2 * Sun Sep 06 2015 mimi.vx@gmail.com - initial commit
/usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0 /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/Paths_ShellCheck.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/Paths_ShellCheck.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/AST.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/AST.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/ASTLib.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/ASTLib.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Analytics.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Analytics.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Analyzer.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Analyzer.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/AnalyzerLib.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/AnalyzerLib.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/CFG.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/CFG.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/CFGAnalysis.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/CFGAnalysis.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checker.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checker.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/Commands.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/Commands.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/ControlFlow.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/ControlFlow.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/Custom.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/Custom.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/ShellSupport.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Checks/ShellSupport.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Data.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Data.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Debug.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Debug.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Fixer.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Fixer.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/CheckStyle.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/CheckStyle.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/Diff.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/Diff.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/Format.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/Format.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/GCC.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/GCC.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/JSON.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/JSON.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/JSON1.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/JSON1.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/Quiet.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/Quiet.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/TTY.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Formatter/TTY.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Interface.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Interface.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Parser.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Parser.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Prelude.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Prelude.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Regex.dyn_hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/ShellCheck/Regex.hi /usr/lib64/ghc-9.8.3/lib/ShellCheck-0.10.0/libHSShellCheck-0.10.0-8hovbp5DQlUBtDMC6ljoHQ.a /usr/lib64/ghc-9.8.3/lib/package.conf.d/ShellCheck-0.10.0.conf /usr/share/doc/packages/ghc-ShellCheck-devel /usr/share/doc/packages/ghc-ShellCheck-devel/CHANGELOG.md /usr/share/doc/packages/ghc-ShellCheck-devel/README.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Nov 11 23:52:33 2024