spack/var/spack/repos/builtin/packages/r-urltools/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

21 lines
771 B
Python

# Copyright 2013-2021 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 RUrltools(RPackage):
"""urltools: Vectorised Tools for URL Handling and Parsing"""
homepage = "https://github.com/Ironholds/urltools/"
url = "https://cloud.r-project.org/src/contrib/urltools_1.7.3.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/urltools"
version('1.7.3', sha256='6020355c1b16a9e3956674e5dea9ac5c035c8eb3eb6bbdd841a2b5528cafa313')
depends_on('r@2.10:', type=('build', 'run'))
depends_on('r-rcpp', type=('build', 'run'))
depends_on('r-triebeard', type=('build', 'run'))