Gentoo Archives: gentoo-commits

From: "Mark Wright (gienah)" <gienah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/blaze-html: blaze-html-0.5.0.0.ebuild ChangeLog
Date: Sat, 02 Jun 2012 03:21:41
Message-Id: 20120602032129.F313C2004B@flycatcher.gentoo.org
1 gienah 12/06/02 03:21:29
2
3 Modified: ChangeLog
4 Added: blaze-html-0.5.0.0.ebuild
5 Log:
6 Bump blaze-html to 0.5.0.0
7
8 (Portage version: 2.1.10.63/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.3 dev-haskell/blaze-html/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/blaze-html/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/blaze-html/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/blaze-html/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 7 Apr 2012 05:16:49 -0000 1.2
24 +++ ChangeLog 2 Jun 2012 03:21:29 -0000 1.3
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-haskell/blaze-html
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/ChangeLog,v 1.2 2012/04/07 05:16:49 gienah Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/ChangeLog,v 1.3 2012/06/02 03:21:29 gienah Exp $
30 +
31 +*blaze-html-0.5.0.0 (02 Jun 2012)
32 +
33 + 02 Jun 2012; Mark Wright <gienah@g.o> +blaze-html-0.5.0.0.ebuild:
34 + Bump blaze-html to 0.5.0.0
35
36 *blaze-html-0.4.3.3 (07 Apr 2012)
37
38
39
40
41 1.1 dev-haskell/blaze-html/blaze-html-0.5.0.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/blaze-html/blaze-html-0.5.0.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/blaze-html/blaze-html-0.5.0.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: blaze-html-0.5.0.0.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/blaze-html-0.5.0.0.ebuild,v 1.1 2012/06/02 03:21:29 gienah Exp $
51
52 EAPI=4
53
54 CABAL_FEATURES="lib profile haddock hoogle hscolour"
55 inherit haskell-cabal
56
57 DESCRIPTION="A blazingly fast HTML combinator library for Haskell"
58 HOMEPAGE="http://jaspervdj.be/blaze"
59 SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="test"
65
66 RDEPEND=">=dev-haskell/blaze-builder-0.2[profile?]
67 <dev-haskell/blaze-builder-0.4[profile?]
68 >=dev-haskell/blaze-markup-0.5.1[profile?]
69 <dev-haskell/blaze-markup-0.6[profile?]
70 >=dev-haskell/text-0.10[profile?]
71 <dev-haskell/text-0.12[profile?]
72 >=dev-lang/ghc-6.10.1"
73 DEPEND="${RDEPEND}
74 >=dev-haskell/cabal-1.8
75 test? (
76 =dev-haskell/hunit-1.2*
77 =dev-haskell/quickcheck-2.4*
78 >=dev-haskell/test-framework-0.4 <dev-haskell/test-framework-0.7
79 =dev-haskell/test-framework-hunit-0.2*
80 =dev-haskell/test-framework-quickcheck2-0.2*
81 )"
82
83 src_prepare() {
84 sed -e 's@bytestring >= 0.9 && < 0.10@bytestring >= 0.9 \&\& < 0.11@g' \
85 -e 's@containers >= 0.3 && < 0.5@containers >= 0.3 \&\& < 0.6@' \
86 -i "${S}/${PN}.cabal" || die "Could not loosen dependencies"
87 }
88
89 src_configure() {
90 cabal_src_configure $(use test && use_enable test tests) #395351
91 }