diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-11-14 03:02:32 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-11-14 03:02:32 +0000 |
commit | d3c7d3e5f9607edef1a795ccc502ab3eb3121165 (patch) | |
tree | d36ccc4ef4aa53927a8cd66bc5d3ab06fe1bdd24 /dev-python/rpy2 | |
parent | 4dc2f97ed84159736ecfb5dea5485e83b27810d1 (diff) |
gentoo auto-resync : 14:11:2024 - 03:02:32
Diffstat (limited to 'dev-python/rpy2')
-rw-r--r-- | dev-python/rpy2/Manifest | 3 | ||||
-rw-r--r-- | dev-python/rpy2/metadata.xml | 19 | ||||
-rw-r--r-- | dev-python/rpy2/rpy2-3.5.14.ebuild | 46 |
3 files changed, 68 insertions, 0 deletions
diff --git a/dev-python/rpy2/Manifest b/dev-python/rpy2/Manifest new file mode 100644 index 000000000000..483d5b9c7050 --- /dev/null +++ b/dev-python/rpy2/Manifest @@ -0,0 +1,3 @@ +DIST rpy2-3.5.14.tar.gz 219268 BLAKE2B 167284d4974710121475d83aada49e128566f075276f5f641096f6ce94c236c315617df2847504e0e3ca804090e1f422fa1b53a4a37b60f1c5bcdba8c0b059ff SHA512 d02454fb41c946a0a92547f8a5dba3c614741bec8e293984116b34dfbe97574a655b7066fd75d34fee4c0f604c41c8b672d6a2c3b4194cba30a37c95da6578dd +EBUILD rpy2-3.5.14.ebuild 1012 BLAKE2B 19dd565e3680c9ad3228980bf52cfcfc2410d32b6ff7861128f2d4a2b46eec200b32dfcd4901479fc8095bbbb19b7c70a63c672c6a07c116dd56db76e7fb496e SHA512 84e1eee0ad7e1e4987223f17af33677257eb98a5155a8a4358ce162022883285f5ebff863da5840214fa7e20039204ff353646ba20d76381e63864c13aba56d9 +MISC metadata.xml 695 BLAKE2B 9c98bf8cc9a517042e16e22b2d853cc0b760eeffdf966a61a2779726aa71a76d4f2e37c3fb1e4e493f2b58ebe5d922d6f10e1d05ee0354466f60e999f5312d0d SHA512 1a2ed1a51b3857507b6bc853905db9a5d3638fb9f4440e98f52a128d3739e59f900853587c6ca5715b0bb3c1cb1b8f81866df3eb76253aecf7913aa71ea3dbdd diff --git a/dev-python/rpy2/metadata.xml b/dev-python/rpy2/metadata.xml new file mode 100644 index 000000000000..98f720adecd9 --- /dev/null +++ b/dev-python/rpy2/metadata.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>sci@gentoo.org</email> + <name>Gentoo Science Project</name> + </maintainer> + <longdescription lang="en"> + RPy provides a robust Python interface to the R programming + language. It can manage R objects and can execute arbitrary R + functions. All the errors from the R language are converted to + Python exceptions. + </longdescription> + <upstream> + <remote-id type="github">rpy2/rpy2</remote-id> + <remote-id type="pypi">rpy2</remote-id> + <remote-id type="sourceforge">rpy</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/rpy2/rpy2-3.5.14.ebuild b/dev-python/rpy2/rpy2-3.5.14.ebuild new file mode 100644 index 000000000000..3eb5183bba9b --- /dev/null +++ b/dev-python/rpy2/rpy2-3.5.14.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +PYTHON_REQ_USE="sqlite" +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi optfeature + +DESCRIPTION="Python interface to the R language" +HOMEPAGE=" + https://rpy2.github.io/ + https://github.com/rpy2/rpy2 + https://pypi.org/project/rpy/ +" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + >=dev-lang/R-4.0 + dev-python/cffi[${PYTHON_USEDEP}] + dev-python/jinja2[${PYTHON_USEDEP}] + dev-python/pytz[${PYTHON_USEDEP}] + dev-python/tzlocal[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + ${RDEPEND} + dev-python/ipython[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +pkg_postinst() { + optfeature "ipython integration" dev-python/ipython + optfeature "numpy integration" dev-python/numpy + optfeature "pandas integration" dev-python/pandas +} |