pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/hs-th-lift-instances devel/hs-th-lift-instances:...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/691ef0cb6579
branches:  trunk
changeset: 373669:691ef0cb6579
user:      pho <pho%pkgsrc.org@localhost>
date:      Sat Feb 12 08:02:30 2022 +0000

description:
devel/hs-th-lift-instances: import hs-th-lift-instances-0.1.19

Most data types in the haskell platform do not have Lift instances. This
package provides orphan instances for containers, text, bytestring and
vector. It also provides compat instances for older versions of
template-haskell.

diffstat:

 devel/hs-th-lift-instances/DESCR         |   4 ++++
 devel/hs-th-lift-instances/Makefile      |  13 +++++++++++++
 devel/hs-th-lift-instances/PLIST         |  19 +++++++++++++++++++
 devel/hs-th-lift-instances/buildlink3.mk |  16 ++++++++++++++++
 devel/hs-th-lift-instances/distinfo      |   5 +++++
 5 files changed, 57 insertions(+), 0 deletions(-)

diffs (77 lines):

diff -r d1818243c404 -r 691ef0cb6579 devel/hs-th-lift-instances/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-th-lift-instances/DESCR  Sat Feb 12 08:02:30 2022 +0000
@@ -0,0 +1,4 @@
+Most data types in the haskell platform do not have Lift instances. This
+package provides orphan instances for containers, text, bytestring and
+vector. It also provides compat instances for older versions of
+template-haskell.
diff -r d1818243c404 -r 691ef0cb6579 devel/hs-th-lift-instances/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-th-lift-instances/Makefile       Sat Feb 12 08:02:30 2022 +0000
@@ -0,0 +1,13 @@
+# $NetBSD: Makefile,v 1.1 2022/02/12 08:02:30 pho Exp $
+
+DISTNAME=      th-lift-instances-0.1.19
+CATEGORIES=    devel
+
+MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
+COMMENT=       Lift instances for template-haskell for common data types
+LICENSE=       modified-bsd
+
+.include "../../devel/hs-th-lift/buildlink3.mk"
+.include "../../devel/hs-vector/buildlink3.mk"
+.include "../../mk/haskell.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r d1818243c404 -r 691ef0cb6579 devel/hs-th-lift-instances/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-th-lift-instances/PLIST  Sat Feb 12 08:02:30 2022 +0000
@@ -0,0 +1,19 @@
+@comment $NetBSD: PLIST,v 1.1 2022/02/12 08:02:30 pho Exp $
+lib/th-lift-instances-${PKGVERSION}/${HS_VERSION}/package-description
+lib/th-lift-instances-${PKGVERSION}/${HS_VERSION}/package-id
+lib/${HS_PLATFORM}/libHS${HS_PKGID}-${HS_VER}.so
+lib/${HS_PLATFORM}/${HS_PKGID}/Instances/TH/Lift.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Instances/TH/Lift.hi
+lib/${HS_PLATFORM}/${HS_PKGID}/Instances/TH/Lift.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}/th-lift-instances-${PKGVERSION}/LICENSE
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/Instances-TH-Lift.html
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/doc-index.html
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/haddock-bundle.min.js
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/index.html
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/linuwial.css
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/meta.json
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/quick-jump.css
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/synopsis.png
+share/doc/${HS_PLATFORM}/th-lift-instances-${PKGVERSION}/html/th-lift-instances.haddock
diff -r d1818243c404 -r 691ef0cb6579 devel/hs-th-lift-instances/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-th-lift-instances/buildlink3.mk  Sat Feb 12 08:02:30 2022 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: buildlink3.mk,v 1.1 2022/02/12 08:02:30 pho Exp $
+
+BUILDLINK_TREE+=       hs-th-lift-instances
+
+.if !defined(HS_TH_LIFT_INSTANCES_BUILDLINK3_MK)
+HS_TH_LIFT_INSTANCES_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.hs-th-lift-instances+=   hs-th-lift-instances>=0.1.19
+BUILDLINK_ABI_DEPENDS.hs-th-lift-instances+=   hs-th-lift-instances>=0.1.19
+BUILDLINK_PKGSRCDIR.hs-th-lift-instances?=     ../../devel/hs-th-lift-instances
+
+.include "../../devel/hs-th-lift/buildlink3.mk"
+.include "../../devel/hs-vector/buildlink3.mk"
+.endif # HS_TH_LIFT_INSTANCES_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -hs-th-lift-instances
diff -r d1818243c404 -r 691ef0cb6579 devel/hs-th-lift-instances/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-th-lift-instances/distinfo       Sat Feb 12 08:02:30 2022 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2022/02/12 08:02:30 pho Exp $
+
+BLAKE2s (th-lift-instances-0.1.19.tar.gz) = d6c76b8e276a3d4e87667551655f0f02f566477c79ed3916a3aa29a416ae7e09
+SHA512 (th-lift-instances-0.1.19.tar.gz) = d8a38531a9a61dce426c43807e3764abbe22102e8886d9d23e76d27735bace672e10472b77b27dbe2fbb74bf6e32a5d528d690a608a81d8dce9963721fad6349
+Size (th-lift-instances-0.1.19.tar.gz) = 6113 bytes



Home | Main Index | Thread Index | Old Index