diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2014-04-13 13:09:57 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2014-04-13 13:09:57 +0000 |
commit | a7ff42010412e5b87eab58399d650981e9a657e2 (patch) | |
tree | d236a824a3d9151422f2c7a7467cb4c371726182 /dev-haskell | |
parent | Mark as ghc-7.8 core lib. (diff) | |
download | gentoo-2-a7ff42010412e5b87eab58399d650981e9a657e2.tar.gz gentoo-2-a7ff42010412e5b87eab58399d650981e9a657e2.tar.bz2 gentoo-2-a7ff42010412e5b87eab58399d650981e9a657e2.zip |
Version bump.
(Portage version: 2.2.10_p15/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell')
-rw-r--r-- | dev-haskell/cabal-install/ChangeLog | 10 | ||||
-rw-r--r-- | dev-haskell/cabal-install/cabal-install-1.18.0.3.ebuild | 54 |
2 files changed, 62 insertions, 2 deletions
diff --git a/dev-haskell/cabal-install/ChangeLog b/dev-haskell/cabal-install/ChangeLog index 064c588b63c8..8c841e1e1ffd 100644 --- a/dev-haskell/cabal-install/ChangeLog +++ b/dev-haskell/cabal-install/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-haskell/cabal-install -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/ChangeLog,v 1.17 2013/11/14 18:20:15 slyfox Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/ChangeLog,v 1.18 2014/04/13 13:09:57 slyfox Exp $ + +*cabal-install-1.18.0.3 (13 Apr 2014) + + 13 Apr 2014; Sergei Trofimovich <slyfox@gentoo.org> + +cabal-install-1.18.0.3.ebuild: + Version bump. *cabal-install-1.18.0.2 (14 Nov 2013) diff --git a/dev-haskell/cabal-install/cabal-install-1.18.0.3.ebuild b/dev-haskell/cabal-install/cabal-install-1.18.0.3.ebuild new file mode 100644 index 000000000000..c513d6d53008 --- /dev/null +++ b/dev-haskell/cabal-install/cabal-install-1.18.0.3.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cabal-install/cabal-install-1.18.0.3.ebuild,v 1.1 2014/04/13 13:09:57 slyfox Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.6.9999 + +CABAL_FEATURES="bin test-suite" +inherit bash-completion-r1 eutils haskell-cabal + +DESCRIPTION="The command-line interface for Cabal and Hackage." +HOMEPAGE="http://www.haskell.org/cabal/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="+noprefs" + +RDEPEND="" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.18.0 <dev-haskell/cabal-1.19 + >=dev-haskell/http-4000.0.8 <dev-haskell/http-4001 + >=dev-haskell/mtl-2.0 <dev-haskell/mtl-3 + >=dev-haskell/network-1 <dev-haskell/network-3 + >=dev-haskell/random-1 <dev-haskell/random-1.1 + >=dev-haskell/stm-2.0 <dev-haskell/stm-3 + >=dev-haskell/zlib-0.5.3 <dev-haskell/zlib-0.6 + >=dev-lang/ghc-6.12.1 + test? ( dev-haskell/hunit + >=dev-haskell/quickcheck-2.5 + dev-haskell/test-framework + dev-haskell/test-framework-hunit + >=dev-haskell/test-framework-quickcheck2-0.3 ) +" + +src_prepare() { + if use noprefs; then + epatch "${FILESDIR}/${PN}"-0.13.3-nopref.patch + fi + + # no chance to link to -threaded on ppc64, alpha and others + # who use UNREG, not only ARM + if ! ghc-supports-threaded-runtime; then + cabal_chdeps '-threaded' ' ' + fi +} + +src_install() { + haskell-cabal_src_install + + newbashcomp "${S}/bash-completion/cabal" ${PN} +} |