diff options
author | lingnanyuan <1297162327@qq.com> | 2017-09-23 10:02:27 -0500 |
---|---|---|
committer | Christoph Junghans <christoph.junghans@gmail.com> | 2017-09-23 15:02:27 +0000 |
commit | bf2f96ce7873b756f87fa588f99be1df9d902675 (patch) | |
tree | 686b5b54f78ed709c86fc5f78a314b05d8bf9940 | |
parent | c3a8f10bf99b255d95455d7fcc671280ab94092b (diff) | |
download | spack-bf2f96ce7873b756f87fa588f99be1df9d902675.tar.gz spack-bf2f96ce7873b756f87fa588f99be1df9d902675.tar.bz2 spack-bf2f96ce7873b756f87fa588f99be1df9d902675.tar.xz spack-bf2f96ce7873b756f87fa588f99be1df9d902675.zip |
r-rsqlite: Update version to 2.0. (#5444)
* pr-quantities: add version & py-numpy conflict (#5307)
* r-rsqlite: Update version to 2.0
-rw-r--r-- | var/spack/repos/builtin/packages/r-rsqlite/package.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/r-rsqlite/package.py b/var/spack/repos/builtin/packages/r-rsqlite/package.py index 43f55753f7..dc85e77286 100644 --- a/var/spack/repos/builtin/packages/r-rsqlite/package.py +++ b/var/spack/repos/builtin/packages/r-rsqlite/package.py @@ -30,9 +30,16 @@ class RRsqlite(RPackage): interface compliant with the DBI package. The source for the SQLite engine (version 3.8.6) is included.""" - homepage = "https://github.com/rstats-db/RSQLite" + homepage = "https://cran.rstudio.com/web/packages/RSQLite/index.html" url = "https://cran.r-project.org/src/contrib/RSQLite_1.0.0.tar.gz" - - version('1.0.0', 'e6cbe2709612b687c13a10d30c7bad45') + list_url = homepage + version('2.0', '63842410e78ccdfc52d4ee97992521d5') depends_on('r-dbi', type=('build', 'run')) + depends_on('r-bit64', type=('build', 'run')) + depends_on('r-blob', type=('build', 'run')) + depends_on('r-memoise', type=('build', 'run')) + depends_on('r-pkgconfig', type=('build', 'run')) + depends_on('r-rcpp', type=('build', 'run')) + depends_on('r-bh', type=('build', 'run')) + depends_on('r-plogr', type=('build', 'run')) |