Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-dlist for openSUSE:Factory 
checked in at 2024-07-22 17:16:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-dlist (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-dlist.new.17339 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-dlist"

Mon Jul 22 17:16:19 2024 rev:22 rq:1188637 version:1.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-dlist/ghc-dlist.changes      2023-09-04 
22:54:30.881745192 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-dlist.new.17339/ghc-dlist.changes   
2024-07-22 17:17:06.551140116 +0200
@@ -1,0 +2,6 @@
+Thu Jul  4 12:43:02 UTC 2024 - Peter Simons <[email protected]>
+
+- Update dlist to version 1.0 revision 2.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ ghc-dlist.spec ++++++
--- /var/tmp/diff_new_pack.L3G3sO/_old  2024-07-22 17:17:07.803189891 +0200
+++ /var/tmp/diff_new_pack.L3G3sO/_new  2024-07-22 17:17:07.827190845 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-dlist
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,7 +26,7 @@
 License:        BSD-3-Clause
 URL:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-prof

++++++ dlist.cabal ++++++
--- /var/tmp/diff_new_pack.L3G3sO/_old  2024-07-22 17:17:07.983197048 +0200
+++ /var/tmp/diff_new_pack.L3G3sO/_new  2024-07-22 17:17:08.015198320 +0200
@@ -1,109 +1,109 @@
-cabal-version:          >= 1.10
-
-name:                   dlist
-version:                1.0
-x-revision:             1
-
-synopsis:               Difference lists
-description:
-  List-like types supporting O(1) append and snoc operations.
-category:               Data
-license:                BSD3
-license-file:           license.md
-author:                 Don Stewart
-maintainer:             Sean Leather <[email protected]>
-copyright:              2006-2009 Don Stewart, 2013-2020 Sean Leather, 
2017-2020 Oleg Grenrus, contributors
-homepage:               https://github.com/spl/dlist
-bug-reports:            https://github.com/spl/dlist/issues
-extra-source-files:     readme.md,
-                        changelog.md
-                        tests/ImportUnsafe.hs
-build-type:             Simple
-
-tested-with:
-                        GHC == 9.8.0
-                        GHC == 9.6.2
-                        GHC == 9.4.7
-                        GHC == 9.2.8
-                        GHC == 9.0.2
-                        GHC == 8.10.7
-                        GHC == 8.8.4
-                        GHC == 8.6.5
-                        GHC == 8.4.4
-                        GHC == 8.2.2
-                        GHC == 8.0.2
-                        GHC == 7.10.3
-                        GHC == 7.8.4
-                        GHC == 7.6.3
-                        GHC == 7.4.2
-                        GHC == 7.2.2
-                        GHC == 7.0.4
-
-source-repository head
-  type:                 git
-  location:             https://github.com/spl/dlist.git
-
-flag Werror
-  description:          Enable -Werror
-  default:              False
-  manual:               True
-
-library
-  build-depends:
-                        base >= 4 && < 5,
-                        deepseq >= 1.1 && < 1.6
-  exposed-modules:      Data.DList
-                        Data.DList.Unsafe
-  other-modules:        Data.DList.Internal
-  if impl(ghc >= 8.0)
-    exposed-modules:    Data.DList.DNonEmpty
-    other-modules:      Data.DList.DNonEmpty.Internal
-  default-language:     Haskell2010
-  ghc-options:          -Wall
-  if impl(ghc >= 8.0)
-    ghc-options:        -Wcompat
-                        -Wincomplete-record-updates
-                        -Wincomplete-uni-patterns
-                        -Wnoncanonical-monad-instances
-  if impl(ghc >= 8.2)
-    ghc-options:        -Wmissing-home-modules
-  if impl(ghc >= 8.4)
-    ghc-options:        -Wpartial-fields
-  if impl(ghc >= 8.10)
-    ghc-options:        -Wmissing-safe-haskell-mode
-                        -Wtrustworthy-safe
-  if flag(Werror)
-    ghc-options:        -Werror
-
-test-suite test
-  type:                 exitcode-stdio-1.0
-  main-is:              Main.hs
-  other-modules:        DListProperties
-                        OverloadedStrings
-                        QuickCheckUtil
-  if impl(ghc >= 8.0)
-    other-modules:      DNonEmptyProperties
-  hs-source-dirs:       tests
-  build-depends:        dlist,
-                        base,
-                        -- QuickCheck-2.10 is the first version supporting
-                        -- base-4.9 (ghc-8) without the Arbitrary NonEmpty
-                        -- instance, which we include ourselves.
-                        QuickCheck >= 2.10 && < 2.15
-  default-language:     Haskell2010
-  ghc-options:          -Wall
-  if impl(ghc >= 8.0)
-    ghc-options:        -Wcompat
-                        -Wincomplete-record-updates
-                        -Wincomplete-uni-patterns
-                        -Wnoncanonical-monad-instances
-  if impl(ghc >= 8.2)
-    ghc-options:        -Wmissing-home-modules
-  if impl(ghc >= 8.4)
-    ghc-options:        -Wpartial-fields
-  if impl(ghc >= 8.10)
-    ghc-options:        -Wmissing-safe-haskell-mode
-                        -Wtrustworthy-safe
-  if flag(Werror)
-    ghc-options:        -Werror
+cabal-version:          >= 1.10
+
+name:                   dlist
+version:                1.0
+x-revision:             2
+
+synopsis:               Difference lists
+description:
+  List-like types supporting O(1) append and snoc operations.
+category:               Data
+license:                BSD3
+license-file:           license.md
+author:                 Don Stewart
+maintainer:             Sean Leather <[email protected]>
+copyright:              2006-2009 Don Stewart, 2013-2020 Sean Leather, 
2017-2020 Oleg Grenrus, contributors
+homepage:               https://github.com/spl/dlist
+bug-reports:            https://github.com/spl/dlist/issues
+extra-source-files:     readme.md,
+                        changelog.md
+                        tests/ImportUnsafe.hs
+build-type:             Simple
+
+tested-with:            GHC == 9.10.1
+                        GHC == 9.8.1
+                        GHC == 9.6.6
+                        GHC == 9.4.8
+                        GHC == 9.2.8
+                        GHC == 9.0.2
+                        GHC == 8.10.7
+                        GHC == 8.8.4
+                        GHC == 8.6.5
+                        GHC == 8.4.4
+                        GHC == 8.2.2
+                        GHC == 8.0.2
+                        GHC == 7.10.3
+                        GHC == 7.8.4
+                        GHC == 7.6.3
+                        GHC == 7.4.2
+                        GHC == 7.2.2
+                        GHC == 7.0.4
+
+source-repository head
+  type:                 git
+  location:             https://github.com/spl/dlist.git
+
+flag Werror
+  description:          Enable -Werror
+  default:              False
+  manual:               True
+
+library
+  build-depends:
+                        base >= 4 && < 5,
+                        deepseq >= 1.1 && < 1.6
+  exposed-modules:      Data.DList
+                        Data.DList.Unsafe
+  other-modules:        Data.DList.Internal
+  if impl(ghc >= 8.0)
+    exposed-modules:    Data.DList.DNonEmpty
+    other-modules:      Data.DList.DNonEmpty.Internal
+  default-language:     Haskell2010
+  ghc-options:          -Wall
+  if impl(ghc >= 8.0)
+    ghc-options:        -Wcompat
+                        -Wincomplete-record-updates
+                        -Wincomplete-uni-patterns
+                        -Wnoncanonical-monad-instances
+  if impl(ghc >= 8.2)
+    ghc-options:        -Wmissing-home-modules
+  if impl(ghc >= 8.4)
+    ghc-options:        -Wpartial-fields
+  if impl(ghc >= 8.10)
+    ghc-options:        -Wmissing-safe-haskell-mode
+                        -Wtrustworthy-safe
+  if flag(Werror)
+    ghc-options:        -Werror
+
+test-suite test
+  type:                 exitcode-stdio-1.0
+  main-is:              Main.hs
+  other-modules:        DListProperties
+                        OverloadedStrings
+                        QuickCheckUtil
+  if impl(ghc >= 8.0)
+    other-modules:      DNonEmptyProperties
+  hs-source-dirs:       tests
+  build-depends:        dlist,
+                        base,
+                        -- QuickCheck-2.10 is the first version supporting
+                        -- base-4.9 (ghc-8) without the Arbitrary NonEmpty
+                        -- instance, which we include ourselves.
+                        QuickCheck >= 2.10 && < 3
+  default-language:     Haskell2010
+  ghc-options:          -Wall
+  if impl(ghc >= 8.0)
+    ghc-options:        -Wcompat
+                        -Wincomplete-record-updates
+                        -Wincomplete-uni-patterns
+                        -Wnoncanonical-monad-instances
+  if impl(ghc >= 8.2)
+    ghc-options:        -Wmissing-home-modules
+  if impl(ghc >= 8.4)
+    ghc-options:        -Wpartial-fields
+  if impl(ghc >= 8.10)
+    ghc-options:        -Wmissing-safe-haskell-mode
+                        -Wtrustworthy-safe
+  if flag(Werror)
+    ghc-options:        -Werror
 

Reply via email to