dev-R/R_oo: new package, add 1.25.0

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-03 14:14:31 +01:00
parent 274ff82f17
commit ef3609468d
3 changed files with 46 additions and 0 deletions

1
dev-R/R_oo/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST R.oo_1.25.0.tar.gz 384384 BLAKE2B b7f758b430d969a3c46b630149743faecffba5601c11b8d2f35cca7094388bb1459fca6515093ab80c90a8506e544b1abfb6b98f935c5dd8c4ce7fa8be37d247 SHA512 8d6f9fa243fd2088511345bd932c72b337492b4555a078a694c236820994b2a40eb8f665c50a604010cb86f3eb12728b33e56d2e719c8bf2d39b84eba8e99b4c

View File

@@ -0,0 +1,28 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages edo
DESCRIPTION="R Object-Oriented Programming with or without References"
KEYWORDS="~amd64"
LICENSE='LGPL-2.1+'
CRAN_PN="R.oo"
SRC_URI="mirror://cran/src/contrib/${CRAN_PN}_${PV}.tar.gz"
DEPEND="
>=dev-R/R_methodsS3-1.8.1
"
SUGGESTED_PACKAGES="
dev-R/codetools
"
src_test() {
cd "${WORKDIR}/${P}/tests" || die
for i in *.R; do
R_LIBS="${T}/R" edo Rscript --vanilla $i
done
}

17
dev-R/R_oo/metadata.xml Normal file
View File

@@ -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">Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks.</longdescription>
<upstream>
<maintainer>
<name>Henrik Bengtsson</name>
<email>henrikb@braju.com</email>
</maintainer>
<bugs-to>https://github.com/HenrikBengtsson/R.oo/issues</bugs-to>
<remote-id type="github">HenrikBengtsson/R.oo</remote-id>
</upstream>
</pkgmetadata>