package opam-monorepo

  1. Overview
  2. Docs
Assemble and manage fully vendored Dune repositories

Install

Dune Dependency

Authors

Maintainers

Sources

opam-monorepo-0.3.0.tbz
sha256=a1ef33a349e38bc25ee248dd03366f14388eaff17e172d324e870334af0e428f
sha512=c7bcf724086d124a0ace9875aa050f49eb3c8b14b5ad5232b221cd074c4acd91637623ec446c976c229e144bc61eb661121849902a0b454f4df03601f769396c

Description

The opam monorepo plugin provides a convenient interface to bridge the opam package manager with having a local copy of all the source code required to build a project using the dune build tool.

Published: 20 Apr 2022

README

README.md

opam-monorepo

opam-monorepo is an opam plugin designed to assemble standalone dune workspaces with your projects and all of their dependencies, letting you build it all from scratch using only dune and ocaml.

Documentation on opam-monorepo is available in the repository as well as available online.

Installation

You can simply install it via opam in your current switch by running:

opam install opam-monorepo

Note that once it is installed you can invoke it as an opam command:

opam monorepo <subcommand> ...

Note that opam knows about available plugins and will offer you to install opam-monorepo if you try to invoke it without having installed it beforehand.

Usage

The basic usage for opam-monorepo is to start by running the following command from the root of your project:

opam monorepo lock

This will generate a project-wide lockfile under <project-name>.opam.locked that contains:

  • The full list of your direct and transitive opam dependencies, according to the specifications in the .opam files at your project's root, with hard version constraints ({= <version>) in the depends field.

  • A pin-depends field filled with reproducible pins, either to tarballs or to git repos with an explicit commit hash for all the above dependencies, except for ocaml, dune and any virtual opam package.

  • A few extra fields meant to be interprated by opam monorepo

This lockfile can then be consumed by the following command:

opam monorepo pull

which will fetch the sources of all the locked dependencies into a duniverse/ folder at the root of your project, marking them as vendored_dirs (see dune's documentation) so that dune will only build the artifacts you need from that folder.

From that point you should be able to run dune build and dune runtest as you normally would and build your entire project from scratch!

opam monorepo lock

It's important to note that opam monorepo lock will only succeed if all of your non-virtual and non "base" dependencies (e.g. ocaml or dune) build with dune (i.e. directly depend on the dune or jbuilder packages). If that's not the case the solver will report which packages don't build with dune.

We maintain a separate opam repository with dune ports of commonly used opam packages. If you have non-dune dependencies it is advised that you add this repository before running opam monorepo lock. You can do so by running the following command:

opam repository add dune-universe git+https://github.com/dune-universe/opam-overlays.git

Note that if it is not setup, the plugin will warn you.

The lock command takes your global and switch's opam configurations into account, meaning any opam repository or pins you set up will be picked up by the solver when resolving the full set of your project's dependencies.

The generated lockfile is meant to be compatible with opam in such a way that running opam install . --locked should give you the same versions you would using opam monorepo pull in a reproducible way (i.e. independently of any change that might have happened on the upstream opam-repository) thanks to the pin-depends. You can use that property to your advantage by allowing one to choose between a "monorepo" or regular opam workflow depending on the situation.

You can also exclude packages from the set of packages to be vendored by opam-monorepo. To do so you can specify an additional field in your Opam file:

x-opam-monorepo-opam-provided: ["ocamlformat" "patdiff"]

This will exclude the packages from the list of packages opam-monorepo will pull, so they can be installed via opam manually.

opam monorepo pull

The pull command fetches the sources using the URLs in the lockfile. It benefits from the Opam cache but its outcome does not depend on your opam configuration.

Monorepo projects

If you wish to use opam-monorepo to manage your dependencies, we suggest that you git version the lockfile but not the content of the duniverse/.

If you use ocaml-ci and have an opam-monorepo lockfile at the root of your project, it will detect it is an opam-monorepo project and start a specific pipeline in which it will use the plugin to assemble a dune workspace with your dependencies rather than installing them through opam.

Dependencies (3)

  1. conf-pkg-config
  2. ocaml >= "4.10.0" & < "5.0"
  3. dune >= "2.9"

Dev Dependencies (1)

  1. odoc with-doc

Used by (1)

  1. mirage >= "4.0.0~beta1" & != "4.0.0" & < "4.2.0"

Conflicts (2)

  1. dune-configurator = "2.7.0" | = "2.7.1"
  2. dune-build-info = "2.7.0" | = "2.7.1"