summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2011-08-04 21:03:17 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2011-08-04 21:03:17 +0000
commita3147512560c26d1448e410c02250641c9c8c4b6 (patch)
tree480a64f43317d6295502b70acbc8bd0e50dfe0b4 /dev-haskell/hashed-storage/files
parentAnd apparently now it turns out --without-network doesn't just disable the vi... (diff)
downloadgentoo-2-a3147512560c26d1448e410c02250641c9c8c4b6.tar.gz
gentoo-2-a3147512560c26d1448e410c02250641c9c8c4b6.tar.bz2
gentoo-2-a3147512560c26d1448e410c02250641c9c8c4b6.zip
dev-vcs/darcs: version bump (and it's minimal depends)
(Portage version: 2.1.10.10/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell/hashed-storage/files')
-rw-r--r--dev-haskell/hashed-storage/files/hashed-storage-0.5.7-ghc-7.2.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-haskell/hashed-storage/files/hashed-storage-0.5.7-ghc-7.2.patch b/dev-haskell/hashed-storage/files/hashed-storage-0.5.7-ghc-7.2.patch
new file mode 100644
index 000000000000..01940fe44596
--- /dev/null
+++ b/dev-haskell/hashed-storage/files/hashed-storage-0.5.7-ghc-7.2.patch
@@ -0,0 +1,20 @@
+diff --git a/Storage/Hashed/Monad.hs b/Storage/Hashed/Monad.hs
+index b86a702..5d96d4d 100644
+--- a/Storage/Hashed/Monad.hs
++++ b/Storage/Hashed/Monad.hs
+@@ -1,4 +1,5 @@
+ {-# LANGUAGE ScopedTypeVariables, BangPatterns, TypeSynonymInstances, UndecidableInstances #-}
++{-# LANGUAGE FlexibleInstances #-}
+
+ -- | An experimental monadic interface to Tree mutation. The main idea is to
+ -- simulate IO-ish manipulation of real filesystem (that's the state part of
+diff --git a/Storage/Hashed/Tree.hs b/Storage/Hashed/Tree.hs
+index 0bef0e6..c4bb669 100644
+--- a/Storage/Hashed/Tree.hs
++++ b/Storage/Hashed/Tree.hs
+@@ -1,4 +1,5 @@
+ {-# LANGUAGE ScopedTypeVariables, MultiParamTypeClasses, FlexibleInstances #-}
++{-# LANGUAGE BangPatterns #-}
+
+ -- | The abstract representation of a Tree and useful abstract utilities to
+ -- handle those.