this repo has no description
1opam-version: "2.0" 2synopsis: "Core library for opam 2.2" 3description: 4 "Small standard library extensions, and generic system interaction modules used by opam." 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" & (os != "win32" | < "5.0")} 25 "base-unix" 26 "ocamlgraph" 27 "re" {>= "1.9.0"} 28 "dune" {>= "2.0.0"} 29 "sha" {>= "1.13"} 30 "jsonm" 31 "swhid_core" 32 "uutf" 33] 34conflicts: ["extlib-compat"] 35build: [ 36 ["./configure" "--disable-checks" "--prefix" prefix] 37 ["dune" "build" "-p" name "-j" jobs] 38] 39dev-repo: "git+https://github.com/ocaml/opam.git" 40url { 41 src: "https://github.com/ocaml/opam/archive/refs/tags/2.2.0-beta1.tar.gz" 42 checksum: [ 43 "md5=355f8a98d8e775cc9e1ae1c28feaee3e" 44 "sha512=8ed9310238c058eb3ae3218037418fe107e7227870b7b88484f2921cc2765488a142f90154094b5c155a4311ff6f231ca27d61a4e05538fe3fb0962a198bb9b1" 45 ] 46} 47available: opam-version >= "2.1" 48flags: avoid-version 49x-maintained: false