this repo has no description
1opam-version: "2.0" 2synopsis: "Bootstrapped development binary for opam 2.3" 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 "David Allsopp <david@tarides.com>" 8 "Vincent Bernardoff <vb@luminar.eu.org>" 9 "Raja Boujbel <raja.boujbel@ocamlpro.com>" 10 "Kate Deplaix <kit-ty-kate@outlook.com>" 11 "Roberto Di Cosmo <roberto@dicosmo.org>" 12 "Thomas Gazagnaire <thomas@gazagnaire.org>" 13 "Louis Gesbert <louis.gesbert@ocamlpro.com>" 14 "Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>" 15 "Anil Madhavapeddy <anil@recoil.org>" 16 "Guillem Rieu <guillem.rieu@ocamlpro.com>" 17 "Ralf Treinen <ralf.treinen@pps.jussieu.fr>" 18 "Frederic Tuong <tuong@users.gforge.inria.fr>" 19] 20license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 21homepage: "https://opam.ocaml.org" 22bug-reports: "https://github.com/ocaml/opam/issues" 23depends: [ 24 "ocaml" {>= "4.08.0"} 25 "opam-client" {= version} 26 "cmdliner" {>= "1.1.0"} 27 "dune" {>= "2.8.0"} 28 "conf-openssl" {with-test} 29 "conf-diffutils" {with-test} 30] 31available: opam-version >= "2.1.0" 32flags: avoid-version 33build: [ 34 ["./configure" "--disable-checks" "--prefix" prefix] 35 [make "%{name}%.install"] 36] 37post-messages: 38 """\ 39The 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 40 sudo cp %{lib}%/%{name}%/opam /usr/local/bin 41 42If you just want to give it a try without altering your current installation, you could use instead: 43 alias opam2="OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\"""" 44 {success} 45dev-repo: "git+https://github.com/ocaml/opam.git" 46url { 47 src: "https://github.com/ocaml/opam/archive/refs/tags/2.3.0-rc1.tar.gz" 48 checksum: [ 49 "md5=a0a5b8373dc493e0f53c82891081f27b" 50 "sha512=e098bb61ab77bfc33900be65f58fe9d2c62a3ea608be7f8cd115f0ec5a355207571936f2130f75b16de02a4d18d246d4cd15d51a79c208635520829f21987fe6" 51 ] 52} 53x-maintained: false