diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2015-01-02 18:26:47 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2015-01-02 18:26:47 +0000 |
commit | 318bbdfafe3268681e6d881b916f844ee1b7a7cf (patch) | |
tree | c007fdd0a7031b931b40d17b68cb57bdf0c6b7ed /dev-haskell/uniqueid/uniqueid-0.1.1.ebuild | |
parent | x86 stable wrt bug #530008 (diff) | |
download | gentoo-2-318bbdfafe3268681e6d881b916f844ee1b7a7cf.tar.gz gentoo-2-318bbdfafe3268681e6d881b916f844ee1b7a7cf.tar.bz2 gentoo-2-318bbdfafe3268681e6d881b916f844ee1b7a7cf.zip |
Fix against ghc-7.8 (bug #534332 by Toralf Förster).
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell/uniqueid/uniqueid-0.1.1.ebuild')
-rw-r--r-- | dev-haskell/uniqueid/uniqueid-0.1.1.ebuild | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/dev-haskell/uniqueid/uniqueid-0.1.1.ebuild b/dev-haskell/uniqueid/uniqueid-0.1.1.ebuild index 519369fd82a3..fd312981600b 100644 --- a/dev-haskell/uniqueid/uniqueid-0.1.1.ebuild +++ b/dev-haskell/uniqueid/uniqueid-0.1.1.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uniqueid/uniqueid-0.1.1.ebuild,v 1.1 2013/08/26 12:34:27 qnikst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/uniqueid/uniqueid-0.1.1.ebuild,v 1.2 2015/01/02 18:26:47 slyfox Exp $ EAPI=5 # ebuild generated by hackport 0.3.9999 CABAL_FEATURES="lib profile haddock hoogle hscolour" -inherit haskell-cabal +inherit eutils haskell-cabal DESCRIPTION="Splittable Unique Identifier Supply" HOMEPAGE="http://github.com/sebfisch/uniqueid/wikis" @@ -18,6 +18,10 @@ SLOT="0/${PV}" KEYWORDS="~amd64 ~x86" IUSE="" -RDEPEND=">=dev-lang/ghc-6.10.4:=" +RDEPEND=">=dev-lang/ghc-7.8.1:=" DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.6" + >=dev-haskell/cabal-1.6" + +src_prepare() { + epatch "${FILESDIR}"/${P}-ghc-7.8.patch +} |