Skip to content

Commit

Permalink
(sysutils/R-later) Updated 1.0.0 to 1.2.0
Browse files Browse the repository at this point in the history
## later 1.2.0

* Closed #138: later is now licensed as MIT. (#139)

* Closed #140: Previously, the event loop stopped running if the R
  process was forked. (#141)

* Closed #143: Packages which link to later no longer need to take a
  direct dependency on Rcpp, because `later.h` no longer includes
  `Rcpp.h`. (#144)

* Removed dependency on the BH package. C++11 is now required. (#147)

## later 1.1.0.1

* Private event loops are now automatically run by their parent. That
  is, whenever an event loop is run, its children event loops are
  automatically run. The `create_loop()` function has a new parameter
  `parent`, which defaults to the current loop. The auto-running
  behavior can be disabled by using `create_loop(parent=NULL)`. (#119)

* Fixed #73, #109: Previously, later did not build on some platforms,
  notably ARM, because the `-latomic` linker was needed on those
  platforms. A configure script now detects when `-latomic` is
  needed. (#114)

* Previously, `execLaterNative` was initialized when the package was
  loaded, but not `execLaterNative2`, resulting in a warning message
  in some cases. (#116)
  • Loading branch information
mef committed Jun 5, 2021
1 parent 5f58b16 commit 02bca27
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions sysutils/R-later/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.3 2019/12/31 12:08:15 mef Exp $
# $NetBSD: Makefile,v 1.4 2021/06/05 08:37:14 mef Exp $

R_PKGNAME= later
R_PKGVER= 1.0.0
R_PKGVER= 1.2.0
CATEGORIES= sysutils

MAINTAINER= pkgsrc-users@NetBSD.org
Expand All @@ -10,6 +10,10 @@ LICENSE= gnu-gpl-v2 OR gnu-gpl-v3

DEPENDS+= R-rlang>=0.4.0:../../devel/R-rlang

TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat

USE_LANGUAGES= c c++

.include "../../math/R/Makefile.extension"
Expand Down
10 changes: 5 additions & 5 deletions sysutils/R-later/distinfo
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.2 2019/12/31 12:08:15 mef Exp $
$NetBSD: distinfo,v 1.3 2021/06/05 08:37:14 mef Exp $

SHA1 (R/later_1.0.0.tar.gz) = 45f36af207886b717d433b75a63a55a4ad008c91
RMD160 (R/later_1.0.0.tar.gz) = b65412221208a1b520def238dd0ae3914258f55b
SHA512 (R/later_1.0.0.tar.gz) = 44f2575cc51511e81880e0903923e9dbebc4cc93a37becb06637371bd6ef3780619b9c29a5e5c4141ce314b985092d32fba240fa619a323529f265412bb73937
Size (R/later_1.0.0.tar.gz) = 56563 bytes
SHA1 (R/later_1.2.0.tar.gz) = cea59700fe6fdc1128fdde1076bec6d65d950dc7
RMD160 (R/later_1.2.0.tar.gz) = c946e0e2c39277b28dbf235528d9ac076f7a7ef7
SHA512 (R/later_1.2.0.tar.gz) = 4b43895f1a5dee22ebfd937c50a9b84891119fc1d2edefa54c85b9e8e6dc8fc23a83b31b5b1a3b9254b0ba762eb5a24d15f6644e3cbd9ce74cab0759ea680fb8
Size (R/later_1.2.0.tar.gz) = 64104 bytes

0 comments on commit 02bca27

Please sign in to comment.