summaryrefslogtreecommitdiff
path: root/devel/hs-storable-tuple
diff options
context:
space:
mode:
authorpho <pho@pkgsrc.org>2021-05-05 11:58:24 +0000
committerpho <pho@pkgsrc.org>2021-05-05 11:58:24 +0000
commit89fd27e654ee58157e192f2d0c5e3c6b582fd580 (patch)
treed6423675916c6901e9b45a5d1805c8ab61b1aa50 /devel/hs-storable-tuple
parente04eaebd4e4b6bc54f70d82b9f6e692db6ff4122 (diff)
downloadpkgsrc-89fd27e654ee58157e192f2d0c5e3c6b582fd580.tar.gz
Import storable-tuple-0.0.3.3
Provides a Storable instance for pair and triple which should be binary compatible with C99 and C++. The only purpose of this package is to provide a standard location for this instance so that other packages needing this instance can play nicely together.
Diffstat (limited to 'devel/hs-storable-tuple')
-rw-r--r--devel/hs-storable-tuple/DESCR4
-rw-r--r--devel/hs-storable-tuple/Makefile14
-rw-r--r--devel/hs-storable-tuple/PLIST19
-rw-r--r--devel/hs-storable-tuple/buildlink3.mk17
-rw-r--r--devel/hs-storable-tuple/distinfo6
5 files changed, 60 insertions, 0 deletions
diff --git a/devel/hs-storable-tuple/DESCR b/devel/hs-storable-tuple/DESCR
new file mode 100644
index 00000000000..9eaf0ffef2b
--- /dev/null
+++ b/devel/hs-storable-tuple/DESCR
@@ -0,0 +1,4 @@
+Provides a Storable instance for pair and triple which should be
+binary compatible with C99 and C++. The only purpose of this package
+is to provide a standard location for this instance so that other
+packages needing this instance can play nicely together.
diff --git a/devel/hs-storable-tuple/Makefile b/devel/hs-storable-tuple/Makefile
new file mode 100644
index 00000000000..48f8e5d21d0
--- /dev/null
+++ b/devel/hs-storable-tuple/Makefile
@@ -0,0 +1,14 @@
+# $NetBSD: Makefile,v 1.1 2021/05/05 11:58:24 pho Exp $
+
+DISTNAME= storable-tuple-0.0.3.3
+CATEGORIES= devel
+
+MAINTAINER= pho@cielonegro.org
+COMMENT= Storable instance for pairs and triples
+LICENSE= mit
+
+.include "../../devel/hs-base-orphans/buildlink3.mk"
+.include "../../devel/hs-storable-record/buildlink3.mk"
+.include "../../devel/hs-utility-ht/buildlink3.mk"
+.include "../../mk/haskell.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/devel/hs-storable-tuple/PLIST b/devel/hs-storable-tuple/PLIST
new file mode 100644
index 00000000000..18f3a694c90
--- /dev/null
+++ b/devel/hs-storable-tuple/PLIST
@@ -0,0 +1,19 @@
+@comment $NetBSD: PLIST,v 1.1 2021/05/05 11:58:24 pho Exp $
+lib/storable-tuple-${PKGVERSION}/${HS_VERSION}/package-description
+lib/storable-tuple-${PKGVERSION}/${HS_VERSION}/package-id
+lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Storable/Tuple.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Storable/Tuple.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Foreign/Storable/Tuple.p_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}.a
+lib/${HS_PLATFORM}/${HS_PKGID}/libHS${HS_PKGID}_p.a
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/LICENSE
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/Foreign-Storable-Tuple.html
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/doc-index.html
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/haddock-bundle.min.js
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/index.html
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/linuwial.css
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/meta.json
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/quick-jump.css
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/storable-tuple.haddock
+share/doc/${HS_PLATFORM}/storable-tuple-${PKGVERSION}/html/synopsis.png
diff --git a/devel/hs-storable-tuple/buildlink3.mk b/devel/hs-storable-tuple/buildlink3.mk
new file mode 100644
index 00000000000..c3a8771e9e6
--- /dev/null
+++ b/devel/hs-storable-tuple/buildlink3.mk
@@ -0,0 +1,17 @@
+# $NetBSD: buildlink3.mk,v 1.1 2021/05/05 11:58:24 pho Exp $
+
+BUILDLINK_TREE+= hs-storable-tuple
+
+.if !defined(HS_STORABLE_TUPLE_BUILDLINK3_MK)
+HS_STORABLE_TUPLE_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.hs-storable-tuple+= hs-storable-tuple>=0.0.3
+BUILDLINK_ABI_DEPENDS.hs-storable-tuple+= hs-storable-tuple>=0.0.3.3
+BUILDLINK_PKGSRCDIR.hs-storable-tuple?= ../../devel/hs-storable-tuple
+
+.include "../../devel/hs-base-orphans/buildlink3.mk"
+.include "../../devel/hs-storable-record/buildlink3.mk"
+.include "../../devel/hs-utility-ht/buildlink3.mk"
+.endif # HS_STORABLE_TUPLE_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -hs-storable-tuple
diff --git a/devel/hs-storable-tuple/distinfo b/devel/hs-storable-tuple/distinfo
new file mode 100644
index 00000000000..e1c1f556a6b
--- /dev/null
+++ b/devel/hs-storable-tuple/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2021/05/05 11:58:24 pho Exp $
+
+SHA1 (storable-tuple-0.0.3.3.tar.gz) = ed0e6535ae3cbaa2e0ba077ab9cdf3e1fecf5bdd
+RMD160 (storable-tuple-0.0.3.3.tar.gz) = 1aadcffb4cc6ac8a5881873df4bb3da24003b006
+SHA512 (storable-tuple-0.0.3.3.tar.gz) = 046a809d8b6655259f3cb4de55b81d272007cf2d32f0eec3f464924f595f904030102c3fd4f3b193a01b48d2d54582a9206314a2e87cd17ecdc16a159fe73b4d
+Size (storable-tuple-0.0.3.3.tar.gz) = 2383 bytes