diff options
author | 2015-05-03 09:07:20 +0000 | |
---|---|---|
committer | 2015-05-03 09:07:20 +0000 | |
commit | 0816b0a1064aca3398c4909010f4b403f56d5044 (patch) | |
tree | 18675cc2992d28df850d5b3f2b50da4e06105bca /dev-haskell/quickcheck | |
parent | Drop old. (diff) | |
download | gentoo-2-0816b0a1064aca3398c4909010f4b403f56d5044.tar.gz gentoo-2-0816b0a1064aca3398c4909010f4b403f56d5044.tar.bz2 gentoo-2-0816b0a1064aca3398c4909010f4b403f56d5044.zip |
Drop old patch.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell/quickcheck')
-rw-r--r-- | dev-haskell/quickcheck/ChangeLog | 6 | ||||
-rw-r--r-- | dev-haskell/quickcheck/files/quickcheck-2.1.1.1-ghc-7.patch | 12 |
2 files changed, 5 insertions, 13 deletions
diff --git a/dev-haskell/quickcheck/ChangeLog b/dev-haskell/quickcheck/ChangeLog index 28bc55baa67b..3019798f660d 100644 --- a/dev-haskell/quickcheck/ChangeLog +++ b/dev-haskell/quickcheck/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-haskell/quickcheck # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/quickcheck/ChangeLog,v 1.74 2015/05/03 09:06:30 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/quickcheck/ChangeLog,v 1.75 2015/05/03 09:07:20 slyfox Exp $ + + 03 May 2015; Sergei Trofimovich <slyfox@gentoo.org> + -files/quickcheck-2.1.1.1-ghc-7.patch: + Drop old patch. 03 May 2015; Sergei Trofimovich <slyfox@gentoo.org> -files/quickcheck-1.1.0.0-ghc-6.10-build-fix.patch, diff --git a/dev-haskell/quickcheck/files/quickcheck-2.1.1.1-ghc-7.patch b/dev-haskell/quickcheck/files/quickcheck-2.1.1.1-ghc-7.patch deleted file mode 100644 index 87abeeb51e34..000000000000 --- a/dev-haskell/quickcheck/files/quickcheck-2.1.1.1-ghc-7.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/Test/QuickCheck/Function.hs b/Test/QuickCheck/Function.hs -index a1affaf..7c730bd 100644 ---- a/Test/QuickCheck/Function.hs -+++ b/Test/QuickCheck/Function.hs -@@ -206,6 +206,7 @@ shrinkFun shr (p :+: q) = - [ p' .+. q | p' <- shrinkFun shr p ] ++ - [ p .+. q' | q' <- shrinkFun shr q ] - where -+ isNil :: (a :-> b) -> Bool - isNil Nil = True - isNil _ = False - |