Opam_ci_check.RevdepsAnalyze and test the reverse dependencies of a package.
val list_revdeps :
?opam_repo:string ->
?transitive:bool ->
?use_default_root:bool ->
string ->
OpamPackage.t listlist_revdeps pkg is a list of the transitive reverse dependencies of pkg.
Examples:
let transitive_revdeps =
list_revdeps "cmdliner.1.1.1"
let nontransitive_revdeps =
list_revdeps ~transitive:false "cmdliner.1.1.1"
let nontransitive_revdeps_from_custom_repo =
list_revdeps ~opam_repo:"/path/to/my/repo" ~transitive:false "cmdliner.1.1.1"find_latest_versions packages is a list containing just the latest versions of each package in packages.
module Display : sig ... endDisplay information about reverse dependencies