aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Longros <chris.longros@gmail.com>2026-03-22 23:06:10 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2026-03-22 23:07:48 +0000
commit281272b4826e61131f15d5a0d3016ae9b30ef7ad (patch)
tree6c06350eb35db3af09f7e0c78ab04b9a0dedd643
parent8a85b1ff604c1335b44981a429a06e2e4f738a57 (diff)
math/R-cran-ankiR: New port: Read and Analyze Anki Flashcard Databases
Differential Revision: https://reviews.freebsd.org/D56036
-rw-r--r--math/Makefile1
-rw-r--r--math/R-cran-ankiR/Makefile21
-rw-r--r--math/R-cran-ankiR/distinfo3
-rw-r--r--math/R-cran-ankiR/pkg-descr9
4 files changed, 34 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile
index 6f065306518c..cbbb2e0cd4b5 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -38,6 +38,7 @@
SUBDIR += R-cran-acepack
SUBDIR += R-cran-admisc
SUBDIR += R-cran-alabama
+ SUBDIR += R-cran-ankiR
SUBDIR += R-cran-ash
SUBDIR += R-cran-assertthat
SUBDIR += R-cran-backports
diff --git a/math/R-cran-ankiR/Makefile b/math/R-cran-ankiR/Makefile
new file mode 100644
index 000000000000..ead4d3aab54a
--- /dev/null
+++ b/math/R-cran-ankiR/Makefile
@@ -0,0 +1,21 @@
+PORTNAME= ankiR
+DISTVERSION= 0.6.0
+CATEGORIES= math
+DISTNAME= ${PORTNAME}_${DISTVERSION}
+
+MAINTAINER= chris.longros@gmail.com
+COMMENT= Read and Analyze Anki Flashcard Databases
+WWW= https://github.com/chrislongros/ankiR
+
+LICENSE= MIT
+
+RUN_DEPENDS= R-cran-rlang>0:devel/R-cran-rlang \
+ R-cran-jsonlite>0:converters/R-cran-jsonlite \
+ R-cran-DBI>0:databases/R-cran-DBI \
+ R-cran-RSQLite>0:databases/R-cran-RSQLite \
+ R-cran-tibble>0:devel/R-cran-tibble \
+ R-cran-scales>0:graphics/R-cran-scales
+
+USES= cran:auto-plist
+
+.include <bsd.port.mk>
diff --git a/math/R-cran-ankiR/distinfo b/math/R-cran-ankiR/distinfo
new file mode 100644
index 000000000000..2f24df3f63f0
--- /dev/null
+++ b/math/R-cran-ankiR/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1774215952
+SHA256 (ankiR_0.6.0.tar.gz) = 608a17370e49a627ecaa01124ba865c91805ea9fe34940bcd2d45131953af2e2
+SIZE (ankiR_0.6.0.tar.gz) = 1068374
diff --git a/math/R-cran-ankiR/pkg-descr b/math/R-cran-ankiR/pkg-descr
new file mode 100644
index 000000000000..dbc0d99319fe
--- /dev/null
+++ b/math/R-cran-ankiR/pkg-descr
@@ -0,0 +1,9 @@
+Comprehensive toolkit for reading and analyzing Anki flashcard
+collection databases. Provides functions to access notes, cards,
+decks, note types, and review logs with a tidy interface. Features
+extensive analytics including retention rates, learning curves,
+forgetting curve fitting, and review patterns. Supports FSRS (Free
+Spaced Repetition Scheduler) analysis with stability, difficulty,
+retrievability metrics, parameter comparison, and workload predictions.
+
+-- Christos Longros <chris.longros@gmail.com>