Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-R/tidyselect/
Date: Fri, 08 May 2020 16:57:44
Message-Id: 1588952850.8843b398a15bb34beb18ac47f4439d9eeb237057.Alessandro-Barbieri@gentoo
1 commit: 8843b398a15bb34beb18ac47f4439d9eeb237057
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Fri May 8 15:47:30 2020 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Fri May 8 15:47:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8843b398
7
8 dev-R/tidyselect: new package
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
12
13 dev-R/tidyselect/Manifest | 1 +
14 dev-R/tidyselect/metadata.xml | 33 ++++++++++++++++++++++++++++++++
15 dev-R/tidyselect/tidyselect-1.0.0.ebuild | 25 ++++++++++++++++++++++++
16 3 files changed, 59 insertions(+)
17
18 diff --git a/dev-R/tidyselect/Manifest b/dev-R/tidyselect/Manifest
19 new file mode 100644
20 index 0000000..e19452a
21 --- /dev/null
22 +++ b/dev-R/tidyselect/Manifest
23 @@ -0,0 +1 @@
24 +DIST tidyselect_1.0.0.tar.gz 151161 BLAKE2B 8ce7203ae34fcc71905f785038469f8659ade390c858a039e036f5905e8f32c6b3b8165869be7573b46917293acb0f2a3aa800d78283165955cf8d27bec0eed1 SHA512 53775f43d896f271c9d988e84ca4a744dfb591d1ac42e811cffd1691a4a85000481102b61636831650bcddb9a07d7202341cb367cf587c3291e255ecf6ad64ff
25
26 diff --git a/dev-R/tidyselect/metadata.xml b/dev-R/tidyselect/metadata.xml
27 new file mode 100644
28 index 0000000..97fc114
29 --- /dev/null
30 +++ b/dev-R/tidyselect/metadata.xml
31 @@ -0,0 +1,33 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>lssndrbarbieri@×××××.com</email>
37 + <name>Alessandro Barbieri</name>
38 + </maintainer>
39 + <longdescription lang="en">
40 + 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.
41 + </longdescription>
42 + <upstream>
43 + <bugs-to>
44 + https://github.com/r-lib/tidyselect/issues
45 + </bugs-to>
46 + <doc lang="en">
47 + https://cran.r-project.org/web//packages/tidyselect/tidyselect.pdf
48 + </doc>
49 + <changelog>
50 + https://cran.r-project.org/web//packages/tidyselect/news/news.html
51 + </changelog>
52 + <maintainer>
53 + <name>
54 + Lionel Henry
55 + </name>
56 + <email>
57 + lionel@×××××××.com
58 + </email>
59 + </maintainer>
60 + <remote-id type="github">
61 + r-lib/tidyselect
62 + </remote-id>
63 + </upstream>
64 +</pkgmetadata>
65
66 diff --git a/dev-R/tidyselect/tidyselect-1.0.0.ebuild b/dev-R/tidyselect/tidyselect-1.0.0.ebuild
67 new file mode 100644
68 index 0000000..a101f02
69 --- /dev/null
70 +++ b/dev-R/tidyselect/tidyselect-1.0.0.ebuild
71 @@ -0,0 +1,25 @@
72 +# Copyright 1999-2020 Gentoo Authors
73 +# Distributed under the terms of the GNU General Public License v2
74 +
75 +EAPI="7"
76 +
77 +inherit R-packages-guru
78 +
79 +DESCRIPTION='Select from a Set of Strings'
80 +SRC_URI="http://cran.r-project.org/src/contrib/tidyselect_1.0.0.tar.gz"
81 +LICENSE='GPL-3'
82 +HOMEPAGE="
83 + https://tidyselect.r-lib.org
84 + https://github.com/r-lib/tidyselect
85 + https://cran.r-project.org/package=tidyselect
86 +"
87 +IUSE="${IUSE-}"
88 +DEPEND="
89 + >=dev-lang/R-3.2
90 + dev-R/ellipsis
91 + >=dev-R/glue-1.3.0
92 + >=dev-R/purrr-0.3.2
93 + >=dev-R/rlang-0.4.3
94 + >=dev-R/vctrs-0.2.2
95 +"
96 +RDEPEND="${DEPEND-}"