Contributions under the form of new packages, issue reports and pull requests to fix and enhance the quality of packages are always welcome. Thanks for your time and involvement.
Table of content:
There are several ways to add a new package to opam-repository.
You can either use a tool such as dune-release
or opam-publish
, or open a PR manually.
Each ones have their strengths and weaknesses. For example:
dune-release
is a tool more focused into helping people do their whole release process from start to finish for them. To that end it:- helps with tagging
- parses (and enforces a format, can be good or bad) for the changelog, to put it in the tag
- creates the github release with that information
- builds, run tests, lint
- uploads the documentation
- creates and uploads a separate archive (also has an option to include the git submodules)
- works only if your project is on GitHub
- doesn’t support force-pushed tags
opam-publish
is a more malleable tool focused on publishing. To that end it:- works for any type of projects (you can just use a custom archive as an argument)
- simpler to use than dune-release
- more focused tool so you should encounter less issues and resistance but it’s more manual
- only handles the opam linting and publishing
- you can also open a PR manually:
- this one gives you the most freedom. It is only recommended for experienced users
- this is however currently the only way to fix packages (as opposed to adding packages). See the appropriate section below
We'll cover each ones in the following subsections:
if you encounter any issues, please read dune-release's README
First, make sure your project is using dune and is hosted on GitHub.
Then, make sure you’ve forked opam-repository on GitHub. If not go to https://github.com/ocaml/opam-repository/fork
Then, create a new file in ~/.config/dune/release.yml
with the content as indicated below, change <username>
by your local username and <github-user>
by your own github username:
remote: [email protected]:<github-username>/opam-repository.git
local: /home/<username>/.cache/dune/opam-repository/
Then, you can tag the release using:
dune-release tag
Once done, you can simply call:
dune release
If all goes well this should create the Release on GitHub and open the PR to publish the package on opam-repository.
For any subsequent releases only the last two steps are necessary.
if you encounter any issues, please read opam-publish's README
Once you have done your release and have an archive available publicly on the internet, simply call:
opam-publish <url>
This will open the PR to publish the package on opam-repository.
For other options, please refer to opam-publish --help
An opam repository is a tree-like structure of directories and files as follow:
./
|- packages/
|- pkgname/
| |- pkgname.2.0/
| |- opam
|- another-pkgname/
|- another-pkgname.1.0.0/
| |- opam
|- another-pkgname.1.0.1/
|- opam
|- ...
So to add a package, simply create a directory with your package name (pkgname) and version
mkdir -p packages/pkgname/pkgname.version/
once done, copy the opam file for said package into the newly created directory.
Edit that copied opam file by removing redundant or forbidden fields such as name
, version
, pin-depends
if present, as well as adding or editing the url
section as follow:
url {
src: "https://a.publicly-accessible.url/your-archive.tar.gz"
checksum: [
"sha256=the-sha256-hash-of-your-archive"
"sha512=the-sha512-hash-of-your-archive"
]
}
we recommend using more than one checksum and at least sha256 or stronger. Opam currently supports only md5, sha256 and sha512.
Optionally you might want to integrate external files (such as patches). You will need to host them on your server, or https://gist.github.com, or https://github.com/ocaml/opam-source-archives.
Add the file you uploaded to the extra-source section of the opam file as follow:
extra-source "the-filename" {
src: "https://my-server/my-file"
checksum: [
"sha256=the-checksum-for-my-file"
]
}
If you like to have this file being applied as a patch to the source tree after unpacking, you also need to specify in the opam file:
patches: [ "the-filename" ]
If you don't specify it as patches
, the file will be copied to the source directory after unpacking - and be available when building the package.
Once all that is done, you need to create a new git branch, commit your change, push it to your own fork
git switch -c release-yourpkg-version
git add packages/yourpkg/yourpkg.version/
git commit -pm "Release yourpkg.version"
git remote add your-github-handle [email protected]:your-github-handle/opam-repository.git
git push your-github-handle release-yourpkg-version
and open a PR on opam-repository on GitHub. Congratulations!
For more technical information about opam files, please read the opam manual
Packages are fixed as soon as they show up as broken in opam-repository CI or in the repository issues, if the opam-repository maintainers have time. If, as an external contributor, you are willing to help out, you can send a PR to fix the packages that are broken. This is extremely helpful.
There are several types of fixes:
- Changes to the metadata (e.g.
homepage
,synopsis
, …) are simple, usually harmless and easy to do and get merged. - Changes to the dependencies or availibility require some scrutiny from the opam-repository maintainers to verify that the new constraints are correct and do not break existing working installations.
- Changes to the way the package is built (e.g. changes to the build rules, addition of patches, …) require a lot more scrutiny from the opam-repository maintainers and maybe a new revision.
- Changes to the source archive(s) is prohibited but in the case where there is no other choice and the checksum is not the same, the difference with the original must be negligable.
PSA: if the PR envisioned is large or involved, please ping the maintainers beforehand.
IMPORTANT: If you are maintaining a package that you want to fix, never change the source archive pointed by a package that has already been merged in opam-repository. This would otherwise break anyone who is trying to install it and the archive's checksum would change which renders the installation impossible. Sending a PR in opam-repository that change this checksum is prohibited (see wiki/Policies). Instead, if the already released version is broken in some way you can send a PR making it available: false
and make a new point-release. If this is really too complicated or impossible, you can also send a patch.
Revision versions are packages whose version is of the form <version>-<revision>
with the revision number typically starting at 1.
They typically provide a slightly modified version of an original release.
For example pkg.1.0.0
is not maintained anymore (be it this specific version or the package as a whole), and someone would like to provide a patch to fix something that some people might rely on even if it might be a buggy behaviour. In this case the package is duplicated into the original version (left untouched) and the revision with the fix. This way, if the fix broke someone's setup they case still use the original version.
To fix packages, patches might sometimes be useful. This can be given to a package through the patches field, and added through the extra-source section.
As a rule of thumb, unless urgent, the patch should go through upstream first and only if the maintainer is not responding in a reasonable timeframe, we can then think about including the patch in opam-repository, the focus should be for upstream to do a new release.
As an external contributor looking to patch a package, whose maintainer do not agree with it or is unresponsive, another solution could be to fork the project or ask the current maintainer to transfer the maintenance to you.
The current points of contact and the full list of maintainers is available in wiki/Governance. Informations about the infrastructure is available in wiki/Infrastructure-info.
Typically maintainers gather weekly to discuss ongoing topics, review PRs together and train maintainers in training. If you wish to help and become an opam-repository maintainer, you can send a message to the maintainers listed above and you will be invited to the next meeting in which they will explain how things work.
Maintainers enforce a certain number of policies applied on packages in opam-repository. You can read about them in wiki/Policies.
When you open a PR, a number of checks are done to verify that builds and runs correctly on a number of different platforms. You can read about how to deal with our CI (Continuous Integration) in wiki/How-to-deal-with-CI.