1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Efficient hashing-based container types. The containers have been

optimized for performance critical use, both in terms of large data
quantities and high speed.

The declared cost of each operation is either worst-case or amortized,
but remains valid even if structures are shared.

WWW:	http://github.com/tibbe/unordered-containers/

Obtained from:	FreeBSD Haskell
This commit is contained in:
Gabor Pali 2011-08-14 17:52:20 +00:00
parent 08158a859e
commit 0fc9284caf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=279715
5 changed files with 33 additions and 0 deletions

View File

@ -654,6 +654,7 @@
SUBDIR += hs-unamb
SUBDIR += hs-uniplate
SUBDIR += hs-unix-compat
SUBDIR += hs-unordered-containers
SUBDIR += hs-utf8-string
SUBDIR += hs-utility-ht
SUBDIR += hs-uuagc

View File

@ -0,0 +1,21 @@
# New ports collection makefile for: hs-unordered-containers
# Date created: July 30, 2011
# Whom: haskell@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= unordered-containers
PORTVERSION= 0.1.4.2
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= Efficient hashing-based container types
LICENSE= BSD
CABAL_SETUP= Setup.hs
USE_CABAL= deepseq>=1.1.0 hashable>=1.0.1.1
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (cabal/unordered-containers-0.1.4.2.tar.gz) = 46c188f38205adcf38e64d2c6f7c607211466201131d2b6d6cc5a767bf40dc59
SIZE (cabal/unordered-containers-0.1.4.2.tar.gz) = 16792

View File

@ -0,0 +1,8 @@
Efficient hashing-based container types. The containers have been
optimized for performance critical use, both in terms of large data
quantities and high speed.
The declared cost of each operation is either worst-case or amortized,
but remains valid even if structures are shared.
WWW: http://github.com/tibbe/unordered-containers/

View File

@ -188,6 +188,7 @@ unamb_port= devel/hs-unamb
uniplate_port= devel/hs-uniplate
unix-compat_port= devel/hs-unix-compat
unlambda_port= lang/hs-unlambda # executable
unordered-containers_port= devel/hs-unordered-containers
url_port= www/hs-url
utf8-string_port= devel/hs-utf8-string
utility-ht_port= devel/hs-utility-ht