summaryrefslogtreecommitdiff
path: root/dev-haskell/constraints/files
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2020-09-12 15:27:44 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2020-09-12 15:36:47 +0100
commitd89adf56425f12dc192894e84c3abffd2b30ee46 (patch)
treee4531d2970022d4d4effbe26b56a36c60b1a0f07 /dev-haskell/constraints/files
parent7ebe97caea2b22588596e2c0f36918aa0eef4e1b (diff)
downloadgentoo-d89adf56425f12dc192894e84c3abffd2b30ee46.tar.gz
gentoo-d89adf56425f12dc192894e84c3abffd2b30ee46.tar.bz2
gentoo-d89adf56425f12dc192894e84c3abffd2b30ee46.zip
dev-haskell/constraints: drop old
Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-haskell/constraints/files')
-rw-r--r--dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch b/dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch
deleted file mode 100644
index 1b2f8169c45d..000000000000
--- a/dev-haskell/constraints/files/constraints-0.4.1.3-ghc-8.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff --git a/Data/Constraint.hs b/Data/Constraint.hs
-index 84d67c0..a104f51 100644
---- a/Data/Constraint.hs
-+++ b/Data/Constraint.hs
-@@ -79,3 +79,7 @@ import Data.Data
- #endif
-+#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ >= 707
-+import GHC.Exts (Constraint)
-+#else
- import GHC.Prim (Constraint)
-+#endif
-
-@@ -375,3 +379,3 @@ instance Class () (b :=> a) where cls = Sub Dict
- instance Class b a => () :=> Class b a where ins = Sub Dict
--instance (b :=> a) => () :=> b :=> a where ins = Sub Dict
-+instance (b :=> a) => () :=> (b :=> a) where ins = Sub Dict
-