1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-29 01:13:08 +00:00

This package defines the type class MonadBaseControl, a subset of

MonadBase into which generic control operations such as catch can be
lifted from IO or any other base monad.  Instances are based on monad
transformers in MonadTransControl, which includes all standard monad
transformers in the transformers library except ContT.

WWW:	https://github.com/basvandijk/monad-control/

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2012-02-17 15:48:59 +00:00
parent 2aa49ec454
commit 3387004968
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291586
5 changed files with 33 additions and 0 deletions

View File

@ -644,6 +644,7 @@
SUBDIR += hs-lazysmallcheck
SUBDIR += hs-logict
SUBDIR += hs-mmap
SUBDIR += hs-monad-control
SUBDIR += hs-monad-par
SUBDIR += hs-mtl
SUBDIR += hs-mtl-docs

View File

@ -0,0 +1,22 @@
# New ports collection makefile for: hs-monad-control
# Date created: September 24, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= monad-control
PORTVERSION= 0.3.1
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Lift control operations through monad transformers
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= base-unicode-symbols>=0.1.1 transformers>=0.2 \
transformers-base>=0.4.1
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/monad-control-0.3.1.tar.gz) = 85dc00104fd41ec2d9e48b01edc9d8b995f40affb6f5e5736fccb520edda5851
SIZE (cabal/monad-control-0.3.1.tar.gz) = 10269

View File

@ -0,0 +1,7 @@
This package defines the type class MonadBaseControl, a subset of
MonadBase into which generic control operations such as catch can be
lifted from IO or any other base monad. Instances are based on monad
transformers in MonadTransControl, which includes all standard monad
transformers in the transformers library except ContT.
WWW: https://github.com/basvandijk/monad-control/

View File

@ -139,6 +139,7 @@ MemoTrie_port= devel/hs-MemoTrie
mime_port= mail/hs-mime
MissingH_port= devel/hs-MissingH
mmap_port= devel/hs-mmap
monad-control_port= devel/hs-monad-control
monad-par_port= devel/hs-monad-par
MonadCatchIO-mtl_port= devel/hs-MonadCatchIO-mtl
MonadCatchIO-transformers_port= devel/hs-MonadCatchIO-transformers