summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-rmysql/package.py
blob: dc14ddde16002d72c25b70a263b36b1a498b4dc3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 RRmysql(RPackage):
    """Implements 'DBI' Interface to 'MySQL' and 'MariaDB' Databases."""

    homepage = "https://github.com/rstats-db/rmysql"
    url      = "https://cran.r-project.org/src/contrib/RMySQL_0.10.9.tar.gz"
    list_url = "https://cran.r-project.org/src/contrib/Archive/RMySQL"

    version('0.10.9', '3628200a1864ac3005cfd55cc7cde17a')

    depends_on('r-dbi', type=('build', 'run'))
    depends_on('mariadb')