diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2018-11-12 18:38:48 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2018-11-12 18:38:48 -0600 |
commit | 2ee0d98be1929b0a399a20ec2efb8fb2199bf118 (patch) | |
tree | bf038affc4e0b124b3f7858600e5067f2e511de3 | |
parent | dcb696bd3fbffde1aaea637ab212267dd16a8744 (diff) | |
download | spack-2ee0d98be1929b0a399a20ec2efb8fb2199bf118.tar.gz spack-2ee0d98be1929b0a399a20ec2efb8fb2199bf118.tar.bz2 spack-2ee0d98be1929b0a399a20ec2efb8fb2199bf118.tar.xz spack-2ee0d98be1929b0a399a20ec2efb8fb2199bf118.zip |
r-webshot: new package at 0.5.1 (#9824)
-rw-r--r-- | var/spack/repos/builtin/packages/r-webshot/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-webshot/package.py b/var/spack/repos/builtin/packages/r-webshot/package.py new file mode 100644 index 0000000000..b7e33570fe --- /dev/null +++ b/var/spack/repos/builtin/packages/r-webshot/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2018 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 RWebshot(RPackage): + """webshot: Take Screenshots of Web Pages""" + + homepage = "https://github.com/wch/webshot/" + url = "https://cran.r-project.org/src/contrib/webshot_0.5.1.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/webshot/" + + version('0.5.1', sha256='b9750d206c6fa0f1f16cc212b0a34f4f4bfa916962d2c877f0ee9a33620f4b23') + + depends_on('r-magrittr', type=('build', 'run')) + depends_on('r-jsonlite', type=('build', 'run')) + depends_on('r-callr', type=('build', 'run')) |