Here is the full DESCRIPTION file (note I'm working from the branch install-remotes
here, not from the main
branch):
Package: KuskoHarvEst
Title: Tools for Producing In-season Estimates of Salmon Harvest and Effort Occurring in Short-Duration Subsistence Harvest Opportunities in the Lower Kuskokwim River
Version: 1.2.4
Authors@R:
person(given = "Ben",
family = "Staton",
role = c("aut", "cre"),
email = "bstaton.qes@gmail.com",
comment = c(ORCID = "0000-0002-2342-3482"))
Description: This package contains two main types of functionality to facilitate harvest and effort estimation.
First, there are "core" functions that handle data processing and estimation tasks. However, many potential users
of this package are not R programmers, and so the second type of functionality is to enable interactive and automated
creation of estimates and reports. The intent is to place the emphasis of the analyst on the raw data files
rather than on the intracacies of estimation and automated reporting.
License: use_mit_license()
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Depends:
R (>= 4.1.0)
Imports:
shiny (>= 0.13),
miniUI (>= 0.1.1),
shinyTime,
rstudioapi (>= 0.5),
lubridate,
stringr (>= 1.3.1),
reshape2,
shinyjs,
DT,
rmarkdown,
knitr,
kableExtra,
tinytex,
latex2exp,
yaml,
settings
Remotes: github::bstaton1/KuskoHarvUtils
Here is the complete output of running devtools::install_github("bstaton1/KuskoHarvEst", ref = "install-remotes")
:
ββ R CMD build βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β checking for file 'C:\Users\bstaton\AppData\Local\Temp\RtmpOEJ81L\remotes2d885c6b7888\bstaton1-KuskoHarvEst-e8e252f/DESCRIPTION' ...
β preparing 'KuskoHarvEst': (375ms)
β checking DESCRIPTION meta-information ...
β checking for LF line-endings in source and make files and shell scripts
β checking for empty or unneeded directories
Omitted 'LazyData' from DESCRIPTION
β building 'KuskoHarvEst_1.2.4.tar.gz'
Installing package into βC:/Users/bstaton/AppData/Local/R/win-library/4.3β
(as βlibβ is unspecified)
* installing *source* package 'KuskoHarvEst' ...
** using staged installation
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
*** copying figures
** building package indices
** testing if installed package can be loaded from temporary location
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (KuskoHarvEst)
It installs 'KuskoHarvEst' without issue as instructed and as expected, but the remote dependency is not found, as I would expect it to be:
> packageVersion("KuskoHarvEst")
[1] β1.2.4β
> packageVersion("KuskoHarvUtils")
Error in packageVersion("KuskoHarvUtils") :
there is no package called βKuskoHarvUtilsβ
I really appreciate your help in figuring this out!