diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2013-04-16 06:13:37 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2013-04-16 06:13:37 +0000 |
commit | 5d17678f1ff000c2917b4dc346de211a29620201 (patch) | |
tree | 45691ae9fa6ecdb775e03a767cf2c8a4bbe66a02 /dev-haskell | |
parent | Only depend on allowed sqlite versions (bug #465978) (diff) | |
download | gentoo-2-5d17678f1ff000c2917b4dc346de211a29620201.tar.gz gentoo-2-5d17678f1ff000c2917b4dc346de211a29620201.tar.bz2 gentoo-2-5d17678f1ff000c2917b4dc346de211a29620201.zip |
Added missing patch. Fixes build failure in bug #466052 by Patrick Lauer.
(Portage version: 2.2.0_alpha172/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell')
-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 |