diff options
author | pgj <pgj@FreeBSD.org> | 2011-08-14 19:32:23 +0800 |
---|---|---|
committer | pgj <pgj@FreeBSD.org> | 2011-08-14 19:32:23 +0800 |
commit | ac3a1790529229f7238fdd7e03f295d9f2bac1e6 (patch) | |
tree | c0185651286aa670876631e83c2272619d4798dd | |
parent | e3900e8652da94ebd03459e792d7785fbada70c9 (diff) | |
download | freebsd-ports-gnome-ac3a1790529229f7238fdd7e03f295d9f2bac1e6.tar.gz freebsd-ports-gnome-ac3a1790529229f7238fdd7e03f295d9f2bac1e6.tar.zst freebsd-ports-gnome-ac3a1790529229f7238fdd7e03f295d9f2bac1e6.zip |
Haskell 98 distributive functors -- dual to Traversable.
WWW: http://github.com/ekmett/distributive/
Obtained from: FreeBSD Haskell
-rw-r--r-- | lang/ghc/bsd.hackage.mk | 1 | ||||
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/hs-distributive/Makefile | 20 | ||||
-rw-r--r-- | math/hs-distributive/distinfo | 2 | ||||
-rw-r--r-- | math/hs-distributive/pkg-descr | 3 |
5 files changed, 27 insertions, 0 deletions
diff --git a/lang/ghc/bsd.hackage.mk b/lang/ghc/bsd.hackage.mk index 552c0acb2a1c..3f21d3f46352 100644 --- a/lang/ghc/bsd.hackage.mk +++ b/lang/ghc/bsd.hackage.mk @@ -58,6 +58,7 @@ deepseq_port= devel/hs-deepseq Diff_port= textproc/hs-Diff digest_port= security/hs-digest directory-tree_port= devel/hs-directory-tree +distributive_port= math/hs-distributive dlist_port= devel/hs-dlist enumerator_port= devel/hs-enumerator erf_port= math/hs-erf diff --git a/math/Makefile b/math/Makefile index 41a0f8c0c3cc..aec8e08d0c0c 100644 --- a/math/Makefile +++ b/math/Makefile @@ -127,6 +127,7 @@ SUBDIR += hs-category-extras SUBDIR += hs-comonad SUBDIR += hs-contravariant + SUBDIR += hs-distributive SUBDIR += hs-erf SUBDIR += hs-mwc-random SUBDIR += hs-probability diff --git a/math/hs-distributive/Makefile b/math/hs-distributive/Makefile new file mode 100644 index 000000000000..4b9db7ee8b13 --- /dev/null +++ b/math/hs-distributive/Makefile @@ -0,0 +1,20 @@ +# New ports collection makefile for: hs-distributive +# Date created: July 16, 2011 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= distributive +PORTVERSION= 0.2.0.1 +CATEGORIES= math haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Haskell 98 distributive functors + +LICENSE= BSD + +USE_CABAL= transformers>=0.2 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/math/hs-distributive/distinfo b/math/hs-distributive/distinfo new file mode 100644 index 000000000000..6c68eaee1e1c --- /dev/null +++ b/math/hs-distributive/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/distributive-0.2.0.1.tar.gz) = efde52baa696d498e807e66d3843803320820da40740ba60950c8c08ac0abae0 +SIZE (cabal/distributive-0.2.0.1.tar.gz) = 2446 diff --git a/math/hs-distributive/pkg-descr b/math/hs-distributive/pkg-descr new file mode 100644 index 000000000000..b881ff3d34c7 --- /dev/null +++ b/math/hs-distributive/pkg-descr @@ -0,0 +1,3 @@ +Haskell 98 distributive functors -- dual to Traversable. + +WWW: http://github.com/ekmett/distributive/
\ No newline at end of file |