Hello community, here is the log from the commit of package ghc-mockery for openSUSE:Factory checked in at 2017-07-05 23:59:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-mockery (Old) and /work/SRC/openSUSE:Factory/.ghc-mockery.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-mockery" Wed Jul 5 23:59:18 2017 rev:3 rq:506815 version:0.3.5 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-mockery/ghc-mockery.changes 2016-11-10 13:29:58.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-mockery.new/ghc-mockery.changes 2017-07-05 23:59:20.228636080 +0200 @@ -1,0 +2,5 @@ +Mon Jun 19 20:53:32 UTC 2017 - [email protected] + +- Update to version 0.3.5. + +------------------------------------------------------------------- Old: ---- mockery-0.3.4.tar.gz New: ---- mockery-0.3.5.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-mockery.spec ++++++ --- /var/tmp/diff_new_pack.5mOBgu/_old 2017-07-05 23:59:20.896541991 +0200 +++ /var/tmp/diff_new_pack.5mOBgu/_new 2017-07-05 23:59:20.900541428 +0200 @@ -1,7 +1,7 @@ # # spec file for package ghc-mockery # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 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,7 +19,7 @@ %global pkg_name mockery %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.3.4 +Version: 0.3.5 Release: 0 Summary: Support functions for automated testing License: MIT ++++++ mockery-0.3.4.tar.gz -> mockery-0.3.5.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mockery-0.3.4/mockery.cabal new/mockery-0.3.5/mockery.cabal --- old/mockery-0.3.4/mockery.cabal 2016-10-30 05:01:07.000000000 +0100 +++ new/mockery-0.3.5/mockery.cabal 2017-06-13 16:57:17.000000000 +0200 @@ -1,9 +1,9 @@ --- This file has been generated from package.yaml by hpack version 0.15.0. +-- This file has been generated from package.yaml by hpack version 0.18.0. -- -- see: https://github.com/sol/hpack name: mockery -version: 0.3.4 +version: 0.3.5 synopsis: Support functions for automated testing description: Support functions for automated testing category: Testing @@ -36,6 +36,8 @@ Test.Mockery.Directory Test.Mockery.Environment Test.Mockery.Logging + other-modules: + Paths_mockery default-language: Haskell2010 test-suite spec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mockery-0.3.4/src/Test/Mockery/Environment.hs new/mockery-0.3.5/src/Test/Mockery/Environment.hs --- old/mockery-0.3.4/src/Test/Mockery/Environment.hs 2016-10-30 05:01:07.000000000 +0100 +++ new/mockery-0.3.5/src/Test/Mockery/Environment.hs 2017-06-13 16:57:17.000000000 +0200 @@ -33,7 +33,7 @@ -- environment can no longer be run in parallel. withModifiedEnvironment :: [(String, String)] -> IO a -> IO a withModifiedEnvironment environment action = bracketEnvironment $ do - modifyEnvironment environment + extendEnvironment environment action bracketEnvironment :: IO a -> IO a @@ -42,10 +42,10 @@ setEnvironment :: [(String, String)] -> IO () setEnvironment environment = do clearEnvironment - modifyEnvironment environment + extendEnvironment environment -modifyEnvironment :: [(String, String)] -> IO () -modifyEnvironment environment = forM_ environment $ uncurry setEnv +extendEnvironment :: [(String, String)] -> IO () +extendEnvironment environment = forM_ environment $ uncurry setEnv clearEnvironment :: IO () clearEnvironment = do diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mockery-0.3.4/src/Test/Mockery/Logging.hs new/mockery-0.3.5/src/Test/Mockery/Logging.hs --- old/mockery-0.3.4/src/Test/Mockery/Logging.hs 2016-10-30 05:01:07.000000000 +0100 +++ new/mockery-0.3.5/src/Test/Mockery/Logging.hs 2017-06-13 16:57:17.000000000 +0200 @@ -1,4 +1,3 @@ -{-# LANGUAGE CPP #-} {-# LANGUAGE RecordWildCards #-} module Test.Mockery.Logging ( captureLogMessages @@ -6,11 +5,10 @@ , LogLevel(..) ) where -#if !MIN_VERSION_base(4,8,0) -import Control.Applicative -#endif import Control.Exception -import Data.IORef +import Data.IORef.Compat +import Prelude () +import Prelude.Compat import System.Logging.Facade.Types import System.Logging.Facade.Sink
