Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-haskell/uuid-types/
Date: Thu, 16 Feb 2017 10:22:31
Message-Id: 1487240519.2b31a360115f388597bc606a73d32fa8642fb2dc.slyfox@gentoo
1 commit: 2b31a360115f388597bc606a73d32fa8642fb2dc
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 16 09:07:25 2017 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 16 10:21:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b31a360
7
8 dev-haskell/uuid-types: allow quickcheck-2.9
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-haskell/uuid-types/uuid-types-1.0.3.ebuild | 11 +++++++++--
13 1 file changed, 9 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-haskell/uuid-types/uuid-types-1.0.3.ebuild b/dev-haskell/uuid-types/uuid-types-1.0.3.ebuild
16 index caef74d63e..67a2fa8f07 100644
17 --- a/dev-haskell/uuid-types/uuid-types-1.0.3.ebuild
18 +++ b/dev-haskell/uuid-types/uuid-types-1.0.3.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2016 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 @@ -27,8 +27,15 @@ RDEPEND=">=dev-haskell/binary-0.4:=[profile?] <dev-haskell/binary-0.9:=[profile?
26 DEPEND="${RDEPEND}
27 >=dev-haskell/cabal-1.8
28 test? ( >=dev-haskell/hunit-1.2 <dev-haskell/hunit-1.4
29 - >=dev-haskell/quickcheck-2.4 <dev-haskell/quickcheck-2.9
30 + >=dev-haskell/quickcheck-2.4
31 >=dev-haskell/tasty-0.10 <dev-haskell/tasty-0.12
32 >=dev-haskell/tasty-hunit-0.9 <dev-haskell/tasty-hunit-0.10
33 >=dev-haskell/tasty-quickcheck-0.8 <dev-haskell/tasty-quickcheck-0.9 )
34 "
35 +
36 +src_prepare() {
37 + default
38 +
39 + cabal_chdeps \
40 + 'QuickCheck >=2.4 && < 2.9' 'QuickCheck >=2.4'
41 +}