Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val name : OpamUrl.backend
val pull_url :
?cache_dir:OpamTypes.dirname ->
OpamTypes.dirname ->
OpamHash.t option ->
OpamTypes.url ->
OpamTypes.filename option OpamTypes.download OpamProcess.job
pull_url local_dir checksum remote_url
pulls the contents of remote_url
into local_dir
.
Two kinds of results are allowed:
local_dir
and returned as Some filename
local_dir
have been synchronised with its own, and None
is returnedchecksum
can be used for retrieval but is NOT checked by this function.
val fetch_repo_update :
OpamTypes.repository_name ->
?cache_dir:OpamTypes.dirname ->
OpamTypes.dirname ->
OpamTypes.url ->
OpamRepositoryBackend.update OpamProcess.job
pull_repo_update
fetches the remote update from url
to the local repository at dirname
, but does not apply it, allowing for further verifications. The file or directory returned is always temporary and should be cleaned up by the caller.
val repo_update_complete :
OpamTypes.dirname ->
OpamTypes.url ->
unit OpamProcess.job
repo_update_complete dirname url
finalizes the update of the repository after verification of the patch returned from pull_repo_update
with Update_patch file
is applied. Version control systems, e.g. Mercurial, that track the state of the working directory automatically use this to update internal caches.
val revision : OpamTypes.dirname -> OpamTypes.version option OpamProcess.job
Return the (optional) revision of a given repository. Only useful for VCS backends. Is not expected to work with pull_repo_update
, which doesn't update the VCS commit information.
val sync_dirty :
OpamTypes.dirname ->
OpamTypes.url ->
OpamTypes.filename option OpamTypes.download OpamProcess.job
Like pull_url
, except for locally-bound version control backends, where it should get the latest, uncommited source.