Last updated on 2025-12-06 00:48:39 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.1.2 | 1.66 | 33.72 | 35.38 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 0.1.2 | 1.43 | 20.65 | 22.08 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.1.2 | 52.35 | NOTE | |||
| r-devel-linux-x86_64-fedora-gcc | 0.1.2 | 50.41 | NOTE | |||
| r-devel-windows-x86_64 | 0.1.2 | 3.00 | 49.00 | 52.00 | NOTE | |
| r-patched-linux-x86_64 | 0.1.2 | 1.80 | 28.95 | 30.75 | NOTE | |
| r-release-linux-x86_64 | 0.1.2 | 1.88 | 30.10 | 31.98 | NOTE | |
| r-release-macos-arm64 | 0.1.2 | NOTE | ||||
| r-release-macos-x86_64 | 0.1.2 | 2.00 | 44.00 | 46.00 | NOTE | |
| r-release-windows-x86_64 | 0.1.2 | 4.00 | 48.00 | 52.00 | NOTE | |
| r-oldrel-macos-arm64 | 0.1.2 | OK | ||||
| r-oldrel-macos-x86_64 | 0.1.2 | 2.00 | 47.00 | 49.00 | OK | |
| r-oldrel-windows-x86_64 | 0.1.2 | 4.00 | 56.00 | 60.00 | OK |
Version: 0.1.2
Check: DESCRIPTION meta-information
Result: NOTE
Missing dependency on R >= 4.1.0 because package code uses the pipe
|> or function shorthand \(...) syntax added in R 4.1.0.
File(s) using such syntax:
‘network.Rd’ ‘types.Rd’
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64
Version: 0.1.2
Check: examples
Result: ERROR
Running examples in ‘envvar-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: envvar_get_url
> ### Title: Environment variables for internet and network-related values
> ### Aliases: envvar_get_url envvar_get_ipaddress
>
> ### ** Examples
>
>
> # Get a URL value and ensure that it is https
> envvar_set("TEST_URL" = "https://google.com:80/?a=1&b=2")
> envvar_get_url("TEST_URL", validate = \(x) x$scheme == "https")
<httr2_url> https://google.com:80/?a=1&b=2
* scheme: https
* hostname: google.com
* port: 80
* path: /
* query:
* a: 1
* b: 2
>
> # Get an IP address value and ensure that it is IPv4
> envvar_set("TEST_HOST" = "192.168.1.15")
> envvar_get_ipaddress("TEST_HOST", validate = ipaddress::is_ipv4)
Error in envvar_get_ipaddress("TEST_HOST", validate = ipaddress::is_ipv4) :
The package "ipaddress" is required.
Calls: envvar_get_ipaddress -> <Anonymous>
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc