2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2021-05-03 21:01:21 by Masatake Daimon | Files touched by this commit (475) |
Log message:
*: Bump PKGREVISION for ghc-9.0.1
|
2021-04-23 11:55:49 by Masatake Daimon | Files touched by this commit (4) |
Log message:
Update to async-2.2.3
* Documentation fixes
|
2020-05-11 19:52:21 by Roland Illig | Files touched by this commit (190) |
Log message:
hs-*: add PLIST files
These PLIST files have been autogenerated by mk/haskell.mk using
HS_UPDATE_PLIST=yes during a bulk build. They will help to track changes
to the packages. The Haskell packages didn't have PLIST files because
their paths contained package hashes. These hashes are now determined by
mk/haskell.mk, which makes it easy to generate easy to read PLIST files.
|
2020-01-11 11:43:22 by Masatake Daimon | Files touched by this commit (2) |
Log message:
Remove dependency on devel/hs-stm
It's now part of GHC.
|
2020-01-02 18:37:50 by Masatake Daimon | Files touched by this commit (4) |
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).
|