pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/hs-async Import async-2.2.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/7a7f4c244cf7
branches:  trunk
changeset: 420385:7a7f4c244cf7
user:      pho <pho%pkgsrc.org@localhost>
date:      Thu Jan 02 17:37:50 2020 +0000

description:
Import async-2.2.2

This package provides a higher-level interface over threads, in which
an Async a is a concurrent thread that will eventually deliver a value
of type a. The package provides ways to create Async computations,
wait for their results, and cancel them.

Using Async is safer than using threads in two ways:

    When waiting for a thread to return a result, if the thread dies
    with an exception then the caller must either re-throw the
    exception (wait) or handle it (waitCatch); the exception cannot be
    ignored.

    The API makes it possible to build a tree of threads that are
    automatically killed when their parent dies (see withAsync).

diffstat:

 devel/hs-async/DESCR         |  14 ++++++++++++++
 devel/hs-async/Makefile      |  13 +++++++++++++
 devel/hs-async/buildlink3.mk |  16 ++++++++++++++++
 devel/hs-async/distinfo      |   6 ++++++
 4 files changed, 49 insertions(+), 0 deletions(-)

diffs (65 lines):

diff -r 9ccc7d5c5a3c -r 7a7f4c244cf7 devel/hs-async/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-async/DESCR      Thu Jan 02 17:37:50 2020 +0000
@@ -0,0 +1,14 @@
+This package provides a higher-level interface over threads, in which
+an Async a is a concurrent thread that will eventually deliver a value
+of type a. The package provides ways to create Async computations,
+wait for their results, and cancel them.
+
+Using Async is safer than using threads in two ways:
+
+    When waiting for a thread to return a result, if the thread dies
+    with an exception then the caller must either re-throw the
+    exception (wait) or handle it (waitCatch); the exception cannot be
+    ignored.
+
+    The API makes it possible to build a tree of threads that are
+    automatically killed when their parent dies (see withAsync).
diff -r 9ccc7d5c5a3c -r 7a7f4c244cf7 devel/hs-async/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-async/Makefile   Thu Jan 02 17:37:50 2020 +0000
@@ -0,0 +1,13 @@
+# $NetBSD: Makefile,v 1.1 2020/01/02 17:37:50 pho Exp $
+
+DISTNAME=      async-2.2.2
+CATEGORIES=    devel
+
+MAINTAINER=    pho%cielonegro.org@localhost
+COMMENT=       Run IO operations asynchronously and wait for their results
+LICENSE=       modified-bsd
+
+.include "../../mk/haskell.mk"
+.include "../../devel/hs-hashable/buildlink3.mk"
+.include "../../devel/hs-stm/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r 9ccc7d5c5a3c -r 7a7f4c244cf7 devel/hs-async/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-async/buildlink3.mk      Thu Jan 02 17:37:50 2020 +0000
@@ -0,0 +1,16 @@
+# $NetBSD: buildlink3.mk,v 1.1 2020/01/02 17:37:50 pho Exp $
+
+BUILDLINK_TREE+=       hs-async
+
+.if !defined(HS_ASYNC_BUILDLINK3_MK)
+HS_ASYNC_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.hs-async+=       hs-async>=2.2.2
+BUILDLINK_ABI_DEPENDS.hs-async+=       hs-async>=2.2.2
+BUILDLINK_PKGSRCDIR.hs-async?= ../../devel/hs-async
+
+.include "../../devel/hs-hashable/buildlink3.mk"
+.include "../../devel/hs-stm/buildlink3.mk"
+.endif # HS_ASYNC_BUILDLINK3_MK
+
+BUILDLINK_TREE+=       -hs-async
diff -r 9ccc7d5c5a3c -r 7a7f4c244cf7 devel/hs-async/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/hs-async/distinfo   Thu Jan 02 17:37:50 2020 +0000
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1 2020/01/02 17:37:50 pho Exp $
+
+SHA1 (async-2.2.2.tar.gz) = c8299a67196e787f67c4ca1845c6e62f67c3ab35
+RMD160 (async-2.2.2.tar.gz) = 7720a66b809212545e0dc20c95b375d4240afb2d
+SHA512 (async-2.2.2.tar.gz) = 6984c74b76dc1db73363ca2e360d2be6f2e7b4de5c7de452c4df7ee996b2256790a8cecb532af6d7d675541315a16f8e4ce566c5f79e4102e4a857f057e2d811
+Size (async-2.2.2.tar.gz) = 12927 bytes



Home | Main Index | Thread Index | Old Index