pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/R-later



Module Name:    pkgsrc
Committed By:   mef
Date:           Tue Dec 31 12:08:15 UTC 2019

Modified Files:
        pkgsrc/sysutils/R-later: Makefile distinfo

Log Message:
(sysutils/R-later) Updated to 1.0.0

## 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))


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/R-later/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/sysutils/R-later/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/sysutils/R-later/Makefile
diff -u pkgsrc/sysutils/R-later/Makefile:1.2 pkgsrc/sysutils/R-later/Makefile:1.3
--- pkgsrc/sysutils/R-later/Makefile:1.2        Sat Sep  7 08:38:27 2019
+++ pkgsrc/sysutils/R-later/Makefile    Tue Dec 31 12:08:15 2019
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2019/09/07 08:38:27 maya Exp $
+# $NetBSD: Makefile,v 1.3 2019/12/31 12:08:15 mef Exp $
 
 R_PKGNAME=     later
-R_PKGVER=      0.8.0
+R_PKGVER=      1.0.0
 CATEGORIES=    sysutils
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/sysutils/R-later/distinfo
diff -u pkgsrc/sysutils/R-later/distinfo:1.1 pkgsrc/sysutils/R-later/distinfo:1.2
--- pkgsrc/sysutils/R-later/distinfo:1.1        Fri Aug  9 20:24:22 2019
+++ pkgsrc/sysutils/R-later/distinfo    Tue Dec 31 12:08:15 2019
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.1 2019/08/09 20:24:22 brook Exp $
+$NetBSD: distinfo,v 1.2 2019/12/31 12:08:15 mef Exp $
 
-SHA1 (R/later_0.8.0.tar.gz) = 6bbb80852efad3602fdafd45864c1cc7b3e66d8c
-RMD160 (R/later_0.8.0.tar.gz) = 6d0552562af6134677d665a71bd69c7cd38f8866
-SHA512 (R/later_0.8.0.tar.gz) = 4a5080cca1f51de5e2cd90a11946613a795acbad6d8bd694e8a658d80305f0f9a53214a4d7b4542a9d92a5389fb0249ebccecd6d84a17116f71a48f049aa99e2
-Size (R/later_0.8.0.tar.gz) = 40293 bytes
+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



Home | Main Index | Thread Index | Old Index