* [gentoo-commits] repo/proj/guru:dev commit in: dev-R/fastmap/
@ 2022-07-02 10:07 Robert Greener
0 siblings, 0 replies; 2+ messages in thread
From: Robert Greener @ 2022-07-02 10:07 UTC (permalink / raw
To: gentoo-commits
commit: 0a23e5c72615d14052d47d3e6c0dbf9cb7a0f971
Author: Robert Greener <me <AT> r0bert <DOT> dev>
AuthorDate: Sat Jul 2 10:06:59 2022 +0000
Commit: Robert Greener <me <AT> r0bert <DOT> dev>
CommitDate: Sat Jul 2 10:06:59 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0a23e5c7
dev-R/fastmap: fix version for test dependency
Signed-off-by: Robert Greener <me <AT> r0bert.dev>
dev-R/fastmap/fastmap-1.1.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-R/fastmap/fastmap-1.1.0.ebuild b/dev-R/fastmap/fastmap-1.1.0.ebuild
index 1ec96c08b..f2b8bd7e9 100644
--- a/dev-R/fastmap/fastmap-1.1.0.ebuild
+++ b/dev-R/fastmap/fastmap-1.1.0.ebuild
@@ -11,7 +11,7 @@ LICENSE='MIT'
RESTRICT="!test? ( test )"
IUSE="test"
DEPEND="
- test? ( >=dev-R/testthat-0.11.0 )
+ test? ( >=dev-R/testthat-2.1.1 )
"
SUGGESTED_PACKAGES="
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-R/fastmap/
@ 2022-07-02 10:05 Robert Greener
0 siblings, 0 replies; 2+ messages in thread
From: Robert Greener @ 2022-07-02 10:05 UTC (permalink / raw
To: gentoo-commits
commit: 1aab90f1b78ff2fd5c10f44e26657b31d7e4670f
Author: Robert Greener <me <AT> r0bert <DOT> dev>
AuthorDate: Sat Jul 2 10:04:23 2022 +0000
Commit: Robert Greener <me <AT> r0bert <DOT> dev>
CommitDate: Sat Jul 2 10:05:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1aab90f1
dev-R/fastmap: new package, added 1.1.0
Signed-off-by: Robert Greener <me <AT> r0bert.dev>
dev-R/fastmap/Manifest | 1 +
dev-R/fastmap/fastmap-1.1.0.ebuild | 24 ++++++++++++++++++++++++
dev-R/fastmap/metadata.xml | 17 +++++++++++++++++
3 files changed, 42 insertions(+)
diff --git a/dev-R/fastmap/Manifest b/dev-R/fastmap/Manifest
new file mode 100644
index 000000000..3d7e1864a
--- /dev/null
+++ b/dev-R/fastmap/Manifest
@@ -0,0 +1 @@
+DIST fastmap_1.1.0.tar.gz 44277 BLAKE2B a090043c15d66387b6caf1ae16aab7873b46c43f5884afc7664e8c16ebbd987d5b2bba762b496a63a45f5939683cf3c77f23b9b6ce5d030d16ca99c0a7c8504a SHA512 f61b777f3ac4bf0a5c778bc07bb09a0244955c8bc13a669225a0c70999182af4012af2d9a792f1d861f7b5394c631e1896bf7ac3f3866b0c96e7e33a5635fb87
diff --git a/dev-R/fastmap/fastmap-1.1.0.ebuild b/dev-R/fastmap/fastmap-1.1.0.ebuild
new file mode 100644
index 000000000..1ec96c08b
--- /dev/null
+++ b/dev-R/fastmap/fastmap-1.1.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit R-packages edo
+
+DESCRIPTION='Fast Data Structures'
+KEYWORDS="~amd64"
+LICENSE='MIT'
+RESTRICT="!test? ( test )"
+IUSE="test"
+DEPEND="
+ test? ( >=dev-R/testthat-0.11.0 )
+"
+
+SUGGESTED_PACKAGES="
+ >=dev-R/testthat-2.1.1
+"
+
+src_test() {
+ cd "${WORKDIR}/${P}/tests"
+ NOT_CRAN=true R_LIBS="${T}/R" edo Rscript --vanilla testthat.R
+}
diff --git a/dev-R/fastmap/metadata.xml b/dev-R/fastmap/metadata.xml
new file mode 100644
index 000000000..78da9e014
--- /dev/null
+++ b/dev-R/fastmap/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">Fast implementation of data structures, including a key-value store, stack, and queue. Environments are commonly used as key-value stores in R, but every time a new key is used, it is added to R's global symbol table, causing a small amount of memory leakage. This can be problematic in cases where many different keys are used. Fastmap avoids this memory leak issue by implementing the map using data structures in C++.</longdescription>
+ <upstream>
+ <maintainer>
+ <name>Winston Chang</name>
+ <email>winston@rstudio.com</email>
+ </maintainer>
+ <bugs-to>https://github.com/r-lib/fastmap/issues</bugs-to>
+ <remote-id type="github">r-lib/fastmap</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-07-02 10:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-02 10:07 [gentoo-commits] repo/proj/guru:dev commit in: dev-R/fastmap/ Robert Greener
-- strict thread matches above, loose matches on Subject: below --
2022-07-02 10:05 Robert Greener
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox