Hello community, here is the log from the commit of package ghc-dlist for openSUSE:Leap:15.2 checked in at 2020-02-19 18:38:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/ghc-dlist (Old) and /work/SRC/openSUSE:Leap:15.2/.ghc-dlist.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-dlist" Wed Feb 19 18:38:41 2020 rev:11 rq:771288 version:0.8.0.7 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/ghc-dlist/ghc-dlist.changes 2020-01-15 15:01:59.637796606 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.ghc-dlist.new.26092/ghc-dlist.changes 2020-02-19 18:38:46.313988385 +0100 @@ -1,0 +2,35 @@ +Fri Nov 8 16:13:37 UTC 2019 - Peter Simons <[email protected]> + +- Drop obsolete group attributes. + +------------------------------------------------------------------- +Wed Aug 7 08:03:11 UTC 2019 - [email protected] + +- Update dlist to version 0.8.0.7. + Version 0.8.0.7 (2019-08-05) *Independence Day in Burkina Faso* + --------------------------------------------------------------- + + #### Package changes + + * Add `MonadFail` instance for GHC >= 8.8 + ([Vanessa McHale](https://github.com/vmchale)) + * Change `deepseq` upper bound to 1.5 + ([Herbert Valerio Riedel](https://github.com/hvr)) + +------------------------------------------------------------------- +Tue Jun 11 14:29:09 UTC 2019 - Peter Simons <[email protected]> + +- Update Cabal file for more accurate build dependencies. + +------------------------------------------------------------------- +Sat Mar 30 03:03:31 UTC 2019 - [email protected] + +- Update dlist to version 0.8.0.6. + Version 0.8.0.6 (2019-03-29) *Martyrs' Day in Madagascar* + --------------------------------------------------------- + + #### Package changes + + * Change QuickCheck upper bound from 2.13 to 2.14 + +------------------------------------------------------------------- Old: ---- dlist-0.8.0.5.tar.gz New: ---- dlist-0.8.0.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-dlist.spec ++++++ --- /var/tmp/diff_new_pack.XnKOjZ/_old 2020-02-19 18:38:46.613989013 +0100 +++ /var/tmp/diff_new_pack.XnKOjZ/_new 2020-02-19 18:38:46.613989013 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-dlist # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,11 +19,10 @@ %global pkg_name dlist %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.8.0.5 +Version: 0.8.0.7 Release: 0 Summary: Difference lists License: BSD-3-Clause -Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz BuildRequires: ghc-Cabal-devel @@ -40,7 +39,6 @@ %package devel Summary: Haskell %{pkg_name} library development files -Group: Development/Libraries/Haskell Requires: %{name} = %{version}-%{release} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} ++++++ dlist-0.8.0.5.tar.gz -> dlist-0.8.0.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dlist-0.8.0.5/ChangeLog.md new/dlist-0.8.0.7/ChangeLog.md --- old/dlist-0.8.0.5/ChangeLog.md 2018-09-13 09:00:57.000000000 +0200 +++ new/dlist-0.8.0.7/ChangeLog.md 2019-08-05 13:37:52.000000000 +0200 @@ -2,6 +2,23 @@ Change Log ========== +Version 0.8.0.7 (2019-08-05) *Independence Day in Burkina Faso* +--------------------------------------------------------------- + +#### Package changes + +* Add `MonadFail` instance for GHC >= 8.8 + ([Vanessa McHale](https://github.com/vmchale)) +* Change `deepseq` upper bound to 1.5 + ([Herbert Valerio Riedel](https://github.com/hvr)) + +Version 0.8.0.6 (2019-03-29) *Martyrs' Day in Madagascar* +--------------------------------------------------------- + +#### Package changes + +* Change QuickCheck upper bound from 2.13 to 2.14 + Version 0.8.0.5 (2018-09-13) *Day of the Programmer* ---------------------------------------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dlist-0.8.0.5/Data/DList.hs new/dlist-0.8.0.7/Data/DList.hs --- old/dlist-0.8.0.5/Data/DList.hs 2018-09-13 09:00:57.000000000 +0200 +++ new/dlist-0.8.0.7/Data/DList.hs 2019-08-05 13:37:52.000000000 +0200 @@ -78,6 +78,9 @@ #if MIN_VERSION_base(4,9,0) import Data.Semigroup (Semigroup(..)) +#if !MIN_VERSION_base(4,13,0) +import Control.Monad.Fail (MonadFail(..)) +#endif #endif #ifdef __GLASGOW_HASKELL__ @@ -278,8 +281,16 @@ return = pure {-# INLINE return #-} +#if !MIN_VERSION_base(4,13,0) fail _ = empty {-# INLINE fail #-} +#endif + +#if MIN_VERSION_base(4,9,0) +instance MonadFail DList where + fail _ = empty + {-# INLINE fail #-} +#endif instance MonadPlus DList where mzero = empty diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dlist-0.8.0.5/dlist.cabal new/dlist-0.8.0.7/dlist.cabal --- old/dlist-0.8.0.5/dlist.cabal 2018-09-13 09:00:57.000000000 +0200 +++ new/dlist-0.8.0.7/dlist.cabal 2019-08-05 13:37:52.000000000 +0200 @@ -1,5 +1,5 @@ name: dlist -version: 0.8.0.5 +version: 0.8.0.7 synopsis: Difference lists description: Difference lists are a list-like type supporting O(1) append. This is @@ -23,7 +23,11 @@ GHC==7.6.3 GHC==7.8.4 GHC==7.10.3 - GHC==8.0.1 + GHC==8.0.2 + GHC==8.2.2 + GHC==8.4.4 + GHC==8.6.5 + GHC==8.8.1 source-repository head type: git @@ -32,7 +36,7 @@ library build-depends: base >= 4 && < 5, - deepseq >= 1.1 && < 2 + deepseq >= 1.1 && < 1.5 extensions: CPP exposed-modules: Data.DList ghc-options: -Wall @@ -48,4 +52,4 @@ -- 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.13 + QuickCheck >= 2.10 && < 2.14 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/dlist-0.8.0.5/tests/Main.hs new/dlist-0.8.0.7/tests/Main.hs --- old/dlist-0.8.0.5/tests/Main.hs 2018-09-13 09:00:57.000000000 +0200 +++ new/dlist-0.8.0.7/tests/Main.hs 2019-08-05 13:37:52.000000000 +0200 @@ -98,6 +98,9 @@ f :: DList Int -> DList Int f = id +prop_fail :: String -> Bool +prop_fail str = fail str == (empty :: DList ()) + #if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 708 -- | Test that the IsList instance methods compile and work with simple lists prop_IsList :: Bool @@ -156,6 +159,7 @@ , ("replicate", property prop_replicate) , ("head", property prop_head) , ("tail", property prop_tail) + , ("fail", property prop_fail) , ("unfoldr", property prop_unfoldr) , ("foldr", property prop_foldr) , ("map", property prop_map)
