diff options
author | 2022-07-02 22:11:49 +0100 | |
---|---|---|
committer | 2022-07-02 22:11:49 +0100 | |
commit | 4b03727e2271261be2aeefa47b86a33f232f3dcc (patch) | |
tree | 6aab6187d79d1bd9459593aa6003df4a5fdb7e4e /dev-R | |
parent | licenses: Clean up GPL-2+-with-Pyinstaller... moved to ::gentoo (diff) | |
download | guru-4b03727e2271261be2aeefa47b86a33f232f3dcc.tar.gz guru-4b03727e2271261be2aeefa47b86a33f232f3dcc.tar.bz2 guru-4b03727e2271261be2aeefa47b86a33f232f3dcc.zip |
dev-R/clipr: new package, add 0.8.0
Signed-off-by: Robert Greener <me@r0bert.dev>
Diffstat (limited to 'dev-R')
-rw-r--r-- | dev-R/clipr/Manifest | 1 | ||||
-rw-r--r-- | dev-R/clipr/clipr-0.8.0.ebuild | 32 | ||||
-rw-r--r-- | dev-R/clipr/metadata.xml | 17 |
3 files changed, 50 insertions, 0 deletions
diff --git a/dev-R/clipr/Manifest b/dev-R/clipr/Manifest new file mode 100644 index 000000000..379252953 --- /dev/null +++ b/dev-R/clipr/Manifest @@ -0,0 +1 @@ +DIST clipr_0.8.0.tar.gz 21898 BLAKE2B 6b489ff1b8353942a327a550eaf9f1f693d74809515990b4e9dc666d7829532d89f368aeb081413dfb7a1e4aeedbb247c570f3187310078ea8bbf264d9b0bb2d SHA512 e3fad72072bd4d380cb69133d359a8f3b48aae3fc3eed78fd53fb23d35bdf4e2e4e43afecca4fb8870695c84198c065c0da216e68dd1ac17152c70ee8e698c85 diff --git a/dev-R/clipr/clipr-0.8.0.ebuild b/dev-R/clipr/clipr-0.8.0.ebuild new file mode 100644 index 000000000..e2de20116 --- /dev/null +++ b/dev-R/clipr/clipr-0.8.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit R-packages edo + +DESCRIPTION='Read and Write from the System Clipboard' +KEYWORDS="~amd64" +LICENSE='GPL-3' +RESTRICT="!test? ( test )" +IUSE="test" + +DEPEND=" + || ( x11-misc/xclip x11-misc/xsel gui-apps/wl-clipboard ) + test? ( + >=dev-R/testthat-2.0.0 + ) +" + +SUGGESTED_PACKAGES=" + dev-R/covr + dev-R/knitr + dev-R/rmarkdown + >=dev-R/rstudioapi-0.5 + >=dev-R/testthat-2.0.0 +" + +src_test() { + cd "${WORKDIR}/${P}/tests" || die + NOT_CRAN=true R_LIBS="${T}/R" edo Rscript --vanilla testthat.R +} diff --git a/dev-R/clipr/metadata.xml b/dev-R/clipr/metadata.xml new file mode 100644 index 000000000..ef09994fa --- /dev/null +++ b/dev-R/clipr/metadata.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>me@r0bert.dev</email> + <name>Robert Greener</name> + </maintainer> + <longdescription lang="en">Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards.</longdescription> + <upstream> + <maintainer> + <name>Matthew Lincoln</name> + <email>matthew.d.lincoln@gmail.com</email> + </maintainer> + <bugs-to>https://github.com/mdlincoln/clipr/issues</bugs-to> + <remote-id type="github">mdlincoln/clipr</remote-id> + </upstream> +</pkgmetadata> |