diff options
author | Owen Solberg <odoublewen@users.noreply.github.com> | 2019-01-08 11:06:36 -0800 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-01-08 13:06:36 -0600 |
commit | 0e50ff73392e8519db0576a8571bf48cfb9a5e5b (patch) | |
tree | 1ca1341c1cf29383134b8eecf150070ea973bea3 | |
parent | 76dd4ca9aee061ed35bc9296f453cf270c09b519 (diff) | |
download | spack-0e50ff73392e8519db0576a8571bf48cfb9a5e5b.tar.gz spack-0e50ff73392e8519db0576a8571bf48cfb9a5e5b.tar.bz2 spack-0e50ff73392e8519db0576a8571bf48cfb9a5e5b.tar.xz spack-0e50ff73392e8519db0576a8571bf48cfb9a5e5b.zip |
r-dt: new versions (#10261)
* updated release and checksums, also tightened depends_on()
* remove blank line at end of file
* removing new version 0.5
-rw-r--r-- | var/spack/repos/builtin/packages/r-dt/package.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-dt/package.py b/var/spack/repos/builtin/packages/r-dt/package.py index c7298f9257..b419985173 100644 --- a/var/spack/repos/builtin/packages/r-dt/package.py +++ b/var/spack/repos/builtin/packages/r-dt/package.py @@ -16,8 +16,12 @@ class RDt(RPackage): url = "https://cran.r-project.org/src/contrib/DT_0.1.tar.gz" list_url = "https://cran.r-project.org/src/contrib/Archive/DT" - version('0.1', '5c8df984921fa484784ec4b8a4fb6f3c') + version('0.4', sha256='3daa96b819ca54e5fbc2c7d78cb3637982a2d44be58cea0683663b71cfc7fa19') + version('0.3', sha256='ef42b24c9ea6cfa1ce089687bf858d773ac495dc80756d4475234e979bd437eb') + version('0.2', sha256='a1b7f9e5c31a241fdf78ac582499f346e915ff948554980bbc2262c924b806bd') + version('0.1', sha256='129bdafededbdcc3279d63b16f00c885b215f23cab2edfe33c9cbe177c8c4756') - depends_on('r-htmltools', type=('build', 'run')) - depends_on('r-htmlwidgets', type=('build', 'run')) + depends_on('r-htmltools@0.3.6:', type=('build', 'run')) + depends_on('r-htmlwidgets@1.3:', type=('build', 'run')) depends_on('r-magrittr', type=('build', 'run')) + depends_on('r-crosstalk', type=('build', 'run')) |