-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4425 from OCamlPro/208
2.0.8 backported commits
- Loading branch information
Showing
19 changed files
with
199 additions
and
106 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 development libraries (client)" | ||
description: """ | ||
Actions on the opam root, switches, installations, and front-end. | ||
""" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,16 +19,16 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"opam-state" {= "2.0.7"} | ||
"opam-solver" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-state" {= version} | ||
"opam-solver" {= version} | ||
"re" {>= "1.7.2"} | ||
"cmdliner" {>= "0.9.8"} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 development libraries (core)" | ||
description: """ | ||
Small standard library extensions, and generic system interaction modules used by opam. | ||
""" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,12 +19,13 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"ocaml" {>= "4.02.3"} | ||
"base-unix" | ||
"base-bigarray" | ||
"ocamlgraph" | ||
|
@@ -29,4 +34,3 @@ depends: [ | |
"cppo" {build} | ||
] | ||
conflicts: "extlib-compat" | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 bootstrapped binary" | ||
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: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,14 +19,15 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
[make "tests"] {with-test} | ||
] | ||
build-test: [make "tests"] | ||
depends: [ | ||
"opam-client" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-client" {= version} | ||
"cmdliner" {>= "0.9.8"} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
|
@@ -34,4 +39,3 @@ If you just want to give it a try without altering your current installation, yo | |
alias opam2=\"OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\"" | ||
{success} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 development libraries (format)" | ||
description: """ | ||
Definition of opam datastructures and its file interface. | ||
""" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,14 +19,14 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"opam-core" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-core" {= version} | ||
"opam-file-format" {>= "2.0.0~rc2" & <= "2.1.0"} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
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: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,14 +21,14 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"opam-format" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-format" {= version} | ||
"cmdliner" {>= "0.9.8"} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 development libraries (repository)" | ||
description: """ | ||
This library includes repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends. | ||
""" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,13 +19,13 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"opam-format" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-format" {= version} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 development libraries (solver)" | ||
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: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,16 +19,16 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"opam-format" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-format" {= version} | ||
"mccs" {>= "1.1+9"} | ||
"dose3" {>= "5"} | ||
"cudf" {>= "0.7"} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
opam-version: "1.2" | ||
version: "2.0.7" | ||
opam-version: "2.0" | ||
version: "2.0.8" | ||
synopsis: "opam 2.0 development libraries (state)" | ||
description: """ | ||
Handling of the ~/.opam hierarchy, repository and switch states. | ||
""" | ||
maintainer: "[email protected]" | ||
authors: [ | ||
"Vincent Bernardoff <[email protected]>" | ||
|
@@ -15,13 +19,13 @@ authors: [ | |
] | ||
homepage: "https://opam.ocaml.org/" | ||
bug-reports: "https://github.com/ocaml/opam/issues" | ||
dev-repo: "https://github.com/ocaml/opam.git" | ||
dev-repo: "git+https://github.com/ocaml/opam.git" | ||
build: [ | ||
["./configure" "--disable-checks" "--prefix" prefix] | ||
[make "%{name}%.install"] | ||
["dune" "build" "-p" name "-j" jobs] | ||
] | ||
depends: [ | ||
"opam-repository" {= "2.0.7"} | ||
"ocaml" {>= "4.02.3"} | ||
"opam-repository" {= version} | ||
"dune" {build & >= "1.2.1"} | ||
] | ||
available: ocaml-version >= "4.02.3" |
This file contains 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
set -ue | ||
|
||
OCAMLV=4.04.1 | ||
OPAMV=2.0.7 | ||
OPAMV=2.0.8 | ||
OPAM_REPO=https://opam.ocaml.org/2.0 | ||
DEBUG= | ||
MAKESELF= | ||
|
Oops, something went wrong.