summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-tweenr/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/r-tweenr/package.py')
-rw-r--r--var/spack/repos/builtin/packages/r-tweenr/package.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/r-tweenr/package.py b/var/spack/repos/builtin/packages/r-tweenr/package.py
index a1315a83c4..04ceec1cb0 100644
--- a/var/spack/repos/builtin/packages/r-tweenr/package.py
+++ b/var/spack/repos/builtin/packages/r-tweenr/package.py
@@ -7,16 +7,21 @@ from spack import *
class RTweenr(RPackage):
- """tweenr: Interpolate Data for Smooth Animations"""
+ """Interpolate Data for Smooth Animations.
- homepage = "https://github.com/thomasp85/tweenr"
- url = "https://cloud.r-project.org/src/contrib/tweenr_1.0.1.tar.gz"
- list_url = "https://cloud.r-project.org/src/contrib/Archive/tweenr"
+ In order to create smooth animation between states of data, tweening is
+ necessary. This package provides a range of functions for creating tweened
+ data that can be used as basis for animation. Furthermore it adds a number
+ of vectorized interpolaters for common R data types such as numeric, date
+ and colour."""
+ cran = "tweenr"
+
+ version('1.0.2', sha256='1805f575da6705ca4e5ec1c4605222fc826ba806d9ff9af41770294fe08ff69f')
version('1.0.1', sha256='efd68162cd6d5a4f6d833dbf785a2bbce1cb7b9f90ba3fb060931a4bd705096b')
depends_on('r@3.2.0:', type=('build', 'run'))
+ depends_on('r-rcpp@0.12.3:', type=('build', 'run'))
depends_on('r-farver', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run'))
- depends_on('r-rcpp@0.12.3:', type=('build', 'run'))
depends_on('r-rlang', type=('build', 'run'))