Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ShellCheck for openSUSE:Factory 
checked in at 2023-12-14 22:03:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ShellCheck (Old)
 and      /work/SRC/openSUSE:Factory/.ShellCheck.new.25432 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ShellCheck"

Thu Dec 14 22:03:42 2023 rev:28 rq:1133048 version:0.9.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ShellCheck/ShellCheck.changes    2023-11-23 
21:43:08.545003509 +0100
+++ /work/SRC/openSUSE:Factory/.ShellCheck.new.25432/ShellCheck.changes 
2023-12-14 22:03:47.453474731 +0100
@@ -1,0 +2,6 @@
+Wed Dec  6 17:05:35 UTC 2023 - Peter Simons <psim...@suse.com>
+
+- Update ShellCheck to version 0.9.0 revision 2.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ShellCheck.spec ++++++
--- /var/tmp/diff_new_pack.VfNIj8/_old  2023-12-14 22:03:48.357507337 +0100
+++ /var/tmp/diff_new_pack.VfNIj8/_new  2023-12-14 22:03:48.357507337 +0100
@@ -26,7 +26,7 @@
 License:        GPL-3.0-or-later
 URL:            https://hackage.haskell.org/package/%{name}
 Source0:        
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
-Source1:        
https://hackage.haskell.org/package/%{name}-%{version}/revision/1.cabal#/%{name}.cabal
+Source1:        
https://hackage.haskell.org/package/%{name}-%{version}/revision/2.cabal#/%{name}.cabal
 BuildRequires:  chrpath
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-Diff-devel
@@ -112,9 +112,6 @@
 %prep
 %autosetup
 cp -p %{SOURCE1} %{name}.cabal
-cabal-tweak-dep-ver fgl '< 5.8.1.0' '< 6'
-cabal-tweak-dep-ver mtl '< 2.3' '< 3'
-cabal-tweak-dep-ver transformers '< 0.6' '< 1'
 
 %build
 %ghc_lib_build

++++++ ShellCheck.cabal ++++++
--- /var/tmp/diff_new_pack.VfNIj8/_old  2023-12-14 22:03:48.393508636 +0100
+++ /var/tmp/diff_new_pack.VfNIj8/_new  2023-12-14 22:03:48.397508781 +0100
@@ -1,148 +1,148 @@
-Name:             ShellCheck
-Version:          0.9.0
-x-revision: 1
-Synopsis:         Shell script analysis tool
-License:          GPL-3
-License-file:     LICENSE
-Category:         Static Analysis
-Author:           Vidar Holen
-Maintainer:       vi...@vidarholen.net
-Homepage:         https://www.shellcheck.net/
-Build-Type:       Simple
-Cabal-Version:    1.18
-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.
-
-Extra-Doc-Files:
-    README.md
-    CHANGELOG.md
-Extra-Source-Files:
-    -- documentation
-    shellcheck.1.md
-    -- A script to build the man page using pandoc
-    manpage
-    -- convenience script for stripping tests
-    striptests
-    -- tests
-    test/shellcheck.hs
-
-source-repository head
-    type: git
-    location: git://github.com/koalaman/shellcheck.git
-
-library
-    hs-source-dirs: src
-    if impl(ghc < 8.0)
-      build-depends:
-        semigroups
-    build-depends:
-      -- The lower bounds are based on GHC 7.10.3
-      -- The upper bounds are based on GHC 9.4.3
-      aeson                >= 1.4.0 && < 2.2,
-      array                >= 0.5.1 && < 0.6,
-      base                 >= 4.8.0.0 && < 5,
-      bytestring           >= 0.10.6 && < 0.12,
-      containers           >= 0.5.6 && < 0.7,
-      deepseq              >= 1.4.1 && < 1.5,
-      Diff                 >= 0.4.0 && < 0.5,
-      fgl                  >= 5.7.0 && < 5.8.1.0,
-      filepath             >= 1.4.0 && < 1.5,
-      mtl                  >= 2.2.2 && < 2.3,
-      parsec               >= 3.1.14 && < 3.2,
-      QuickCheck           >= 2.14.2 && < 2.15,
-      regex-tdfa           >= 1.2.0 && < 1.4,
-      transformers         >= 0.4.2 && < 0.6,
-
-      -- getXdgDirectory from 1.2.3.0
-      directory            >= 1.2.3 && < 1.4,
-
-      -- When cabal supports it, move this to setup-depends:
-      process
-    exposed-modules:
-      ShellCheck.AST
-      ShellCheck.ASTLib
-      ShellCheck.Analytics
-      ShellCheck.Analyzer
-      ShellCheck.AnalyzerLib
-      ShellCheck.CFG
-      ShellCheck.CFGAnalysis
-      ShellCheck.Checker
-      ShellCheck.Checks.Commands
-      ShellCheck.Checks.ControlFlow
-      ShellCheck.Checks.Custom
-      ShellCheck.Checks.ShellSupport
-      ShellCheck.Data
-      ShellCheck.Debug
-      ShellCheck.Fixer
-      ShellCheck.Formatter.Format
-      ShellCheck.Formatter.CheckStyle
-      ShellCheck.Formatter.Diff
-      ShellCheck.Formatter.GCC
-      ShellCheck.Formatter.JSON
-      ShellCheck.Formatter.JSON1
-      ShellCheck.Formatter.TTY
-      ShellCheck.Formatter.Quiet
-      ShellCheck.Interface
-      ShellCheck.Parser
-      ShellCheck.Prelude
-      ShellCheck.Regex
-    other-modules:
-      Paths_ShellCheck
-    default-language: Haskell98
-
-executable shellcheck
-    if impl(ghc < 8.0)
-      build-depends:
-        semigroups
-    build-depends:
-      aeson,
-      array,
-      base,
-      bytestring,
-      containers,
-      deepseq,
-      Diff,
-      directory,
-      fgl,
-      mtl,
-      filepath,
-      parsec,
-      QuickCheck,
-      regex-tdfa,
-      transformers,
-      ShellCheck
-    default-language: Haskell98
-    main-is: shellcheck.hs
-
-test-suite test-shellcheck
-    type: exitcode-stdio-1.0
-    build-depends:
-      aeson,
-      array,
-      base,
-      bytestring,
-      containers,
-      deepseq,
-      Diff,
-      directory,
-      fgl,
-      filepath,
-      mtl,
-      parsec,
-      QuickCheck,
-      regex-tdfa,
-      transformers,
-      ShellCheck
-    default-language: Haskell98
-    main-is: test/shellcheck.hs
+Name:             ShellCheck
+Version:          0.9.0
+x-revision:       2
+Synopsis:         Shell script analysis tool
+License:          GPL-3
+License-file:     LICENSE
+Category:         Static Analysis
+Author:           Vidar Holen
+Maintainer:       vi...@vidarholen.net
+Homepage:         https://www.shellcheck.net/
+Build-Type:       Simple
+Cabal-Version:    1.18
+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.
+
+Extra-Doc-Files:
+    README.md
+    CHANGELOG.md
+Extra-Source-Files:
+    -- documentation
+    shellcheck.1.md
+    -- A script to build the man page using pandoc
+    manpage
+    -- convenience script for stripping tests
+    striptests
+    -- tests
+    test/shellcheck.hs
+
+source-repository head
+    type: git
+    location: https://github.com/koalaman/shellcheck.git
+
+library
+    hs-source-dirs: src
+    if impl(ghc < 8.0)
+      build-depends:
+        semigroups
+    build-depends:
+      -- The lower bounds are based on GHC 7.10.3
+      -- The upper bounds are based on GHC 9.8.1
+      aeson                >= 1.4.0 && < 2.3,
+      array                >= 0.5.1 && < 0.6,
+      base                 >= 4.8.0.0 && < 5,
+      bytestring           >= 0.10.6 && < 0.13,
+      containers           >= 0.5.6 && < 0.8,
+      deepseq              >= 1.4.1 && < 1.6,
+      Diff                 >= 0.4.0 && < 0.5,
+      fgl                  (>= 5.7.0 && < 5.8.1.0) || (>= 5.8.1.1 && < 5.9),
+      filepath             >= 1.4.0 && < 1.5,
+      mtl                  >= 2.2.2 && < 2.4,
+      parsec               >= 3.1.14 && < 3.2,
+      QuickCheck           >= 2.14.2 && < 2.15,
+      regex-tdfa           >= 1.2.0 && < 1.4,
+      transformers         >= 0.4.2 && < 0.7,
+
+      -- getXdgDirectory from 1.2.3.0
+      directory            >= 1.2.3 && < 1.4,
+
+      -- When cabal supports it, move this to setup-depends:
+      process
+    exposed-modules:
+      ShellCheck.AST
+      ShellCheck.ASTLib
+      ShellCheck.Analytics
+      ShellCheck.Analyzer
+      ShellCheck.AnalyzerLib
+      ShellCheck.CFG
+      ShellCheck.CFGAnalysis
+      ShellCheck.Checker
+      ShellCheck.Checks.Commands
+      ShellCheck.Checks.ControlFlow
+      ShellCheck.Checks.Custom
+      ShellCheck.Checks.ShellSupport
+      ShellCheck.Data
+      ShellCheck.Debug
+      ShellCheck.Fixer
+      ShellCheck.Formatter.Format
+      ShellCheck.Formatter.CheckStyle
+      ShellCheck.Formatter.Diff
+      ShellCheck.Formatter.GCC
+      ShellCheck.Formatter.JSON
+      ShellCheck.Formatter.JSON1
+      ShellCheck.Formatter.TTY
+      ShellCheck.Formatter.Quiet
+      ShellCheck.Interface
+      ShellCheck.Parser
+      ShellCheck.Prelude
+      ShellCheck.Regex
+    other-modules:
+      Paths_ShellCheck
+    default-language: Haskell98
+
+executable shellcheck
+    if impl(ghc < 8.0)
+      build-depends:
+        semigroups
+    build-depends:
+      aeson,
+      array,
+      base,
+      bytestring,
+      containers,
+      deepseq,
+      Diff,
+      directory,
+      fgl,
+      mtl,
+      filepath,
+      parsec,
+      QuickCheck,
+      regex-tdfa,
+      transformers,
+      ShellCheck
+    default-language: Haskell98
+    main-is: shellcheck.hs
+
+test-suite test-shellcheck
+    type: exitcode-stdio-1.0
+    build-depends:
+      aeson,
+      array,
+      base,
+      bytestring,
+      containers,
+      deepseq,
+      Diff,
+      directory,
+      fgl,
+      filepath,
+      mtl,
+      parsec,
+      QuickCheck,
+      regex-tdfa,
+      transformers,
+      ShellCheck
+    default-language: Haskell98
+    main-is: test/shellcheck.hs
 

Reply via email to