Hello community, here is the log from the commit of package ghc-MissingH for openSUSE:Factory checked in at 2016-05-25 21:28:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-MissingH (Old) and /work/SRC/openSUSE:Factory/.ghc-MissingH.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-MissingH" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-MissingH/ghc-MissingH.changes 2016-05-03 09:35:19.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-MissingH.new/ghc-MissingH.changes 2016-05-25 21:28:39.000000000 +0200 @@ -1,0 +2,5 @@ +Tue May 17 07:40:36 UTC 2016 - [email protected] + +- update to 1.3.0.2 + +------------------------------------------------------------------- Old: ---- MissingH-1.3.0.1.tar.gz New: ---- MissingH-1.3.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-MissingH.spec ++++++ --- /var/tmp/diff_new_pack.CLGBBV/_old 2016-05-25 21:28:39.000000000 +0200 +++ /var/tmp/diff_new_pack.CLGBBV/_new 2016-05-25 21:28:39.000000000 +0200 @@ -19,7 +19,7 @@ %global pkg_name MissingH %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.3.0.1 +Version: 1.3.0.2 Release: 0 Summary: Large utility library License: BSD-3-Clause ++++++ MissingH-1.3.0.1.tar.gz -> MissingH-1.3.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/MissingH-1.3.0.1/MissingH.cabal new/MissingH-1.3.0.2/MissingH.cabal --- old/MissingH-1.3.0.1/MissingH.cabal 2014-10-28 13:46:24.000000000 +0100 +++ new/MissingH-1.3.0.2/MissingH.cabal 2016-05-17 00:13:09.000000000 +0200 @@ -1,5 +1,5 @@ Name: MissingH -Version: 1.3.0.1 +Version: 1.3.0.2 License: BSD3 Maintainer: John Goerzen <[email protected]> Author: John Goerzen diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/MissingH-1.3.0.1/src/Data/BinPacking.hs new/MissingH-1.3.0.2/src/Data/BinPacking.hs --- old/MissingH-1.3.0.1/src/Data/BinPacking.hs 2014-10-28 13:46:24.000000000 +0100 +++ new/MissingH-1.3.0.2/src/Data/BinPacking.hs 2016-05-17 00:13:09.000000000 +0200 @@ -69,7 +69,7 @@ > [(size, obj)] is the sizes and objects > result is Either error or results -} -type BinPacker = (Num size, Ord size, Show size, Show obj) => +type BinPacker = forall size obj. (Num size, Ord size, Show size, Show obj) => [size] -- The sizes of bins -> [(size, obj)] -- The sizes and objects -> Either (BinPackerError size obj) [[(size, obj)]] -- Either error or results diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/MissingH-1.3.0.1/src/System/IO/HVFS.hs new/MissingH-1.3.0.2/src/System/IO/HVFS.hs --- old/MissingH-1.3.0.1/src/System/IO/HVFS.hs 2014-10-28 13:46:24.000000000 +0100 +++ new/MissingH-1.3.0.2/src/System/IO/HVFS.hs 2016-05-17 00:13:09.000000000 +0200 @@ -60,7 +60,7 @@ import System.IO.PlafCompat import System.Posix.Types import System.Time -import System.Directory +import System.Directory hiding (isSymbolicLink) #if MIN_VERSION_directory(1,2,0) import Data.Time.Clock.POSIX ( utcTimeToPOSIXSeconds ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/MissingH-1.3.0.1/testsrc/Eithertest.hs new/MissingH-1.3.0.2/testsrc/Eithertest.hs --- old/MissingH-1.3.0.1/testsrc/Eithertest.hs 2014-10-28 13:46:24.000000000 +0100 +++ new/MissingH-1.3.0.2/testsrc/Eithertest.hs 2016-05-17 00:13:09.000000000 +0200 @@ -30,7 +30,8 @@ let f msg inp exp = TestLabel msg $ TestCase $ assertEqual "" exp inp in [ f "Right" (forceEither ((Right "foo")::Either Int String)) "foo", - TestLabel "Left" $ TestCase $ assertRaises "" (ErrorCall "\"wrong\"") + TestLabel "Left" $ TestCase $ assertRaises "" + (ErrorCallWithLocation "\"wrong\"" "CallStack (from HasCallStack):\n error, called at src/Data/Either/Utils.hs:51:24 in main:Data.Either.Utils") ("" @=? forceEither (Left "wrong")) ]
