r-tictoc: add 1.0.1 (#27715)

This commit is contained in:
Manuela Kuhn 2021-12-03 23:14:29 +01:00 committed by GitHub
parent 21d1e03e37
commit 324e046f06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@
class RTictoc(RPackage):
"""tictoc: Functions for timing R scripts, as well as implementations of
Stack and List structures
"""Functions for timing R scripts, as well as implementations of Stack and
List structures.
This package provides the timing functions 'tic' and 'toc'
that can be nested. One can record all timings while a
@ -20,9 +20,10 @@ class RTictoc(RPackage):
'push', 'pop', 'first', 'last' and 'clear'."""
homepage = "https://collectivemedia.github.io/tictoc/"
url = "https://cloud.r-project.org/src/contrib/tictoc_1.0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/tictoc"
cran = "tictoc"
version('1.0.1', sha256='a09a1535c417ddf6637bbbda5fca6edab6c7f7b252a64e57e99d4d0748712705')
version('1.0', sha256='47da097c1822caa2d8e262381987cfa556ad901131eb96109752742526b2e2fe')
depends_on('r@3.0.3:', type=('build', 'run'))
depends_on('r@3.0.3:', type=('build', 'run'), when='@1.0.1:')
depends_on('r@3.0.3:4.0', type=('build', 'run'), when='@1.0')