diff options
-rw-r--r-- | dev-haskell/bloomfilter/ChangeLog | 10 | ||||
-rw-r--r-- | dev-haskell/bloomfilter/bloomfilter-1.2.6.10-r1.ebuild | 39 |
2 files changed, 47 insertions, 2 deletions
diff --git a/dev-haskell/bloomfilter/ChangeLog b/dev-haskell/bloomfilter/ChangeLog index 7157118d9ee4..730dd98e05ba 100644 --- a/dev-haskell/bloomfilter/ChangeLog +++ b/dev-haskell/bloomfilter/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-haskell/bloomfilter -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/bloomfilter/ChangeLog,v 1.2 2012/09/12 15:54:45 qnikst Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/bloomfilter/ChangeLog,v 1.3 2013/01/01 13:17:08 slyfox Exp $ + +*bloomfilter-1.2.6.10-r1 (01 Jan 2013) + + 01 Jan 2013; Sergei Trofimovich <slyfox@gentoo.org> + +bloomfilter-1.2.6.10-r1.ebuild: + Version bump. 12 Sep 2012; Alexander Vershilov <qnikst@gentoo.org> bloomfilter-1.2.6.8.ebuild: diff --git a/dev-haskell/bloomfilter/bloomfilter-1.2.6.10-r1.ebuild b/dev-haskell/bloomfilter/bloomfilter-1.2.6.10-r1.ebuild new file mode 100644 index 000000000000..651ef9c8f58c --- /dev/null +++ b/dev-haskell/bloomfilter/bloomfilter-1.2.6.10-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/bloomfilter/bloomfilter-1.2.6.10-r1.ebuild,v 1.1 2013/01/01 13:17:08 slyfox Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.2.18.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit eutils haskell-cabal + +DESCRIPTION="Pure and impure Bloom Filter implementations." +HOMEPAGE="https://github.com/bos/bloomfilter" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/deepseq:=[profile?] + >=dev-lang/ghc-6.8.2:=" +DEPEND="${RDEPEND} + test? ( >=dev-haskell/quickcheck-2.4 + <dev-haskell/quickcheck-2.6 + dev-haskell/random + dev-haskell/test-framework + dev-haskell/test-framework-quickcheck2 + ) + >=dev-haskell/cabal-1.8" + +src_prepare() { + cabal_chdeps \ + 'QuickCheck == 2.4.*' 'QuickCheck >= 2.4 && < 2.6' + + if has_version ">=dev-haskell/quickcheck-2.5"; then + epatch "${FILESDIR}/${PN}-1.2.6.10-quickcheck-2.6.patch" + fi +} |