mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
dev-R/tzdb: new package, add 0.3.0
Signed-off-by: Robert Greener <me@r0bert.dev>
This commit is contained in:
1
dev-R/tzdb/Manifest
Normal file
1
dev-R/tzdb/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST tzdb_0.3.0.tar.gz 567544 BLAKE2B a62c7d8131327064933e314be2087c362997403eeca9bce50763b626666bf627f18538a9b332e579ac8947306fc97f45e4809ce9c475d2109a5ef96de501c87e SHA512 ca3de0e75d932dcf9e23dbd05788d3684336f8fc2e5e929817e48de2c1180ab68e5afc155f53c309f5fc3058cff2ebb4ef0931d5384234fe585fc1460f21668a
|
||||
17
dev-R/tzdb/metadata.xml
Normal file
17
dev-R/tzdb/metadata.xml
Normal 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">Provides an up-to-date copy of the Internet Assigned Numbers Authority (IANA) Time Zone Database. It is updated periodically to reflect changes made by political bodies to time zone boundaries, UTC offsets, and daylight saving time rules. Additionally, this package provides a C++ interface for working with the 'date' library. 'date' provides comprehensive support for working with dates and date-times, which this package exposes to make it easier for other R packages to utilize. Headers are provided for calendar specific calculations, along with a limited interface for time zone manipulations.</longdescription>
|
||||
<upstream>
|
||||
<maintainer>
|
||||
<name>Davis Vaughan</name>
|
||||
<email>davis@rstudio.com</email>
|
||||
</maintainer>
|
||||
<bugs-to>https://github.com/r-lib/tzdb/issues</bugs-to>
|
||||
<remote-id type="github">r-lib/tzdb</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
29
dev-R/tzdb/tzdb-0.3.0.ebuild
Normal file
29
dev-R/tzdb/tzdb-0.3.0.ebuild
Normal file
@@ -0,0 +1,29 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit R-packages edo
|
||||
|
||||
DESCRIPTION="Time Zone Database Information"
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE='MIT'
|
||||
RESTRICT="!test? ( test )"
|
||||
IUSE="test"
|
||||
|
||||
DEPEND="
|
||||
>=dev-R/cpp11-0.4.2
|
||||
test? (
|
||||
>=dev-R/testthat-3.0.0
|
||||
)
|
||||
"
|
||||
|
||||
SUGGESTED_PACKAGES="
|
||||
dev-R/covr
|
||||
>=dev-R/testthat-3.0.0
|
||||
"
|
||||
|
||||
src_test() {
|
||||
cd "${WORKDIR}/${P}/tests" || die
|
||||
NOT_CRAN=true R_LIBS="${T}/R" edo Rscript --vanilla testthat.R
|
||||
}
|
||||
Reference in New Issue
Block a user