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/haxml: ChangeLog haxml-1.13.3.ebuild
Date: Sun, 30 Dec 2007 20:27:16
Message-Id: E1J94kU-0006gg-J6@stork.gentoo.org
1 kolmodin 07/12/30 20:27:06
2
3 Modified: ChangeLog
4 Added: haxml-1.13.3.ebuild
5 Log:
6 Version bump to dev-haskell/haxml
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.28 dev-haskell/haxml/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haxml/ChangeLog?rev=1.28&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haxml/ChangeLog?rev=1.28&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haxml/ChangeLog?r1=1.27&r2=1.28
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haxml/ChangeLog,v
19 retrieving revision 1.27
20 retrieving revision 1.28
21 diff -u -r1.27 -r1.28
22 --- ChangeLog 13 Dec 2007 17:57:57 -0000 1.27
23 +++ ChangeLog 30 Dec 2007 20:27:06 -0000 1.28
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-haskell/haxml
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haxml/ChangeLog,v 1.27 2007/12/13 17:57:57 dcoutts Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haxml/ChangeLog,v 1.28 2007/12/30 20:27:06 kolmodin Exp $
29 +
30 +*haxml-1.13.3 (30 Dec 2007)
31 +
32 + 30 Dec 2007; Lennart Kolmodin <kolmodin@g.o> +haxml-1.13.3.ebuild:
33 + Version bump. Mostly fixes to the build system, which we have to patch
34 + anyway. This fixes bug #203800.
35
36 13 Dec 2007; Duncan Coutts <dcoutts@g.o> haxml-1.13.2.ebuild:
37 Fixes for compatability with cabal-1.2 and ghc-6.8.
38
39
40
41 1.1 dev-haskell/haxml/haxml-1.13.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haxml/haxml-1.13.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haxml/haxml-1.13.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: haxml-1.13.3.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/haxml/haxml-1.13.3.ebuild,v 1.1 2007/12/30 20:27:06 kolmodin Exp $
51
52 CABAL_FEATURES="lib bin profile haddock"
53 inherit haskell-cabal versionator
54
55 MY_PN="HaXml"
56 MY_P="${MY_PN}-${PV}"
57
58 DESCRIPTION="Utilities for manipulating XML documents"
59 HOMEPAGE="http://www.cs.york.ac.uk/fp/HaXml/"
60 SRC_URI="http://hackage.haskell.org/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
61
62 LICENSE="LGPL-2.1"
63 SLOT="0"
64 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65
66 IUSE=""
67
68 DEPEND=">=dev-lang/ghc-6.2"
69
70 S="${WORKDIR}/${MY_P}"
71
72 src_unpack() {
73 unpack "${A}"
74
75 # Don't warn so much, and don't compile with -O2
76 sed -i 's/GHC-Options: -Wall -O2/GHC-Options: -O/' "${S}/HaXml.cabal"
77
78 # Unless ghc 6.8, remove the new packages
79 if ! version_is_at_least "6.8" "$(ghc-version)"; then
80 sed -i -e 's/, pretty, containers//' \
81 "${S}/HaXml.cabal"
82 fi
83 }
84
85 src_install() {
86 cabal_src_install
87
88 if use doc; then
89 dohtml -r docs/*
90 dodoc docs/icfp99.dvi docs/icfp99.ps.gz
91 fi
92 }
93
94
95
96 --
97 gentoo-commits@g.o mailing list