package opam-publish
Install
Dune Dependency
Authors
Maintainers
Sources
md5=0010fbddde64c1299a632dfef69f09ab
sha512=22c485311c86e90d57e901b696775e820cb20e5dee069d7f6c5db4d67a8f5fbd3a39d8c0f2fef0b53daab7c8a206168e61d671320457693b07f0de18383175e2
Description
opam-publish automates publishing packages to package repositories: it checks that the
opam file is complete using opam lint
, verifies and adds the archive URL and its
checksum and files a GitHub pull request for merging it.
Published: 06 Aug 2024
README
opam-publish
A tool to ease contributions to opam repositories.
opam-publish
takes package definition files of your projects, and submits them to opam package repositories (ocaml/opam-repository by default).
Prerequisites
This version is for opam 2.0 or higher, and should not be used with repositories in older formats. A Github account is required. opam repository is cloned over ssh, you need to have your ssh keys registered in your Github account.
Usage
Basic case, assuming your project is on Github
The same works for initial publications, new releases, and updates.
The following should be run from the source directory of your project
Make sure you have an
opam
file, orNAME.opam
files at the root of your projectCreate a tag:
git tag -a TAG; git push origin TAG
Run
opam publish
. This will install the tool if required.
You will be guided through the rest (creating a Github token the first time, reviewing the patch, etc.)
Additional possibilities
If your project is not on Github, you can specify the archive URL on the command-line.
If the opam files are not in the archive, or outdated, you can specify them on the command-line, or specify a directory where to look for them (e.g. opam publish URL .
).
Submitting to other repositories is possible, as long as they are on Github. See the --repo
option.
Updating already published packages using opam-publish is generally prohibited as it usually implies a change in the target archive via the git tag, which would break everyone trying to install the package. Please refer to opam-repository's documentation for more informations about how to update or fix packages.
See opam publish --help
for more options.
Dependencies (9)
-
github-unix
>= "4.3.2"
-
github
>= "4.3.2"
-
opam-state
>= "2.2.0"
-
opam-format
>= "2.2.0"
-
opam-core
>= "2.2.0"
-
ocaml
>= "4.03.0"
- lwt_ssl
-
dune
>= "1.0"
-
cmdliner
>= "1.1.0"
Dev Dependencies
None
Used by (3)
-
dune-release
< "0.2.0"
-
publish
>= "0.3.4+transition"
-
spectrum
< "0.2.0"
Conflicts (1)
-
ssl
= "0.5.6"