forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-haskell/cabal: bump up to 1.22.6.0
Package-Manager: portage-2.2.26
- Loading branch information
Sergei Trofimovich
committed
Jan 16, 2016
1 parent
c1f16f1
commit a923256
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
# ebuild generated by hackport 0.4.5.9999 | ||
|
||
CABAL_FEATURES="lib profile test-suite" | ||
CABAL_FEATURES+=" bootstrap" # does not need cabal to build itself | ||
inherit haskell-cabal | ||
|
||
MY_PN="Cabal" | ||
MY_P="${MY_PN}-${PV}" | ||
|
||
DESCRIPTION="A framework for packaging Haskell software" | ||
HOMEPAGE="http://www.haskell.org/cabal/" | ||
SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris" | ||
IUSE="" | ||
|
||
RESTRICT=test | ||
|
||
RDEPEND=">=dev-lang/ghc-7.8.1:=" | ||
DEPEND="${RDEPEND} | ||
test? ( dev-haskell/extensible-exceptions | ||
dev-haskell/hunit | ||
>=dev-haskell/quickcheck-2.1.0.1:2 <dev-haskell/quickcheck-2.9:2 | ||
dev-haskell/regex-posix | ||
dev-haskell/test-framework | ||
dev-haskell/test-framework-hunit | ||
>=dev-haskell/test-framework-quickcheck2-0.2.12 ) | ||
" | ||
|
||
S="${WORKDIR}/${MY_PN}-${PV}" | ||
|
||
src_prepare() { | ||
if [[ -n ${LIVE_EBUILD} ]]; then | ||
CABAL_FILE=${MY_PN}.cabal cabal_chdeps 'version: 1.17.0' "version: ${PV}" | ||
fi | ||
} | ||
|
||
src_configure() { | ||
cabal-is-dummy-lib && return | ||
|
||
einfo "Bootstrapping Cabal..." | ||
$(ghc-getghc) ${HCFLAGS} -i -i. -i"${WORKDIR}/${FP_P}" -cpp --make Setup.hs \ | ||
-o setup || die "compiling Setup.hs failed" | ||
cabal-configure | ||
} | ||
|
||
src_compile() { | ||
cabal-is-dummy-lib && return | ||
|
||
cabal-build | ||
} |