diff options
author | 2012-11-18 01:16:31 +0000 | |
---|---|---|
committer | 2012-11-18 01:16:31 +0000 | |
commit | 5827a2353d1e28055ee4c808170e29d7427d18c3 (patch) | |
tree | 17adaa2a225649b25ede3bf9e8f04ae01b77714a /dev-haskell/blaze-html | |
parent | Version bump, thanks to Dirk S. for the help with the patches in bug #437596;... (diff) | |
download | gentoo-2-5827a2353d1e28055ee4c808170e29d7427d18c3.tar.gz gentoo-2-5827a2353d1e28055ee4c808170e29d7427d18c3.tar.bz2 gentoo-2-5827a2353d1e28055ee4c808170e29d7427d18c3.zip |
Bump blaze-html to 0.5.1.0
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
Diffstat (limited to 'dev-haskell/blaze-html')
-rw-r--r-- | dev-haskell/blaze-html/ChangeLog | 7 | ||||
-rw-r--r-- | dev-haskell/blaze-html/blaze-html-0.5.1.0.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-haskell/blaze-html/ChangeLog b/dev-haskell/blaze-html/ChangeLog index f1a9faa05f96..1a54805e491b 100644 --- a/dev-haskell/blaze-html/ChangeLog +++ b/dev-haskell/blaze-html/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-haskell/blaze-html # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/ChangeLog,v 1.4 2012/09/12 15:44:14 qnikst Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/ChangeLog,v 1.5 2012/11/18 01:16:31 gienah Exp $ + +*blaze-html-0.5.1.0 (18 Nov 2012) + + 18 Nov 2012; Mark Wright <gienah@gentoo.org> +blaze-html-0.5.1.0.ebuild: + Bump blaze-html to 0.5.1.0 12 Sep 2012; Alexander Vershilov <qnikst@gentoo.org> blaze-html-0.4.3.1.ebuild, blaze-html-0.4.3.3.ebuild, diff --git a/dev-haskell/blaze-html/blaze-html-0.5.1.0.ebuild b/dev-haskell/blaze-html/blaze-html-0.5.1.0.ebuild new file mode 100644 index 000000000000..616fc3ad05fe --- /dev/null +++ b/dev-haskell/blaze-html/blaze-html-0.5.1.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-html/blaze-html-0.5.1.0.ebuild,v 1.1 2012/11/18 01:16:31 gienah Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A blazingly fast HTML combinator library for Haskell" +HOMEPAGE="http://jaspervdj.be/blaze" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/blaze-builder-0.2:=[profile?] + <dev-haskell/blaze-builder-0.4:=[profile?] + >=dev-haskell/blaze-markup-0.5.1:=[profile?] + <dev-haskell/blaze-markup-0.6:=[profile?] + >=dev-haskell/text-0.10:=[profile?] + <dev-haskell/text-0.12:=[profile?] + >=dev-lang/ghc-6.10.4:=" +DEPEND="${RDEPEND} + test? ( =dev-haskell/hunit-1.2* + >=dev-haskell/quickcheck-2.4 + <dev-haskell/quickcheck-2.6 + >=dev-haskell/test-framework-0.4 + <dev-haskell/test-framework-0.7 + =dev-haskell/test-framework-hunit-0.2* + =dev-haskell/test-framework-quickcheck2-0.2* + ) + >=dev-haskell/cabal-1.8" + +src_prepare() { + sed -e 's@containers >= 0.3 && < 0.5@containers >= 0.3 \&\& < 0.6@' \ + -e 's@QuickCheck >= 2.4 && < 2.5@QuickCheck >= 2.4 \&\& < 2.6@' \ + -i "${S}/${PN}.cabal" || die "Could not loosen dependencies" +} |