diff options
Diffstat (limited to 'dev-haskell/chasingbottoms')
-rw-r--r-- | dev-haskell/chasingbottoms/ChangeLog | 6 | ||||
-rw-r--r-- | dev-haskell/chasingbottoms/files/chasingbottoms-1.3.0.5-ghc-7.6.patch | 18 |
2 files changed, 23 insertions, 1 deletions
diff --git a/dev-haskell/chasingbottoms/ChangeLog b/dev-haskell/chasingbottoms/ChangeLog index 49be1a70dce5..a8a3d64c9684 100644 --- a/dev-haskell/chasingbottoms/ChangeLog +++ b/dev-haskell/chasingbottoms/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-haskell/chasingbottoms # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/chasingbottoms/ChangeLog,v 1.1 2013/04/02 07:26:52 gienah Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/chasingbottoms/ChangeLog,v 1.2 2013/04/16 06:13:37 slyfox Exp $ + + 16 Apr 2013; Sergei Trofimovich <slyfox@gentoo.org> + +files/chasingbottoms-1.3.0.5-ghc-7.6.patch: + Added missing patch. Fixes build failure in bug #466052 by Patrick Lauer. *chasingbottoms-1.3.0.5-r2 (02 Apr 2013) diff --git a/dev-haskell/chasingbottoms/files/chasingbottoms-1.3.0.5-ghc-7.6.patch b/dev-haskell/chasingbottoms/files/chasingbottoms-1.3.0.5-ghc-7.6.patch new file mode 100644 index 000000000000..7d6165b62a36 --- /dev/null +++ b/dev-haskell/chasingbottoms/files/chasingbottoms-1.3.0.5-ghc-7.6.patch @@ -0,0 +1,18 @@ +--- ChasingBottoms-1.3.0.5-orig/Test/ChasingBottoms/IsBottom.hs 2012-09-07 19:47:03.000000000 +1000 ++++ ChasingBottoms-1.3.0.5/Test/ChasingBottoms/IsBottom.hs 2012-09-18 14:11:17.828116785 +1000 +@@ -1,4 +1,4 @@ +-{-# LANGUAGE ScopedTypeVariables #-} ++{-# LANGUAGE CPP, ScopedTypeVariables #-} + + -- | + -- Module : Test.ChasingBottoms.IsBottom +@@ -17,7 +17,9 @@ + , isBottomTimeOut + ) where + ++#if !MIN_VERSION_base(4,6,0) + import Prelude hiding (catch) ++#endif + import qualified Control.Exception as E + import System.IO.Unsafe (unsafePerformIO) + import qualified Test.ChasingBottoms.TimeOut as T |