I cannot tell whether this will be helpful or not. It looks to me like the
warning occurs when one of your dependencies uses BiocInstaller. You could
create a database of all available packages
chooseCRANmirror()
chooseBioCmirror()
db = available.packages()
find the installation dependencies of your package dependencies
flds = c("Depends", "Imports", "LinkingTo")
pkgs = read.dcf("DESCRIPTION", flds)[, flds]
pkgs = trimws(unlist(strsplit(pkgs, ","), use.names = FALSE))
pkgs = pkgs[!is.na(pkgs)]
and discover which references BiocInstaller
deps = tools::package_dependencies(pkgs, db, recursive = TRUE)
unlist(deps)["BiocInstaller" %in% unlist(deps)]
But actually when I run this with version 2.2 of your package I don't see
a dependency on BiocInstaller (other than in your own package).
Martin
?On 11/11/18, 9:55 PM, "R-package-devel on behalf of dhamma pal" <
r-package-devel-bounces at r-project.org on behalf of dhammapalb at uohyd.ac.in>
wrote:
The latest version donot use BIOCINSTALLER or bioclite, still getting a
warning.
Errors are not detected in the current version, i.e. 2.3 version of
maGUI.
But errors are getting reported in the earlier version i.e., 2.2 which
is
not the making the current version to pass through the CRAN. I have
tried
to submit the corrected package with version 2.2 to rectify the
errors,
but getting overriden error. Now how to ugrade maGUI to 2.3?
Thanks in advance.
---------- Forwarded message ---------
From: <ligges at statistik.tu-dortmund.de>
Date: Thu, 8 Nov 2018, 1:12 pm
Subject: [CRAN-pretest-archived] CRAN submission maGUI 2.3
To: <dhammapalb at uohyd.ac.in>
Cc: <CRAN-submissions at r-project.org>
Dear maintainer,
package maGUI_2.3.tar.gz does not pass the incoming checks
automatically,
please see the following pre-tests:
Windows: <
https://win-builder.r-project.org/incoming_pretest/maGUI_2.3_20181108_081501/Windows/00check.log
The files will be removed after roughly 7 days.
No strong reverse dependencies to be checked.
Best regards,
CRAN teams' auto-check service
Flavor: r-devel-linux-x86_64-debian-gcc, r-devel-windows-ix86+x86_64
Check: CRAN incoming feasibility, Result: NOTE
Maintainer: 'Dhammapal Bharne <dhammapalb at uohyd.ac.in>'
New submission
Package was archived on CRAN
CRAN repository db overrides:
X-CRAN-Comment: Archived on 2018-11-01 as check warnings were not
corrected despite a month's notice.
Needed change for BioC 3.8
Flavor: r-devel-windows-ix86+x86_64
Check: whether package can be installed, Result: WARNING
Found the following significant warnings:
Warning: 'BiocInstaller' and 'biocLite()' are deprecated, use the
'BiocManager' CRAN
See 'd:/RCompile/CRANincoming/R-devel/maGUI.Rcheck/00install.out' for
details.
[[alternative HTML version deleted]]