Gentoo Archives: gentoo-commits

From: "Lennart Kolmodin (kolmodin)" <kolmodin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-haskell/missingh: missingh-1.1.0.3.ebuild ChangeLog
Date: Wed, 30 Jun 2010 17:57:48
Message-Id: 20100630175745.5A7F92C621@corvid.gentoo.org
1 kolmodin 10/06/30 17:57:45
2
3 Modified: ChangeLog
4 Added: missingh-1.1.0.3.ebuild
5 Log:
6 Bump dev-haskell/missingh.
7 (Portage version: 2.1.8.3/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 dev-haskell/missingh/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/missingh/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/missingh/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/missingh/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-haskell/missingh/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 16 Jun 2010 23:13:15 -0000 1.13
23 +++ ChangeLog 30 Jun 2010 17:57:45 -0000 1.14
24 @@ -1,6 +1,10 @@
25 # ChangeLog for dev-haskell/missingh
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/missingh/ChangeLog,v 1.13 2010/06/16 23:13:15 kolmodin Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/missingh/ChangeLog,v 1.14 2010/06/30 17:57:45 kolmodin Exp $
29 +
30 + 30 Jun 2010; Lennart Kolmodin <kolmodin@g.o>
31 + +missingh-1.1.0.3.ebuild:
32 + Bump version. Builds with newer versions of HUnit. See bug #326259.
33
34 16 Jun 2010; Lennart Kolmodin <kolmodin@g.o>
35 missingh-0.18.6.ebuild:
36
37
38
39 1.1 dev-haskell/missingh/missingh-1.1.0.3.ebuild
40
41 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/missingh/missingh-1.1.0.3.ebuild?rev=1.1&view=markup
42 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/missingh/missingh-1.1.0.3.ebuild?rev=1.1&content-type=text/plain
43
44 Index: missingh-1.1.0.3.ebuild
45 ===================================================================
46 # Copyright 1999-2010 Gentoo Foundation
47 # Distributed under the terms of the GNU General Public License v2
48 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/missingh/missingh-1.1.0.3.ebuild,v 1.1 2010/06/30 17:57:45 kolmodin Exp $
49
50 CABAL_FEATURES="bin lib profile haddock hscolour"
51 inherit haskell-cabal
52
53 MY_PN="MissingH"
54 MY_P="${MY_PN}-${PV}"
55
56 DESCRIPTION="Large utility library"
57 HOMEPAGE="http://software.complete.org/missingh"
58 SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~sparc ~x86"
63 IUSE=""
64
65 # testpack dependency is a workaround for cabal-1.8 bug, which pulls
66 # depends even for 'Buildable: false' target
67 RDEPEND=">=dev-lang/ghc-6.10
68 dev-haskell/hslogger
69 dev-haskell/hunit
70 dev-haskell/mtl
71 dev-haskell/network
72 dev-haskell/parsec
73 dev-haskell/regex-compat"
74
75 DEPEND=">=dev-haskell/cabal-1.2.3
76 virtual/libiconv
77 ${RDEPEND}"
78
79 # libiconv is needed for the trick below to make it compile with ghc-6.12
80
81 S="${WORKDIR}/${MY_P}"
82
83 src_unpack() {
84 unpack $A
85 cd "${S}"
86
87 # (non-ASCII non-UTF-8 source breaks hscolour)
88 cd src/System/Time
89 mv ParseDate.hs ParseDate.hs.ISO-8859-1
90 iconv -f ISO-8859-1 -t UTF-8 -c ParseDate.hs.ISO-8859-1 > ParseDate.hs || die "unable to recode ParseDate.hs to UTF-8"
91 }