From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E33991381F3 for ; Sun, 25 Aug 2013 04:48:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 752C1E0CB6; Sun, 25 Aug 2013 04:48:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 08F6EE0CB6 for ; Sun, 25 Aug 2013 04:48:18 +0000 (UTC) Received: from flycatcher.gentoo.org (flycatcher.gentoo.org [81.93.255.6]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E2F233ECF7 for ; Sun, 25 Aug 2013 04:48:18 +0000 (UTC) Received: by flycatcher.gentoo.org (Postfix, from userid 2327) id BA0A52004E; Sun, 25 Aug 2013 04:48:16 +0000 (UTC) From: "Alexander Vershilov (qnikst)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, qnikst@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/monadcatchio-transformers/files: monadcatchio-transformers-0.3.0.0-ghc-7.5.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: monadcatchio-transformers-0.3.0.0-ghc-7.5.patch X-VCS-Directories: dev-haskell/monadcatchio-transformers/files X-VCS-Committer: qnikst X-VCS-Committer-Name: Alexander Vershilov Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20130825044816.BA0A52004E@flycatcher.gentoo.org> Date: Sun, 25 Aug 2013 04:48:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 848dd169-92c5-48fa-ac14-e66214e64389 X-Archives-Hash: fe246e859b0b18f39f9bf01670701bbb qnikst 13/08/25 04:48:16 Added: monadcatchio-transformers-0.3.0.0-ghc-7.5.patch Log: [dev-haskell/monadcatchio-transformers: initial layout (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xEAD50D64D8D3571A!) Revision Changes Path 1.1 dev-haskell/monadcatchio-transformers/files/monadcatchio-transformers-0.3.0.0-ghc-7.5.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/monadcatchio-transformers/files/monadcatchio-transformers-0.3.0.0-ghc-7.5.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/monadcatchio-transformers/files/monadcatchio-transformers-0.3.0.0-ghc-7.5.patch?rev=1.1&content-type=text/plain Index: monadcatchio-transformers-0.3.0.0-ghc-7.5.patch =================================================================== --- MonadCatchIO-transformers-0.3.0.0-orig/src/Control/Monad/CatchIO.hs 2012-04-10 07:23:39.000000000 +1000 +++ MonadCatchIO-transformers-0.3.0.0/src/Control/Monad/CatchIO.hs 2012-07-07 21:21:26.691029176 +1000 @@ -1,4 +1,4 @@ -{-# LANGUAGE ExistentialQuantification, ScopedTypeVariables #-} +{-# LANGUAGE CPP, ExistentialQuantification, ScopedTypeVariables #-} module Control.Monad.CatchIO ( MonadCatchIO(..) @@ -16,7 +16,9 @@ where +#if !MIN_VERSION_base(4,6,0) import Prelude hiding ( catch ) +#endif import Control.Applicative ((<$>)) import qualified Control.Exception.Extensible as E