aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-R/reticulate')
-rw-r--r--dev-R/reticulate/Manifest1
-rw-r--r--dev-R/reticulate/metadata.xml21
-rw-r--r--dev-R/reticulate/reticulate-1.25.ebuild54
3 files changed, 0 insertions, 76 deletions
diff --git a/dev-R/reticulate/Manifest b/dev-R/reticulate/Manifest
deleted file mode 100644
index 6066986b1..000000000
--- a/dev-R/reticulate/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST reticulate_1.25.tar.gz 1542452 BLAKE2B af419f24c9941a94762a0247ea2bda7750772a6e9095192561bb22a426d56e710e7079361b7fa4497a7a12e0f7ff03b323204166b21e11a9e7bb2cb2e6805734 SHA512 0bed6f67b67dc796a89cf82215fd4b37c6d5dc4999c5c61c34b66657a7c3afb70c880f1d27c8f458102410f797a278c777440e8a134fb073e0d70bb01c7e5478
diff --git a/dev-R/reticulate/metadata.xml b/dev-R/reticulate/metadata.xml
deleted file mode 100644
index fd49d6f51..000000000
--- a/dev-R/reticulate/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <description>co-maintainers welcome</description>
- <email>lssndrbarbieri@gmail.com</email>
- <name>Alessandro Barbieri</name>
- </maintainer>
- <longdescription lang="en">Interface to 'Python' modules, classes, and functions. When calling
-into 'Python', R data types are automatically converted to their equivalent 'Python'
-types. When values are returned from 'Python' to R they are converted back to R
-types. Compatible with all versions of 'Python' &gt;= 2.7.</longdescription>
- <upstream>
- <maintainer>
- <name>Kevin Ushey</name>
- <email>kevin@rstudio.com</email>
- </maintainer>
- <bugs-to>https://github.com/rstudio/reticulate/issues</bugs-to>
- <remote-id type="github">rstudio/reticulate</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-R/reticulate/reticulate-1.25.ebuild b/dev-R/reticulate/reticulate-1.25.ebuild
deleted file mode 100644
index 81f6a6ff5..000000000
--- a/dev-R/reticulate/reticulate-1.25.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{10..11} pypy3 )
-
-inherit python-single-r1 R-packages
-
-DESCRIPTION='Interface to Python'
-HOMEPAGE="
- https://rstudio.github.io/reticulate/
- https://github.com/rstudio/reticulate
- https://cran.r-project.org/package=reticulate
-"
-
-KEYWORDS="~amd64"
-LICENSE='Apache-2.0'
-
-DEPEND="
- dev-R/jsonlite
- dev-R/rappdirs
- >=dev-R/Rcpp-0.12.7
- >=dev-lang/R-3.0
- dev-R/RcppTOML
- virtual/Matrix
- dev-R/here
- dev-R/png
- dev-R/withr
-"
-RDEPEND="
- ${DEPEND}
- ${PYTHON_DEPS}
-"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-src_install() {
- R-packages_src_install
-
- python_optimize "${ED}/usr/$(get_libdir)/R/site-library/reticulate/python/rpytools"
-
- # enforce python implementation
- echo "RETICULATE_PYTHON=\"${PYTHON}\"" > "${T}/99reticulate" || die
- doenvd "${T}/99reticulate"
-}
-
-SUGGESTED_PACKAGES="
- dev-R/callr
- dev-R/knitr
- dev-R/rlang
- dev-R/rmarkdown
- dev-R/testthat
-"