summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Zhu <ifanzhu@foxmail.com>2017-11-21 02:26:44 -0600
committerMassimiliano Culpo <massimiliano.culpo@googlemail.com>2017-11-21 09:26:44 +0100
commitef8429c99ccf2c87fd70bc365f63d4f60bb55dd8 (patch)
tree43dc9017a8f8b97a4e95ee62ffedb9517a5f2087
parent0743c5bde6822115633f9fc698207b585aa784e4 (diff)
downloadspack-ef8429c99ccf2c87fd70bc365f63d4f60bb55dd8.tar.gz
spack-ef8429c99ccf2c87fd70bc365f63d4f60bb55dd8.tar.bz2
spack-ef8429c99ccf2c87fd70bc365f63d4f60bb55dd8.tar.xz
spack-ef8429c99ccf2c87fd70bc365f63d4f60bb55dd8.zip
r-modelr: created new package (#6289)
-rw-r--r--var/spack/repos/builtin/packages/r-modelr/package.py44
1 files changed, 44 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-modelr/package.py b/var/spack/repos/builtin/packages/r-modelr/package.py
new file mode 100644
index 0000000000..4be6963878
--- /dev/null
+++ b/var/spack/repos/builtin/packages/r-modelr/package.py
@@ -0,0 +1,44 @@
+##############################################################################
+# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/spack/spack
+# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+from spack import *
+
+
+class RModelr(RPackage):
+ """Functions for modelling that help you seamlessly integrate modelling
+ into a pipeline of data manipulation and visualisation."""
+
+ homepage = "https://github.com/hadley/modelr"
+ url = "https://cran.r-project.org/src/contrib/modelr_0.1.1.tar.gz"
+ list_url = "https://cran.r-project.org/src/contrib/Archive/modelr"
+
+ version('0.1.1', 'ce5fd088fb7850228ab1e34d241a975d')
+
+ depends_on('r-magrittr', type=('build', 'run'))
+ depends_on('r-purrr', type=('build', 'run'))
+ depends_on('r-lazyeval', type=('build', 'run'))
+ depends_on('r-tibble', type=('build', 'run'))
+ depends_on('r-broom', type=('build', 'run'))
+ depends_on('r-dplyr', type=('build', 'run'))
+ depends_on('r-tidyr', type=('build', 'run'))