this repo has no description
1opam-version: "2.0" 2synopsis: "Bootstrapped development binary for opam 2.1" 3description: 4 "This package compiles (bootstraps) opam. For consistency and safety of the installation, the binaries are not installed into the PATH, but into lib/opam-devel, from where the user can manually install them system-wide." 5maintainer: "opam-devel@lists.ocaml.org" 6authors: [ 7 "Vincent Bernardoff <vb@luminar.eu.org>" 8 "Raja Boujbel <raja.boujbel@ocamlpro.com>" 9 "Roberto Di Cosmo <roberto@dicosmo.org>" 10 "Thomas Gazagnaire <thomas@gazagnaire.org>" 11 "Louis Gesbert <louis.gesbert@ocamlpro.com>" 12 "Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>" 13 "Anil Madhavapeddy <anil@recoil.org>" 14 "Guillem Rieu <guillem.rieu@ocamlpro.com>" 15 "Ralf Treinen <ralf.treinen@pps.jussieu.fr>" 16 "Frederic Tuong <tuong@users.gforge.inria.fr>" 17] 18license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19homepage: "https://opam.ocaml.org" 20bug-reports: "https://github.com/ocaml/opam/issues" 21depends: [ 22 "ocaml" {>= "4.02.3"} 23 "opam-client" {= version} 24 "cmdliner" {>= "0.9.8"} 25 "dune" {>= "1.11.0"} 26 "conf-openssl" {with-test} 27 "conf-diffutils" {with-test} 28] 29build: [ 30 ["./configure" "--disable-checks" "--prefix" prefix] 31 [make "%{name}%.install"] 32] 33post-messages: 34 """\ 35The development version of opam has been successfully compiled into %{lib}%/%{name}%. You should not run it from there, please install the binaries to your PATH, e.g. with 36 sudo cp %{lib}%/%{name}%/opam /usr/local/bin 37 38If you just want to give it a try without altering your current installation, you could use instead: 39 alias opam2="OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\"""" 40 {success} 41dev-repo: "git+https://github.com/ocaml/opam.git" 42url { 43 src: "https://github.com/ocaml/opam/archive/refs/tags/2.1.3.tar.gz" 44 checksum: [ 45 "md5=e55ac537cd9ab3d987454633fa439fa4" 46 "sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc" 47 ] 48}