-
Notifications
You must be signed in to change notification settings - Fork 1.2k
8 packages from ocaml/opam at 2.5.0~rc1 #28928
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kit-ty-kate
wants to merge
2
commits into
ocaml:master
Choose a base branch
from
kit-ty-kate:opam-publish-opam-client.2.5.0-rc1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Client library for opam 2.5" | ||
| description: | ||
| "Actions on the opam root, switches, installations, and front-end." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-state" {= version} | ||
| "opam-solver" {= version} | ||
| "base64" {>= "3.1.0"} | ||
| "opam-repository" {= version} | ||
| "re" {>= "1.10.0"} | ||
| "dune" {>= "2.8.0"} | ||
| ] | ||
| conflicts: [ | ||
| "extlib" {< "1.7.8"} | ||
| "extlib-compat" | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Core library for opam 2.5" | ||
| description: | ||
| "Small standard library extensions, and generic system interaction modules used by opam." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "base-unix" | ||
| "ocamlgraph" | ||
| "re" {>= "1.9.0"} | ||
| "dune" {>= "2.8.0"} | ||
| "sha" {>= "1.13"} | ||
| "jsonm" | ||
| "swhid_core" | ||
| "patch" {>= "3.0.0"} | ||
| "uutf" | ||
| (("host-system-mingw" {os = "win32" & os-distribution != "cygwinports"} & | ||
| "conf-mingw-w64-gcc-i686" | ||
| {os = "win32" & os-distribution != "cygwinports"} & | ||
| "conf-mingw-w64-gcc-x86_64" | ||
| {os = "win32" & os-distribution != "cygwinports"}) | | ||
| ("host-system-msvc" {os = "win32" & os-distribution != "cygwinports"} & | ||
| "conf-msvc32" {os = "win32" & os-distribution != "cygwinports"} & | ||
| "conf-msvc64" {os = "win32" & os-distribution != "cygwinports"})) | ||
| ] | ||
| conflicts: ["extlib-compat"] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Bootstrapped development binary for opam 2.5" | ||
| description: | ||
| "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." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-client" {= version} | ||
| "dune" {>= "2.8.0"} | ||
| "conf-openssl" {with-test} | ||
| "conf-diffutils" {with-test} | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| [make "%{name}%.install"] | ||
| ] | ||
| post-messages: | ||
| """\ | ||
| 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 | ||
| sudo cp %{lib}%/%{name}%/opam /usr/local/bin | ||
|
|
||
| If you just want to give it a try without altering your current installation, you could use instead: | ||
| alias opam2="OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\"""" | ||
| {success} | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Format library for opam 2.5" | ||
| description: "Definition of opam datastructures and its file interface." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-core" {= version} | ||
| "opam-file-format" {>= "2.1.4"} | ||
| "re" {>= "1.9.0"} | ||
| "dune" {>= "2.8.0"} | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Installation of files to a prefix, following opam conventions" | ||
| description: """\ | ||
| 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. | ||
|
|
||
| [1] http://opam.ocaml.org/doc/2.0/Manual.html#lt-pkgname-gt-install""" | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-format" {= version} | ||
| "dune" {>= "2.8.0"} | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Repository library for opam 2.5" | ||
| description: | ||
| "This library includes repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-format" {= version} | ||
| "patch" {>= "3.0.0"} | ||
| "dune" {>= "2.8.0"} | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "Solver library for opam 2.5" | ||
| description: | ||
| "Solver and Cudf interaction. This library is based on the Cudf and Dose libraries, and handles calls to the external solver from opam." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-format" {= version} | ||
| "mccs" {>= "1.1+17"} | ||
| "dose3" {>= "6.1"} | ||
| "cudf" {>= "0.7"} | ||
| "re" {>= "1.9.0"} | ||
| "dune" {>= "2.8.0"} | ||
| "opam-0install-cudf" {>= "0.5.0"} | ||
| ] | ||
| depopts: ["z3"] | ||
| conflicts: [ | ||
| "z3" {< "4.8.4"} | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| opam-version: "2.0" | ||
| synopsis: "State library for opam 2.5" | ||
| description: | ||
| "Handling of the ~/.opam hierarchy, repository and switch states." | ||
| maintainer: "[email protected]" | ||
| authors: [ | ||
| "David Allsopp <[email protected]>" | ||
| "Vincent Bernardoff <[email protected]>" | ||
| "Raja Boujbel <[email protected]>" | ||
| "Kate Deplaix <[email protected]>" | ||
| "Roberto Di Cosmo <[email protected]>" | ||
| "Thomas Gazagnaire <[email protected]>" | ||
| "Louis Gesbert <[email protected]>" | ||
| "Fabrice Le Fessant <[email protected]>" | ||
| "Anil Madhavapeddy <[email protected]>" | ||
| "Guillem Rieu <[email protected]>" | ||
| "Ralf Treinen <[email protected]>" | ||
| "Frederic Tuong <[email protected]>" | ||
| ] | ||
| license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" | ||
| homepage: "https://opam.ocaml.org" | ||
| bug-reports: "https://github.com/ocaml/opam/issues" | ||
| depends: [ | ||
| "ocaml" {>= "4.08.0"} | ||
| "opam-repository" {= version} | ||
| "re" {>= "1.9.0"} | ||
| "spdx_licenses" {>= "1.0.0"} | ||
| "patch" {>= "3.0.0"} | ||
| "dune" {>= "2.8.0"} | ||
| ] | ||
| available: opam-version >= "2.1.0" | ||
| flags: avoid-version | ||
| build: [ | ||
| ["./configure" "--disable-checks" "--prefix" prefix] | ||
| ["dune" "build" "-p" name "-j" jobs] | ||
| ] | ||
| dev-repo: "git+https://github.com/ocaml/opam.git" | ||
| url { | ||
| src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-rc1.tar.gz" | ||
| checksum: [ | ||
| "md5=fc3e769ecf6acee13e249d6d1ab52b60" | ||
| "sha512=b57536f4530ed03c8f3cc8cf814af9a2c53b159f58fc1b50be93295f6eb8d53faeef3d916e1a3f5137d35468af15fc2f59a2f8bda5c574532ab523fd945b9781" | ||
| ] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.