I am trying to create a new universe for the public R packages in Akoya Biosciences · GitHub. It is failing the “sync registry” step with this error (repeated for each package in my repo): ERROR updating phenoptr from https://github.com/akoyabio/phenoptr (could not find function "as.person")
Thanks, I’l try updating the tiff package. Does utils::person also have to be fully qualified?
Both person and as.person are allowed as unqualified names by R CMD CHECK. It would be nice if r-universe did not have more stringent requirements than CMD CHECK…
@AB-Kent the problem appears in the DESCRIPTION of the tiff package, which is listed under ‘remotes’ in phenoptr. Perhaps you can simply remove the remote, because a newer version of tiff is already on CRAN.
@richfitz Thanks I’ll try to make this more clear.
The issue here is that the maintainer email address gets parsed from the description in an unsafe place where secret tokens are in the environment, so we have to prevent code injection. So I am evaluating authors@R in a little sandbox with only c() and person() but not as.person(). I have to study as.person() a bit to see if it is safe against code injection.
@jeroenooms OK, I didn’t realize that {tiff} had made it to CRAN, that’s great news and I’ll update the dependency. {rtree} uses person() so that should be OK.