This package provides a couple of different implementations of mutable hash tables
in the ST monad, as well as a type class abstracting their common operations, and a set of wrappers to use the hash tables in the IO monad. WWW: http://github.com/gregorycollins/hashtables Obtained from: FreeBSD Haskell
This commit is contained in:
parent
c6b765c9c9
commit
3cc2d2496a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=291110
4 changed files with 29 additions and 0 deletions
21
devel/hs-hashtables/Makefile
Normal file
21
devel/hs-hashtables/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
# New ports collection makefile for: hs-hashtables
|
||||
# Date created: December 2, 2011
|
||||
# Whom: haskell@FreeBSD.org
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= hashtables
|
||||
PORTVERSION= 1.0.1.2
|
||||
CATEGORIES= devel haskell
|
||||
|
||||
MAINTAINER= haskell@FreeBSD.org
|
||||
COMMENT= Mutable hash tables in the ST monad
|
||||
|
||||
LICENSE= BSD
|
||||
|
||||
CABAL_SETUP= Setup.hs
|
||||
USE_CABAL= hashable>=1.1 primitive vector>=0.7
|
||||
|
||||
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
||||
.include <bsd.port.mk>
|
2
devel/hs-hashtables/distinfo
Normal file
2
devel/hs-hashtables/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (cabal/hashtables-1.0.1.2.tar.gz) = 87efc3b6906da800f9d63f061e52005a0079da06dc987deacb7043ca3b8f9b26
|
||||
SIZE (cabal/hashtables-1.0.1.2.tar.gz) = 36210
|
5
devel/hs-hashtables/pkg-descr
Normal file
5
devel/hs-hashtables/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This package provides a couple of different implementations of mutable hash tables
|
||||
in the ST monad, as well as a type class abstracting their common operations, and
|
||||
a set of wrappers to use the hash tables in the IO monad.
|
||||
|
||||
WWW: http://github.com/gregorycollins/hashtables
|
|
@ -91,6 +91,7 @@ haddock_port= devel/hs-haddock # executable
|
|||
happy_port= devel/hs-happy # executable
|
||||
hashable_port= devel/hs-hashable
|
||||
hashed-storage_port= devel/hs-hashed-storage
|
||||
hashtables_port= devel/hs-hashtables
|
||||
haskeline_port= devel/hs-haskeline
|
||||
haskell-src_port= devel/hs-haskell-src
|
||||
haskell-src-exts_port= devel/hs-haskell-src-exts
|
||||
|
|
Loading…
Reference in a new issue