this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #19162 from rjbou/opam-publish-opam-opam-admin-opam-client-opam-core-opam-devel-opam-format-opam-installer-opam-repository-opam-solver-opam-state.2.0.9

8 packages from ocaml/opam at 2.0.9

authored by

Kate and committed by
GitHub
aad0f94d b379545f

+331 -2
+42
packages/opam-client/opam-client.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Client library for opam 2.0" 3 + description: 4 + "Actions on the opam root, switches, installations, and front-end." 5 + maintainer: "opam-devel@lists.ocaml.org" 6 + authors: [ 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 + ] 18 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19 + homepage: "https://opam.ocaml.org" 20 + bug-reports: "https://github.com/ocaml/opam/issues" 21 + depends: [ 22 + "ocaml" {>= "4.02.3"} 23 + "opam-state" {= version} 24 + "opam-solver" {= version} 25 + "extlib" {>= "1.7.3" & < "1.7.8"} 26 + "opam-repository" {= version} 27 + "re" {>= "1.7.2"} 28 + "cmdliner" {>= "1.0.0"} 29 + "dune" {>= "1.2.1"} 30 + ] 31 + build: [ 32 + ["./configure" "--disable-checks" "--prefix" prefix] 33 + ["dune" "build" "-p" name "-j" jobs] 34 + ] 35 + dev-repo: "git+https://github.com/ocaml/opam.git" 36 + url { 37 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 38 + checksum: [ 39 + "md5=abb7d7788f290d81d73b924b307b4bef" 40 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 41 + ] 42 + }
+42
packages/opam-core/opam-core.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Core library for opam 2.0" 3 + description: 4 + "Small standard library extensions, and generic system interaction modules used by opam." 5 + maintainer: "opam-devel@lists.ocaml.org" 6 + authors: [ 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 + ] 18 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19 + homepage: "https://opam.ocaml.org" 20 + bug-reports: "https://github.com/ocaml/opam/issues" 21 + depends: [ 22 + "ocaml" {>= "4.02.3"} 23 + "base-unix" 24 + "base-bigarray" 25 + "ocamlgraph" 26 + "re" {>= "1.5.0"} 27 + "dune" {>= "1.2.1"} 28 + "cppo" {build & >= "1.1.0"} 29 + ] 30 + conflicts: ["extlib-compat"] 31 + build: [ 32 + ["./configure" "--disable-checks" "--prefix" prefix] 33 + ["dune" "build" "-p" name "-j" jobs] 34 + ] 35 + dev-repo: "git+https://github.com/ocaml/opam.git" 36 + url { 37 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 38 + checksum: [ 39 + "md5=abb7d7788f290d81d73b924b307b4bef" 40 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 41 + ] 42 + }
+50
packages/opam-devel/opam-devel.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Bootstrapped development binary for opam 2.0" 3 + description: 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." 5 + maintainer: "opam-devel@lists.ocaml.org" 6 + authors: [ 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 + ] 18 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19 + homepage: "https://opam.ocaml.org" 20 + bug-reports: "https://github.com/ocaml/opam/issues" 21 + depends: [ 22 + "ocaml" {>= "4.02.3"} 23 + "opam-client" {= version} 24 + "cmdliner" {>= "1.0.0"} 25 + "dune" {>= "1.2.1"} 26 + "conf-openssl" {with-test} 27 + "conf-diffutils" {with-test} 28 + "conf-which" {with-test} 29 + ] 30 + build: [ 31 + ["./configure" "--disable-checks" "--prefix" prefix] 32 + [make "%{name}%.install"] 33 + [make "tests"] {with-test} 34 + ] 35 + post-messages: 36 + """\ 37 + The 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 38 + sudo cp %{lib}%/%{name}%/opam /usr/local/bin 39 + 40 + If you just want to give it a try without altering your current installation, you could use instead: 41 + alias opam2="OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\"""" 42 + {success} 43 + dev-repo: "git+https://github.com/ocaml/opam.git" 44 + url { 45 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 46 + checksum: [ 47 + "md5=abb7d7788f290d81d73b924b307b4bef" 48 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 49 + ] 50 + }
+4 -2
packages/opam-dune-lint/opam-dune-lint.0.1/opam
··· 1 1 opam-version: "2.0" 2 + license: "ISC" 2 3 synopsis: "Ensure dune and opam dependencies are consistent" 3 4 description: 4 5 "opam-dune-lint checks that all ocamlfind libraries listed as dune dependencies have corresponding opam dependencies listed in the opam files. If not, it offers to add them (either to your opam files, or to your dune-project if you're generating your opam files from that)." ··· 15 16 "ocaml" {>= "4.11.0"} 16 17 "ocamlfind" 17 18 "bos" 18 - "fmt" 19 - "opam-state" 19 + "fmt" {>= "0.8.7"} 20 + "opam-state" {< "2.1.0~~" & opam-version < "2.1"} 21 + "opam-state" {>= "2.1.0~~" & opam-version >= "2.1"} 20 22 "opam-format" 21 23 "odoc" {with-doc} 22 24 ]
+38
packages/opam-format/opam-format.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Format library for opam 2.0" 3 + description: "Definition of opam datastructures and its file interface." 4 + maintainer: "opam-devel@lists.ocaml.org" 5 + authors: [ 6 + "Vincent Bernardoff <vb@luminar.eu.org>" 7 + "Raja Boujbel <raja.boujbel@ocamlpro.com>" 8 + "Roberto Di Cosmo <roberto@dicosmo.org>" 9 + "Thomas Gazagnaire <thomas@gazagnaire.org>" 10 + "Louis Gesbert <louis.gesbert@ocamlpro.com>" 11 + "Fabrice Le Fessant <Fabrice.Le_fessant@inria.fr>" 12 + "Anil Madhavapeddy <anil@recoil.org>" 13 + "Guillem Rieu <guillem.rieu@ocamlpro.com>" 14 + "Ralf Treinen <ralf.treinen@pps.jussieu.fr>" 15 + "Frederic Tuong <tuong@users.gforge.inria.fr>" 16 + ] 17 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 18 + homepage: "https://opam.ocaml.org" 19 + bug-reports: "https://github.com/ocaml/opam/issues" 20 + depends: [ 21 + "ocaml" {>= "4.02.3"} 22 + "opam-core" {= version} 23 + "opam-file-format" {>= "2.0.0~rc2"} 24 + "re" {>= "1.5.0"} 25 + "dune" {>= "1.2.1"} 26 + ] 27 + build: [ 28 + ["./configure" "--disable-checks" "--prefix" prefix] 29 + ["dune" "build" "-p" name "-j" jobs] 30 + ] 31 + dev-repo: "git+https://github.com/ocaml/opam.git" 32 + url { 33 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 34 + checksum: [ 35 + "md5=abb7d7788f290d81d73b924b307b4bef" 36 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 37 + ] 38 + }
+40
packages/opam-installer/opam-installer.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Installation of files to a prefix, following opam conventions" 3 + description: """\ 4 + opam-installer is a small tool that can read *.install files, as defined by opam [1], and execute them to install or remove package files without going through opam. 5 + 6 + [1] http://opam.ocaml.org/doc/2.0/Manual.html#lt-pkgname-gt-install""" 7 + maintainer: "opam-devel@lists.ocaml.org" 8 + authors: [ 9 + "Vincent Bernardoff <vb@luminar.eu.org>" 10 + "Raja Boujbel <raja.boujbel@ocamlpro.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 + ] 20 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 21 + homepage: "https://opam.ocaml.org" 22 + bug-reports: "https://github.com/ocaml/opam/issues" 23 + depends: [ 24 + "ocaml" {>= "4.02.3"} 25 + "opam-format" {= version} 26 + "cmdliner" {>= "1.0.0"} 27 + "dune" {>= "1.2.1"} 28 + ] 29 + build: [ 30 + ["./configure" "--disable-checks" "--prefix" prefix] 31 + ["dune" "build" "-p" name "-j" jobs] 32 + ] 33 + dev-repo: "git+https://github.com/ocaml/opam.git" 34 + url { 35 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 36 + checksum: [ 37 + "md5=abb7d7788f290d81d73b924b307b4bef" 38 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 39 + ] 40 + }
+37
packages/opam-repository/opam-repository.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Repository library for opam 2.0" 3 + description: 4 + "This library includes repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends." 5 + maintainer: "opam-devel@lists.ocaml.org" 6 + authors: [ 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 + ] 18 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19 + homepage: "https://opam.ocaml.org" 20 + bug-reports: "https://github.com/ocaml/opam/issues" 21 + depends: [ 22 + "ocaml" {>= "4.02.3"} 23 + "opam-format" {= version} 24 + "dune" {>= "1.2.1"} 25 + ] 26 + build: [ 27 + ["./configure" "--disable-checks" "--prefix" prefix] 28 + ["dune" "build" "-p" name "-j" jobs] 29 + ] 30 + dev-repo: "git+https://github.com/ocaml/opam.git" 31 + url { 32 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 33 + checksum: [ 34 + "md5=abb7d7788f290d81d73b924b307b4bef" 35 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 36 + ] 37 + }
+41
packages/opam-solver/opam-solver.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Solver library for opam 2.0" 3 + description: 4 + "Solver and Cudf interaction. This library is based on the Cudf and Dose libraries, and handles calls to the external solver from opam." 5 + maintainer: "opam-devel@lists.ocaml.org" 6 + authors: [ 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 + ] 18 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19 + homepage: "https://opam.ocaml.org" 20 + bug-reports: "https://github.com/ocaml/opam/issues" 21 + depends: [ 22 + "ocaml" {>= "4.02.3"} 23 + "opam-format" {= version} 24 + "mccs" {>= "1.1+9"} 25 + "dose3" {>= "5" & < "6.0"} 26 + "cudf" {>= "0.7"} 27 + "re" {>= "1.5.0"} 28 + "dune" {>= "1.2.1"} 29 + ] 30 + build: [ 31 + ["./configure" "--disable-checks" "--prefix" prefix] 32 + ["dune" "build" "-p" name "-j" jobs] 33 + ] 34 + dev-repo: "git+https://github.com/ocaml/opam.git" 35 + url { 36 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 37 + checksum: [ 38 + "md5=abb7d7788f290d81d73b924b307b4bef" 39 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 40 + ] 41 + }
+37
packages/opam-state/opam-state.2.0.9/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "State library for opam 2.0" 3 + description: 4 + "Handling of the ~/.opam hierarchy, repository and switch states." 5 + maintainer: "opam-devel@lists.ocaml.org" 6 + authors: [ 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 + ] 18 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 19 + homepage: "https://opam.ocaml.org" 20 + bug-reports: "https://github.com/ocaml/opam/issues" 21 + depends: [ 22 + "ocaml" {>= "4.02.3"} 23 + "opam-repository" {= version} 24 + "dune" {>= "1.2.1"} 25 + ] 26 + build: [ 27 + ["./configure" "--disable-checks" "--prefix" prefix] 28 + ["dune" "build" "-p" name "-j" jobs] 29 + ] 30 + dev-repo: "git+https://github.com/ocaml/opam.git" 31 + url { 32 + src: "https://github.com/ocaml/opam/archive/2.0.9.tar.gz" 33 + checksum: [ 34 + "md5=abb7d7788f290d81d73b924b307b4bef" 35 + "sha512=0d8ee19ac0f3df9de4fd9cfa8daab1f7228f090f5e2e7e26bedf24d8c2ab377aade95048f2d7cd9ee9dbbe738729e26dc99f41f730fa2252df74953362464a22" 36 + ] 37 + }