diff options
author | Alexander Vershilov <qnikst@gentoo.org> | 2013-08-25 06:45:49 +0000 |
---|---|---|
committer | Alexander Vershilov <qnikst@gentoo.org> | 2013-08-25 06:45:49 +0000 |
commit | b7a46111a1dec9407aef993938cc55d3c2e8ad4c (patch) | |
tree | 5c5da4d44b73e4a7843e1f8ec9eb199293abe9bd | |
parent | Bump (diff) | |
download | gentoo-2-b7a46111a1dec9407aef993938cc55d3c2e8ad4c.tar.gz gentoo-2-b7a46111a1dec9407aef993938cc55d3c2e8ad4c.tar.bz2 gentoo-2-b7a46111a1dec9407aef993938cc55d3c2e8ad4c.zip |
monad-par: 0.3.4.3
(Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key 0xEAD50D64D8D3571A!)
-rw-r--r-- | dev-haskell/monad-par/ChangeLog | 9 | ||||
-rw-r--r-- | dev-haskell/monad-par/Manifest | 3 | ||||
-rw-r--r-- | dev-haskell/monad-par/metadata.xml | 23 | ||||
-rw-r--r-- | dev-haskell/monad-par/monad-par-0.3.4.3.ebuild | 38 |
4 files changed, 73 insertions, 0 deletions
diff --git a/dev-haskell/monad-par/ChangeLog b/dev-haskell/monad-par/ChangeLog new file mode 100644 index 000000000000..a289febfd409 --- /dev/null +++ b/dev-haskell/monad-par/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-haskell/monad-par +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/monad-par/ChangeLog,v 1.1 2013/08/25 06:45:49 qnikst Exp $ + +*monad-par-0.3.4.3 (25 Aug 2013) + + 25 Aug 2013; Alexander Vershilov <qnikst@gentoo.org> +metadata.xml, + +monad-par-0.3.4.3.ebuild: + monad-par: 0.3.4.3 diff --git a/dev-haskell/monad-par/Manifest b/dev-haskell/monad-par/Manifest new file mode 100644 index 000000000000..474c7ed45632 --- /dev/null +++ b/dev-haskell/monad-par/Manifest @@ -0,0 +1,3 @@ +DIST monad-par-0.3.4.3.tar.gz 29053 SHA256 c6398d94b01aafe7664dddbd58dd8f9ee887fb273e3d23628d78569109d1c1f9 SHA512 2f7ef3239ed548f2d20595d4cd8b017d77a873d8d06ac78fdd23b58cbdc971a271893ae0c74ac052abece1b86361a29b33a3db80d66c40e0e789ec6c203621d1 WHIRLPOOL b990797c6c607699f7227d6113e92af7b12b4911350c1d83a473a5f17faea42dfab34d459069dbe9b6c7c89040aea8c92d95ffb5f5f7592a29df704e30b94508 +EBUILD monad-par-0.3.4.3.ebuild 1094 SHA256 3ad5efd0cd7cd1468c1bab8d5ba3546ceb370ef8387d64a7f347f9fd56ab6883 SHA512 452f01826951f822d12778bf7e05af36e22b9967c191b859e73055312bf025987f16e7897f91538d6eb1b0b652e1cfed895112dd9a8ebad28bdd30a0927f1369 WHIRLPOOL 314d77774caadad44a2caa8b2d97ed191f15f9e8950dfb03c96b531a5f7efaa815becb03374c66ab22712fc6c23b93f4e209c4d4ab9e48f55a57b2c3c35b27eb +MISC metadata.xml 883 SHA256 4fad71ef5bf7ca94376cf186d8c1c5eda966ad2a9d9bdbac9b9f224139ac4936 SHA512 510fcfea3abb8f10fd709b3378fc8b3e893daea9c16077e0f764930d5dfbc621283eefd1ec02035cd0e95ffd97766e67e2be86da30daef4bc516efd2a9ae9fbc WHIRLPOOL b592de2eb4ea2eece7e57fba3ed5c79d323f796cf2f9d703a3bedc74bdc80be039aa377a0099a8ef188e2f0d5122fb18360682b1d3511bc9915785a656103065 diff --git a/dev-haskell/monad-par/metadata.xml b/dev-haskell/monad-par/metadata.xml new file mode 100644 index 000000000000..87bfb9eac5be --- /dev/null +++ b/dev-haskell/monad-par/metadata.xml @@ -0,0 +1,23 @@ +<?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 offers an alternative parallel programming + API to that provided by the @parallel@ package. + The 'Par' monad allows the simple description of + parallel computations, and can be used to add + parallelism to pure Haskell code. The basic API + is straightforward: the monad supports forking + and simple communication in terms of 'IVar's. + The library comes with an efficient work-stealing + implementation, but the internals are also + exposed so that you can build your own scheduler + if necessary. + Examples of use can be found in the examples/ directory + of the source package. + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/monad-par/monad-par-0.3.4.3.ebuild b/dev-haskell/monad-par/monad-par-0.3.4.3.ebuild new file mode 100644 index 000000000000..f56ea82b5b7b --- /dev/null +++ b/dev-haskell/monad-par/monad-par-0.3.4.3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/monad-par/monad-par-0.3.4.3.ebuild,v 1.1 2013/08/25 06:45:49 qnikst Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.2.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="A library for parallel programming based on a monad" +HOMEPAGE="https://github.com/simonmar/monad-par" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/abstract-deque-0.1.4:=[profile?] + dev-haskell/abstract-par:=[profile?] + >=dev-haskell/deepseq-1.1:=[profile?] + >=dev-haskell/monad-par-extras-0.3:=[profile?] + >=dev-haskell/mtl-2.0.1.0:=[profile?] + >=dev-haskell/mwc-random-0.11:=[profile?] + >=dev-haskell/parallel-3.1:=[profile?] + >=dev-lang/ghc-6.12.1:= + " +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( dev-haskell/hunit + dev-haskell/quickcheck + dev-haskell/test-framework + dev-haskell/test-framework-hunit + >=dev-haskell/test-framework-quickcheck2-0.3 + dev-haskell/test-framework-th + )" |