pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/hs-async
Module Name: pkgsrc
Committed By: pho
Date: Thu Jan 2 17:37:50 UTC 2020
Added Files:
pkgsrc/devel/hs-async: DESCR Makefile buildlink3.mk distinfo
Log Message:
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).
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/hs-async/DESCR \
pkgsrc/devel/hs-async/Makefile pkgsrc/devel/hs-async/buildlink3.mk \
pkgsrc/devel/hs-async/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: pkgsrc/devel/hs-async/DESCR
diff -u /dev/null pkgsrc/devel/hs-async/DESCR:1.1
--- /dev/null Thu Jan 2 17:37:50 2020
+++ pkgsrc/devel/hs-async/DESCR Thu Jan 2 17:37:50 2020
@@ -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).
Index: pkgsrc/devel/hs-async/Makefile
diff -u /dev/null pkgsrc/devel/hs-async/Makefile:1.1
--- /dev/null Thu Jan 2 17:37:50 2020
+++ pkgsrc/devel/hs-async/Makefile Thu Jan 2 17:37:50 2020
@@ -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"
Index: pkgsrc/devel/hs-async/buildlink3.mk
diff -u /dev/null pkgsrc/devel/hs-async/buildlink3.mk:1.1
--- /dev/null Thu Jan 2 17:37:50 2020
+++ pkgsrc/devel/hs-async/buildlink3.mk Thu Jan 2 17:37:50 2020
@@ -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
Index: pkgsrc/devel/hs-async/distinfo
diff -u /dev/null pkgsrc/devel/hs-async/distinfo:1.1
--- /dev/null Thu Jan 2 17:37:50 2020
+++ pkgsrc/devel/hs-async/distinfo Thu Jan 2 17:37:50 2020
@@ -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