Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/chell/files: chell-0.4-ghc-7.10.patch
Date: Fri, 02 Jan 2015 03:27:08
Message-Id: 20150102032703.EEEBCEAEA@oystercatcher.gentoo.org
1 gienah 15/01/02 03:27:03
2
3 Added: chell-0.4-ghc-7.10.patch
4 Log:
5 Patch chell-0.4 for ghc 7.10
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
8
9 Revision Changes Path
10 1.1 dev-haskell/chell/files/chell-0.4-ghc-7.10.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/chell/files/chell-0.4-ghc-7.10.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/chell/files/chell-0.4-ghc-7.10.patch?rev=1.1&content-type=text/plain
14
15 Index: chell-0.4-ghc-7.10.patch
16 ===================================================================
17 --- chell-0.4-orig/lib/Test/Chell.hs 2014-05-19 03:42:17.000000000 +1000
18 +++ chell-0.4/lib/Test/Chell.hs 2015-01-02 14:19:11.555163417 +1100
19 @@ -1,6 +1,7 @@
20 {-# LANGUAGE TemplateHaskell #-}
21 {-# LANGUAGE TypeSynonymInstances #-}
22 {-# LANGUAGE FlexibleInstances #-}
23 +{-# LANGUAGE CPP #-}
24
25 -- | Chell is a simple and intuitive library for automated testing. It natively
26 -- supports assertion-based testing, and can use companion libraries
27 @@ -118,6 +119,9 @@
28 , testOptionTimeout
29 ) where
30
31 +#if MIN_VERSION_base(4,8,0)
32 +import Prelude hiding(pure)
33 +#endif
34 import qualified Control.Applicative
35 import qualified Control.Exception
36 import Control.Exception (Exception)