dev-R/zoo: new package, add 1.8.10

Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
Robert Greener
2022-07-03 18:22:52 +01:00
parent 4f27434270
commit 58ff03ed20
3 changed files with 49 additions and 0 deletions

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

@@ -0,0 +1 @@
DIST zoo_1.8-10.tar.gz 808943 BLAKE2B 71a80b8602cee2a9e73e46e16e0c2474a8a6f9de1a8010a244dec59b474e939bd825acfdc3524f25dfe867bb622373a54dd81cb90478c101e279183f0a6a3af2 SHA512 473a1e8ebade7717ba4b90513c9791268323c5f762c217ff3fcf3915d74198142f7b4cc6a2651450428c323a2b37f8b38698e87cdd7ff0b0def8084bb31ba4da

15
dev-R/zoo/metadata.xml Normal file
View File

@@ -0,0 +1,15 @@
<?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">An S3 class with methods for totally ordered indexed observations. It is particularly aimed at irregular time series of numeric vectors/matrices and factors. zoo's key design goals are independence of a particular index/date/time class and consistency with ts and base R by providing methods to extend standard generics.</longdescription>
<upstream>
<maintainer>
<name>Achim Zeileis</name>
<email>Achim.Zeileis@R-project.org</email>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit R-packages
DESCRIPTION="S3 Infrastructure for Regular and Irregular Time Series (Z's Ordered Observations)"
KEYWORDS="~amd64"
LICENSE='GPL-2 GPL-3'
CRAN_PV="1.8-10"
SRC_URI="mirror://cran/src/contrib/${PN}_${CRAN_PV}.tar.gz"
DEPEND="
|| ( dev-lang/R[-minimal] >=dev-R/lattice-0.20.27 )
"
SUGGESTED_PACKAGES="
dev-R/AER
dev-R/coda
dev-R/chron
>=dev-R/ggplot2-3.0.0
dev-R/mondate
dev-R/scales
dev-R/stinepack
dev-R/strucchange
dev-R/timeDate
dev-R/timeSeries
dev-R/tis
dev-R/tseries
dev-R/xts
"