diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-03-01 09:53:30 -0600 |
---|---|---|
committer | Levi Baber <baberlevi@gmail.com> | 2019-03-01 09:53:30 -0600 |
commit | 104a8a1422c6cee9f9409cb3866051d4ad5d3ddf (patch) | |
tree | 5fe5a7b9e8f21aad12f9ba63f0399f7ff49c612e | |
parent | 0766e7fbbb1ef5315b20814d277f44c8ec8b82fb (diff) | |
download | spack-104a8a1422c6cee9f9409cb3866051d4ad5d3ddf.tar.gz spack-104a8a1422c6cee9f9409cb3866051d4ad5d3ddf.tar.bz2 spack-104a8a1422c6cee9f9409cb3866051d4ad5d3ddf.tar.xz spack-104a8a1422c6cee9f9409cb3866051d4ad5d3ddf.zip |
r-gdalutils: new package at 2.0.1.14 (#10731)
-rw-r--r-- | var/spack/repos/builtin/packages/r-gdalutils/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-gdalutils/package.py b/var/spack/repos/builtin/packages/r-gdalutils/package.py new file mode 100644 index 0000000000..d8adeae443 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-gdalutils/package.py @@ -0,0 +1,23 @@ +# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack import * + + +class RGdalutils(RPackage): + """gdalUtils: Wrappers for the Geospatial Data Abstraction Library""" + + homepage = "https://cran.r-project.org/package=gdalUtils" + url = "https://cran.r-project.org/src/contrib/gdalUtils_2.0.1.14.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/gdalUtils" + + version('2.0.1.14', sha256='890a502b2eb5f1b23655fab94caad5d32adca05b93f5db1d96d9dcde3f0e7737') + + depends_on('r@2.14.0:', type=('build', 'run')) + depends_on('r-sp', type=('build', 'run')) + depends_on('r-foreach', type=('build', 'run')) + depends_on('r-utils', type=('build', 'run')) + depends_on('r-raster', type=('build', 'run')) + depends_on('r-rgdal', type=('build', 'run')) |