summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
Diffstat (limited to 'devel')
-rw-r--r--devel/hs-unordered-containers/DESCR3
-rw-r--r--devel/hs-unordered-containers/Makefile12
-rw-r--r--devel/hs-unordered-containers/PLIST30
-rw-r--r--devel/hs-unordered-containers/buildlink3.mk14
-rw-r--r--devel/hs-unordered-containers/distinfo5
5 files changed, 64 insertions, 0 deletions
diff --git a/devel/hs-unordered-containers/DESCR b/devel/hs-unordered-containers/DESCR
new file mode 100644
index 00000000000..d8fb7e1c5a6
--- /dev/null
+++ b/devel/hs-unordered-containers/DESCR
@@ -0,0 +1,3 @@
+Efficient hashing-based container types. The containers have been
+optimized for performance critical use, both in terms of large data
+quantities and high speed.
diff --git a/devel/hs-unordered-containers/Makefile b/devel/hs-unordered-containers/Makefile
new file mode 100644
index 00000000000..69b2300c151
--- /dev/null
+++ b/devel/hs-unordered-containers/Makefile
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile,v 1.1 2014/05/27 21:33:50 szptvlfn Exp $
+
+DISTNAME= unordered-containers-0.2.4.0
+CATEGORIES= devel
+
+MAINTAINER= pho@cielonegro.org
+COMMENT= Efficient hashing-based container types
+LICENSE= modified-bsd
+
+.include "../../mk/haskell.mk"
+.include "../../devel/hs-hashable/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/hs-unordered-containers/PLIST b/devel/hs-unordered-containers/PLIST
new file mode 100644
index 00000000000..130ce901d45
--- /dev/null
+++ b/devel/hs-unordered-containers/PLIST
@@ -0,0 +1,30 @@
+@comment $NetBSD: PLIST,v 1.1 2014/05/27 21:33:50 szptvlfn Exp $
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/Array.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/Base.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/Lazy.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/PopCount.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/Strict.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/Unsafe.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashMap/UnsafeShift.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/Data/HashSet.hi
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/HSunordered-containers-${PKGVERSION}.o
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/libHSunordered-containers-${PKGVERSION}.a
+lib/unordered-containers-${PKGVERSION}/${HASKELL_VERSION}/package-description
+share/doc/unordered-containers-${PKGVERSION}/LICENSE
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/Data-HashMap-Lazy.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/Data-HashMap-Strict.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/Data-HashSet.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/doc-index.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/frames.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/haddock-util.js
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/hslogo-16.png
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/index-frames.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/index.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/mini_Data-HashMap-Lazy.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/mini_Data-HashMap-Strict.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/mini_Data-HashSet.html
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/minus.gif
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/ocean.css
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/plus.gif
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/synopsis.png
+${PLIST.doc}share/doc/unordered-containers-${PKGVERSION}/html/unordered-containers.haddock
diff --git a/devel/hs-unordered-containers/buildlink3.mk b/devel/hs-unordered-containers/buildlink3.mk
new file mode 100644
index 00000000000..dd05a1b9e73
--- /dev/null
+++ b/devel/hs-unordered-containers/buildlink3.mk
@@ -0,0 +1,14 @@
+# $NetBSD: buildlink3.mk,v 1.1 2014/05/27 21:33:50 szptvlfn Exp $
+
+BUILDLINK_TREE+= hs-unordered-containers
+
+.if !defined(HS_UNORDERED_CONTAINERS_BUILDLINK3_MK)
+HS_UNORDERED_CONTAINERS_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.hs-unordered-containers+= hs-unordered-containers>=0.2.4
+BUILDLINK_PKGSRCDIR.hs-unordered-containers?= ../../devel/hs-unordered-containers
+
+.include "../../devel/hs-hashable/buildlink3.mk"
+.endif # HS_UNORDERED_CONTAINERS_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -hs-unordered-containers
diff --git a/devel/hs-unordered-containers/distinfo b/devel/hs-unordered-containers/distinfo
new file mode 100644
index 00000000000..84deda61270
--- /dev/null
+++ b/devel/hs-unordered-containers/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2014/05/27 21:33:50 szptvlfn Exp $
+
+SHA1 (unordered-containers-0.2.4.0.tar.gz) = 28936e52cc1d6fea1622ec5721f3b79bb1a11548
+RMD160 (unordered-containers-0.2.4.0.tar.gz) = 0d62b6b8f95e65890e07934413cd1377ed1e85e5
+Size (unordered-containers-0.2.4.0.tar.gz) = 25638 bytes