dev-R/R_methodsS3: new package, add 1.8.2

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-03 14:09:12 +01:00
parent 16efea70ad
commit 0672ab36b9
3 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST R.methodsS3_1.8.2.tar.gz 24131 BLAKE2B 5f86f9302bca53497421a0d6bb34e6757657b8f81867f73934865de9c54fcf2a14f3520c3164c95c6b4e7f360b30c59aa04a2e1beedad9777f7408e4791b2b07 SHA512 4282f70afc4902575db614467d4606832e29889a427d783efb684b778bf9b515507527fa5a368ce7b1f6515aedc48047cabb24e6c22324f56ad02d006a8d055a

View File

@@ -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="S3 Methods Simplified"
KEYWORDS="~amd64"
LICENSE='LGPL-2.1+'
CRAN_PN="R.methodsS3"
SRC_URI="mirror://cran/src/contrib/${CRAN_PN}_${PV}.tar.gz"
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
}

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 that simplify the setup of S3 generic functions and S3 methods. Major effort has been made in making definition of methods as simple as possible with a minimum of maintenance for package developers. For example, generic functions are created automatically, if missing, and naming conflict are automatically solved, if possible. The method setMethodS3() is a good start for those who in the future may want to migrate to S4. This is a cross-platform package implemented in pure R that generates standard S3 methods.</longdescription>
<upstream>
<maintainer>
<name>Henrik Bengtsson</name>
<email>henrikb@braju.com</email>
</maintainer>
<bugs-to>https://github.com/HenrikBengtsson/R.methodsS3/issues</bugs-to>
<remote-id type="github">HenrikBengtsson/R.methodsS3</remote-id>
</upstream>
</pkgmetadata>