From 8843b398a15bb34beb18ac47f4439d9eeb237057 Mon Sep 17 00:00:00 2001 From: Alessandro Barbieri Date: Fri, 8 May 2020 17:47:30 +0200 Subject: [PATCH] dev-R/tidyselect: new package Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alessandro Barbieri --- dev-R/tidyselect/Manifest | 1 + dev-R/tidyselect/metadata.xml | 33 ++++++++++++++++++++++++ dev-R/tidyselect/tidyselect-1.0.0.ebuild | 25 ++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 dev-R/tidyselect/Manifest create mode 100644 dev-R/tidyselect/metadata.xml create mode 100644 dev-R/tidyselect/tidyselect-1.0.0.ebuild diff --git a/dev-R/tidyselect/Manifest b/dev-R/tidyselect/Manifest new file mode 100644 index 0000000000..e19452a4f2 --- /dev/null +++ b/dev-R/tidyselect/Manifest @@ -0,0 +1 @@ +DIST tidyselect_1.0.0.tar.gz 151161 BLAKE2B 8ce7203ae34fcc71905f785038469f8659ade390c858a039e036f5905e8f32c6b3b8165869be7573b46917293acb0f2a3aa800d78283165955cf8d27bec0eed1 SHA512 53775f43d896f271c9d988e84ca4a744dfb591d1ac42e811cffd1691a4a85000481102b61636831650bcddb9a07d7202341cb367cf587c3291e255ecf6ad64ff diff --git a/dev-R/tidyselect/metadata.xml b/dev-R/tidyselect/metadata.xml new file mode 100644 index 0000000000..97fc114613 --- /dev/null +++ b/dev-R/tidyselect/metadata.xml @@ -0,0 +1,33 @@ + + + + + lssndrbarbieri@gmail.com + Alessandro Barbieri + + + A backend for the selecting functions of the 'tidyverse'. It makes it easy to implement select-like functions in your own packages in a way that is consistent with other 'tidyverse' interfaces for selection. + + + + https://github.com/r-lib/tidyselect/issues + + + https://cran.r-project.org/web//packages/tidyselect/tidyselect.pdf + + + https://cran.r-project.org/web//packages/tidyselect/news/news.html + + + + Lionel Henry + + + lionel@rstudio.com + + + + r-lib/tidyselect + + + diff --git a/dev-R/tidyselect/tidyselect-1.0.0.ebuild b/dev-R/tidyselect/tidyselect-1.0.0.ebuild new file mode 100644 index 0000000000..a101f02f9a --- /dev/null +++ b/dev-R/tidyselect/tidyselect-1.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit R-packages-guru + +DESCRIPTION='Select from a Set of Strings' +SRC_URI="http://cran.r-project.org/src/contrib/tidyselect_1.0.0.tar.gz" +LICENSE='GPL-3' +HOMEPAGE=" + https://tidyselect.r-lib.org + https://github.com/r-lib/tidyselect + https://cran.r-project.org/package=tidyselect +" +IUSE="${IUSE-}" +DEPEND=" + >=dev-lang/R-3.2 + dev-R/ellipsis + >=dev-R/glue-1.3.0 + >=dev-R/purrr-0.3.2 + >=dev-R/rlang-0.4.3 + >=dev-R/vctrs-0.2.2 +" +RDEPEND="${DEPEND-}"