diff options
author | 2012-03-10 17:06:00 +0000 | |
---|---|---|
committer | 2012-03-10 17:06:00 +0000 | |
commit | a6a952b02cea2590f45aaa4dd407bcba83665c96 (patch) | |
tree | ba203a2bbfc64857b7083bd3a507956aab0ea63a /dev-haskell/blaze-builder | |
parent | Marking kadu-0.11.1 ppc for bug 406015 (diff) | |
download | gentoo-2-a6a952b02cea2590f45aaa4dd407bcba83665c96.tar.gz gentoo-2-a6a952b02cea2590f45aaa4dd407bcba83665c96.tar.bz2 gentoo-2-a6a952b02cea2590f45aaa4dd407bcba83665c96.zip |
Initial version. Fast serialization library for haskell. A depend for app-text/pandoc-1.9.
(Portage version: 2.2.0_alpha90_p1/cvs/Linux x86_64)
Diffstat (limited to 'dev-haskell/blaze-builder')
-rw-r--r-- | dev-haskell/blaze-builder/ChangeLog | 11 | ||||
-rw-r--r-- | dev-haskell/blaze-builder/blaze-builder-0.3.1.0.ebuild | 24 | ||||
-rw-r--r-- | dev-haskell/blaze-builder/metadata.xml | 19 |
3 files changed, 54 insertions, 0 deletions
diff --git a/dev-haskell/blaze-builder/ChangeLog b/dev-haskell/blaze-builder/ChangeLog new file mode 100644 index 000000000000..a6b5bfbaa0ad --- /dev/null +++ b/dev-haskell/blaze-builder/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for dev-haskell/blaze-builder +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-builder/ChangeLog,v 1.1 2012/03/10 17:06:00 slyfox Exp $ + +*blaze-builder-0.3.1.0 (10 Mar 2012) + + 10 Mar 2012; Sergei Trofimovich <slyfox@gentoo.org> + +blaze-builder-0.3.1.0.ebuild, +metadata.xml: + Initial version. Fast serialization library for haskell. A depend for app- + text/pandoc-1.9. + diff --git a/dev-haskell/blaze-builder/blaze-builder-0.3.1.0.ebuild b/dev-haskell/blaze-builder/blaze-builder-0.3.1.0.ebuild new file mode 100644 index 000000000000..b8893bc44b83 --- /dev/null +++ b/dev-haskell/blaze-builder/blaze-builder-0.3.1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-builder/blaze-builder-0.3.1.0.ebuild,v 1.1 2012/03/10 17:06:00 slyfox Exp $ + +# ebuild generated by hackport 0.2.17.9999 + +EAPI=4 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Efficient buffered output." +HOMEPAGE="http://github.com/meiersi/blaze-builder" +SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/text-0.10[profile?] <dev-haskell/text-0.13[profile?] + >=dev-lang/ghc-6.10.1" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6" diff --git a/dev-haskell/blaze-builder/metadata.xml b/dev-haskell/blaze-builder/metadata.xml new file mode 100644 index 000000000000..643f8f2ca88d --- /dev/null +++ b/dev-haskell/blaze-builder/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <maintainer> + <email>haskell@gentoo.org</email> + </maintainer> + <longdescription> + This library provides an abstraction of buffered output of + byte streams and several convenience functions to exploit + it. For example, it allows to efficiently serialize + Haskell values to lazy bytestrings with a large average + chunk size. The large average chunk size allows to make + good use of cache prefetching in later processing steps + (e.g. compression) and reduces the sytem call overhead + when writing the resulting lazy bytestring to a file or + sending it over the network. + </longdescription> +</pkgmetadata> |