Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/parallel-io/
Date: Sat, 02 Mar 2019 00:45:13
Message-Id: 1551487472.d3f699b59825f4426e6ac961a42dd510a6a217bb.mjo@gentoo
1 commit: d3f699b59825f4426e6ac961a42dd510a6a217bb
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 2 00:38:01 2019 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 2 00:44:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3f699b5
7
8 dev-haskell/parallel-io: new revision to fix "containers" bound.
9
10 This Gentoo -r3 pulls in the changes from the Hackage -r2, allowing
11 parallel-io to build against modern versions of the containers package.
12 I updated to EAPI=6 while I was at it.
13
14 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
15 Package-Manager: Portage-2.3.51, Repoman-2.3.11
16
17 ...allel-io-0.3.3-r2.ebuild => parallel-io-0.3.3-r3.ebuild} | 13 +++++++++----
18 1 file changed, 9 insertions(+), 4 deletions(-)
19
20 diff --git a/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild b/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
21 similarity index 79%
22 rename from dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild
23 rename to dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
24 index 048d8362c8f..819e55578a6 100644
25 --- a/dev-haskell/parallel-io/parallel-io-0.3.3-r2.ebuild
26 +++ b/dev-haskell/parallel-io/parallel-io-0.3.3-r3.ebuild
27 @@ -1,9 +1,7 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 +# Copyright 1999-2019 Gentoo Authors
30 # Distributed under the terms of the GNU General Public License v2
31
32 -EAPI=5
33 -
34 -# ebuild generated by hackport 0.4.4.9999
35 +EAPI=6
36
37 CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
38 inherit haskell-cabal
39 @@ -27,6 +25,13 @@ DEPEND="${RDEPEND}
40 "
41
42 src_prepare() {
43 + # Hackage metadata revision -r1.
44 cabal_chdeps \
45 'random >= 1.0 && < 1.1' 'random >= 1.0 && < 1.2'
46 +
47 + # Hackage metadata revision -r2.
48 + cabal_chdeps \
49 + 'containers >= 0.2 && < 0.6' 'containers >= 0.2 && < 0.7'
50 +
51 + default
52 }