f55484ead5
## later 1.0.0 * Added private event loops: these are event loops that can be run independently from the global event loop. These are useful when you have code that schedules callbacks with `later()`, and you want to call `run_now()` block and wait for those callbacks to execute before continuing. Without private event loops, if you call `run_now()` to wait until a particular callback has finished, you might inadvertantly run other callbacks that were scheduled by other code. With private event loops, you can create a private loop, schedule a callback on it, then call `run_now()` on that loop until it executes, all without interfering with the global loop. ([#84](https://github.com/r-lib/later/pull/84))
19 lines
513 B
Makefile
19 lines
513 B
Makefile
# $NetBSD: Makefile,v 1.3 2019/12/31 12:08:15 mef Exp $
|
|
|
|
R_PKGNAME= later
|
|
R_PKGVER= 1.0.0
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Utilities for delaying function execution
|
|
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3
|
|
|
|
DEPENDS+= R-rlang>=0.4.0:../../devel/R-rlang
|
|
|
|
USE_LANGUAGES= c c++
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../devel/R-Rcpp/buildlink3.mk"
|
|
.include "../../devel/R-BH/buildlink3.mk"
|
|
.include "../../devel/boost-headers/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|