28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
# Copyright 2013-2024 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.package import *
|
|
|
|
|
|
class RSfheaders(RPackage):
|
|
"""Converts Between R Objects and Simple Feature Objects.
|
|
|
|
Converts between R and Simple Feature 'sf' objects, without depending on
|
|
the Simple Feature library. Conversion functions are available at both the
|
|
R level, and through 'Rcpp'."""
|
|
|
|
cran = "sfheaders"
|
|
|
|
license("MIT")
|
|
|
|
version("0.4.2", sha256="ed9fb934c537fb6f126886f8e5997727de856e32fc3d38911b61a3a83faa7b2c")
|
|
version("0.4.0", sha256="86bcd61018a0491fc8a1e7fb0422c918296287b82be299a79ccee8fcb515e045")
|
|
|
|
depends_on("r-geometries@0.2.0:", type=("build", "run"))
|
|
depends_on("r-geometries@0.2.2:", type=("build", "run"), when="@0.4.2:")
|
|
depends_on("r-rcpp", type=("build", "run"))
|
|
depends_on("r-rcpp@1.0.10:", type=("build", "run"), when="@0.4.2:")
|
|
depends_on("r@3.0.2:", type=("build", "run"), when="@0.4.2:")
|