X Tutup
Skip to content

Commit 72bec9a

Browse files
lingnanyuanjunghans
authored andcommitted
r-rex: Create new package. (spack#6221)
1 parent ca2ffd9 commit 72bec9a

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
##############################################################################
2+
# Copyright (c) 2013-2017, Lawrence Livermore National Security, LLC.
3+
# Produced at the Lawrence Livermore National Laboratory.
4+
#
5+
# This file is part of Spack.
6+
# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
7+
# LLNL-CODE-647188
8+
#
9+
# For details, see https://github.com/spack/spack
10+
# Please also see the NOTICE and LICENSE files for our notice and the LGPL.
11+
#
12+
# This program is free software; you can redistribute it and/or modify
13+
# it under the terms of the GNU Lesser General Public License (as
14+
# published by the Free Software Foundation) version 2.1, February 1999.
15+
#
16+
# This program is distributed in the hope that it will be useful, but
17+
# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
18+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
19+
# conditions of the GNU Lesser General Public License for more details.
20+
#
21+
# You should have received a copy of the GNU Lesser General Public
22+
# License along with this program; if not, write to the Free Software
23+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24+
##############################################################################
25+
from spack import *
26+
27+
28+
class RRex(RPackage):
29+
"""A friendly interface for the construction of regular expressions."""
30+
31+
homepage = "https://cran.r-project.org/package=rex"
32+
url = "https://cran.r-project.org/src/contrib/rex_1.1.2.tar.gz"
33+
list_url = "https://cran.r-project.org/src/contrib/Archive/rex"
34+
35+
version('1.1.2', '8820b4d4fe3718f275847b6f2cf83689')
36+
37+
depends_on('r-lazyeval', type=('build', 'run'))
38+
depends_on('r-magrittr', type=('build', 'run'))

0 commit comments

Comments
 (0)
X Tutup