summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/r-clipr/package.py
blob: 53a3e4af58ccbb575b96da7d60e52f9696f25784 (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
# Copyright 2013-2022 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 RClipr(RPackage):
    """Read and Write from the System Clipboard.

    Simple utility functions to read from and write to the Windows, OS X, and
    X11 clipboards."""

    cran = "clipr"

    version('0.7.1', sha256='ffad477b07847e3b68f7e4406bbd323025a8dae7e3c768943d4d307ee3248afb')
    version('0.7.0', sha256='03a4e4b72ec63bd08b53fe62673ffc19a004cc846957a335be2b30d046b8c2e2')
    version('0.5.0', sha256='fd303f8b7f29badcdf490bb2d579acdfc4f4e1aa9c90ac77ab9d05ce3d053dbf')
    version('0.4.0', sha256='44a2f1ab4fde53e4fe81cf5800aa6ad45b72b5da93d6fe4d3661d7397220e8af')

    depends_on('r+X')
    depends_on('xclip')