summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-selectr/package.py
blob: 2b406a9d8d3b513c38650555f91fe6ecee12a1d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2013-2023 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.package import *


class RSelectr(RPackage):
    """Translate CSS Selectors to XPath Expressions.

    Translates a CSS3 selector into an equivalent XPath expression. This allows
    us to use CSS selectors when working with the XML package as it can only
    evaluate XPath expressions. Also provided are convenience functions useful
    for using CSS selectors on XML nodes. This package is a port of the Python
    package 'cssselect' (<https://cssselect.readthedocs.io/>)."""

    cran = "selectr"

    license("BSD-3-Clause")

    version("0.4-2", sha256="5588aed05f3f5ee63c0d29953ef53da5dac7afccfdd04b7b22ef24e1e3b0c127")
    version("0.4-1", sha256="8bd42f167629344e485e586f9b05fed342746132489079084d82133d7b3ee2ca")
    version("0.4-0", sha256="40cd51bfe499954b300742c49f92167a68964b974268a7f47ca8864f32020ece")
    version("0.3-1", sha256="db4f7ceea4b522a54c3ae7709787b0b7fcf389c5d945c5a278e3625388218949")

    depends_on("r@3.0:", type=("build", "run"))
    depends_on("r-stringr", type=("build", "run"))
    depends_on("r-r6", type=("build", "run"), when="@0.4-0:")