Skip to content

Commit fa8c506

Browse files
authored
Merge pull request #28748 from rjbou/opam-publish-opam-client.2.5.0-alpha1
8 packages from ocaml/opam at 2.5.0~alpha1
2 parents aa11ffc + 6643b4b commit fa8c506

File tree

8 files changed

+381
-0
lines changed
  • packages
    • opam-client/opam-client.2.5.0~alpha1
    • opam-core/opam-core.2.5.0~alpha1
    • opam-devel/opam-devel.2.5.0~alpha1
    • opam-format/opam-format.2.5.0~alpha1
    • opam-installer/opam-installer.2.5.0~alpha1
    • opam-repository/opam-repository.2.5.0~alpha1
    • opam-solver/opam-solver.2.5.0~alpha1
    • opam-state/opam-state.2.5.0~alpha1

8 files changed

+381
-0
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
opam-version: "2.0"
2+
synopsis: "Client library for opam 2.5"
3+
description:
4+
"Actions on the opam root, switches, installations, and front-end."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"David Allsopp <[email protected]>"
8+
"Vincent Bernardoff <[email protected]>"
9+
"Raja Boujbel <[email protected]>"
10+
"Kate Deplaix <[email protected]>"
11+
"Roberto Di Cosmo <[email protected]>"
12+
"Thomas Gazagnaire <[email protected]>"
13+
"Louis Gesbert <[email protected]>"
14+
"Fabrice Le Fessant <[email protected]>"
15+
"Anil Madhavapeddy <[email protected]>"
16+
"Guillem Rieu <[email protected]>"
17+
"Ralf Treinen <[email protected]>"
18+
"Frederic Tuong <[email protected]>"
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.08.0"}
25+
"opam-state" {= version}
26+
"opam-solver" {= version}
27+
"base64" {>= "3.1.0"}
28+
"opam-repository" {= version}
29+
"re" {>= "1.10.0"}
30+
"cmdliner" {>= "1.1.0" & < "2.0.0"}
31+
"dune" {>= "2.8.0"}
32+
]
33+
conflicts: [
34+
"extlib" {< "1.7.8"}
35+
"extlib-compat"
36+
]
37+
available: opam-version >= "2.1.0"
38+
flags: avoid-version
39+
build: [
40+
["./configure" "--disable-checks" "--prefix" prefix]
41+
["dune" "build" "-p" name "-j" jobs]
42+
]
43+
dev-repo: "git+https://github.com/ocaml/opam.git"
44+
url {
45+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-alpha1.tar.gz"
46+
checksum: [
47+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
48+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
49+
]
50+
}
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
opam-version: "2.0"
2+
synopsis: "Core library for opam 2.5"
3+
description:
4+
"Small standard library extensions, and generic system interaction modules used by opam."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"David Allsopp <[email protected]>"
8+
"Vincent Bernardoff <[email protected]>"
9+
"Raja Boujbel <[email protected]>"
10+
"Kate Deplaix <[email protected]>"
11+
"Roberto Di Cosmo <[email protected]>"
12+
"Thomas Gazagnaire <[email protected]>"
13+
"Louis Gesbert <[email protected]>"
14+
"Fabrice Le Fessant <[email protected]>"
15+
"Anil Madhavapeddy <[email protected]>"
16+
"Guillem Rieu <[email protected]>"
17+
"Ralf Treinen <[email protected]>"
18+
"Frederic Tuong <[email protected]>"
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.08.0"}
25+
"base-unix"
26+
"ocamlgraph"
27+
"re" {>= "1.9.0"}
28+
"dune" {>= "2.8.0"}
29+
"sha" {>= "1.13"}
30+
"jsonm"
31+
"swhid_core"
32+
"patch" {>= "3.0.0"}
33+
"uutf"
34+
(("host-system-mingw" {os = "win32" & os-distribution != "cygwinports"} &
35+
"conf-mingw-w64-gcc-i686"
36+
{os = "win32" & os-distribution != "cygwinports"} &
37+
"conf-mingw-w64-gcc-x86_64"
38+
{os = "win32" & os-distribution != "cygwinports"}) |
39+
("host-system-msvc" {os = "win32" & os-distribution != "cygwinports"} &
40+
"conf-msvc32" {os = "win32" & os-distribution != "cygwinports"} &
41+
"conf-msvc64" {os = "win32" & os-distribution != "cygwinports"}))
42+
]
43+
conflicts: ["extlib-compat"]
44+
available: opam-version >= "2.1.0"
45+
flags: avoid-version
46+
build: [
47+
["./configure" "--disable-checks" "--prefix" prefix]
48+
["dune" "build" "-p" name "-j" jobs]
49+
]
50+
dev-repo: "git+https://github.com/ocaml/opam.git"
51+
url {
52+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-alpha1.tar.gz"
53+
checksum: [
54+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
55+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
56+
]
57+
}
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
opam-version: "2.0"
2+
synopsis: "Bootstrapped development binary for opam 2.5"
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: "[email protected]"
6+
authors: [
7+
"David Allsopp <[email protected]>"
8+
"Vincent Bernardoff <[email protected]>"
9+
"Raja Boujbel <[email protected]>"
10+
"Kate Deplaix <[email protected]>"
11+
"Roberto Di Cosmo <[email protected]>"
12+
"Thomas Gazagnaire <[email protected]>"
13+
"Louis Gesbert <[email protected]>"
14+
"Fabrice Le Fessant <[email protected]>"
15+
"Anil Madhavapeddy <[email protected]>"
16+
"Guillem Rieu <[email protected]>"
17+
"Ralf Treinen <[email protected]>"
18+
"Frederic Tuong <[email protected]>"
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.08.0"}
25+
"opam-client" {= version}
26+
"cmdliner" {>= "1.1.0" & < "2.0.0"}
27+
"dune" {>= "2.8.0"}
28+
"conf-openssl" {with-test}
29+
"conf-diffutils" {with-test}
30+
]
31+
available: opam-version >= "2.1.0"
32+
flags: avoid-version
33+
build: [
34+
["./configure" "--disable-checks" "--prefix" prefix]
35+
[make "%{name}%.install"]
36+
]
37+
post-messages:
38+
"""\
39+
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
40+
sudo cp %{lib}%/%{name}%/opam /usr/local/bin
41+
42+
If 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}
45+
dev-repo: "git+https://github.com/ocaml/opam.git"
46+
url {
47+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-alpha1.tar.gz"
48+
checksum: [
49+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
50+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
51+
]
52+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Format library for opam 2.5"
3+
description: "Definition of opam datastructures and its file interface."
4+
maintainer: "[email protected]"
5+
authors: [
6+
"David Allsopp <[email protected]>"
7+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Kate Deplaix <[email protected]>"
10+
"Roberto Di Cosmo <[email protected]>"
11+
"Thomas Gazagnaire <[email protected]>"
12+
"Louis Gesbert <[email protected]>"
13+
"Fabrice Le Fessant <[email protected]>"
14+
"Anil Madhavapeddy <[email protected]>"
15+
"Guillem Rieu <[email protected]>"
16+
"Ralf Treinen <[email protected]>"
17+
"Frederic Tuong <[email protected]>"
18+
]
19+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
20+
homepage: "https://opam.ocaml.org"
21+
bug-reports: "https://github.com/ocaml/opam/issues"
22+
depends: [
23+
"ocaml" {>= "4.08.0"}
24+
"opam-core" {= version}
25+
"opam-file-format" {>= "2.1.4"}
26+
"re" {>= "1.9.0"}
27+
"dune" {>= "2.8.0"}
28+
]
29+
available: opam-version >= "2.1.0"
30+
flags: avoid-version
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/refs/tags/2.5.0-alpha1.tar.gz"
38+
checksum: [
39+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
40+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
41+
]
42+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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: "[email protected]"
8+
authors: [
9+
"David Allsopp <[email protected]>"
10+
"Vincent Bernardoff <[email protected]>"
11+
"Raja Boujbel <[email protected]>"
12+
"Kate Deplaix <[email protected]>"
13+
"Roberto Di Cosmo <[email protected]>"
14+
"Thomas Gazagnaire <[email protected]>"
15+
"Louis Gesbert <[email protected]>"
16+
"Fabrice Le Fessant <[email protected]>"
17+
"Anil Madhavapeddy <[email protected]>"
18+
"Guillem Rieu <[email protected]>"
19+
"Ralf Treinen <[email protected]>"
20+
"Frederic Tuong <[email protected]>"
21+
]
22+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
23+
homepage: "https://opam.ocaml.org"
24+
bug-reports: "https://github.com/ocaml/opam/issues"
25+
depends: [
26+
"ocaml" {>= "4.08.0"}
27+
"opam-format" {= version}
28+
"cmdliner" {>= "0.9.8" & < "2.0.0"}
29+
"dune" {>= "2.8.0"}
30+
]
31+
available: opam-version >= "2.1.0"
32+
flags: avoid-version
33+
build: [
34+
["./configure" "--disable-checks" "--prefix" prefix]
35+
["dune" "build" "-p" name "-j" jobs]
36+
]
37+
dev-repo: "git+https://github.com/ocaml/opam.git"
38+
url {
39+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-alpha1.tar.gz"
40+
checksum: [
41+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
42+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
43+
]
44+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Repository library for opam 2.5"
3+
description:
4+
"This library includes repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"David Allsopp <[email protected]>"
8+
"Vincent Bernardoff <[email protected]>"
9+
"Raja Boujbel <[email protected]>"
10+
"Kate Deplaix <[email protected]>"
11+
"Roberto Di Cosmo <[email protected]>"
12+
"Thomas Gazagnaire <[email protected]>"
13+
"Louis Gesbert <[email protected]>"
14+
"Fabrice Le Fessant <[email protected]>"
15+
"Anil Madhavapeddy <[email protected]>"
16+
"Guillem Rieu <[email protected]>"
17+
"Ralf Treinen <[email protected]>"
18+
"Frederic Tuong <[email protected]>"
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.08.0"}
25+
"opam-format" {= version}
26+
"patch" {>= "3.0.0"}
27+
"dune" {>= "2.8.0"}
28+
]
29+
available: opam-version >= "2.1.0"
30+
flags: avoid-version
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/refs/tags/2.5.0-alpha1.tar.gz"
38+
checksum: [
39+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
40+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
41+
]
42+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
opam-version: "2.0"
2+
synopsis: "Solver library for opam 2.5"
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: "[email protected]"
6+
authors: [
7+
"David Allsopp <[email protected]>"
8+
"Vincent Bernardoff <[email protected]>"
9+
"Raja Boujbel <[email protected]>"
10+
"Kate Deplaix <[email protected]>"
11+
"Roberto Di Cosmo <[email protected]>"
12+
"Thomas Gazagnaire <[email protected]>"
13+
"Louis Gesbert <[email protected]>"
14+
"Fabrice Le Fessant <[email protected]>"
15+
"Anil Madhavapeddy <[email protected]>"
16+
"Guillem Rieu <[email protected]>"
17+
"Ralf Treinen <[email protected]>"
18+
"Frederic Tuong <[email protected]>"
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.08.0"}
25+
"opam-format" {= version}
26+
"mccs" {>= "1.1+17"}
27+
"dose3" {>= "6.1"}
28+
"cudf" {>= "0.7"}
29+
"re" {>= "1.9.0"}
30+
"dune" {>= "2.8.0"}
31+
"opam-0install-cudf" {>= "0.5.0"}
32+
]
33+
depopts: ["z3"]
34+
conflicts: [
35+
"z3" {< "4.8.4"}
36+
]
37+
available: opam-version >= "2.1.0"
38+
flags: avoid-version
39+
build: [
40+
["./configure" "--disable-checks" "--prefix" prefix]
41+
["dune" "build" "-p" name "-j" jobs]
42+
]
43+
dev-repo: "git+https://github.com/ocaml/opam.git"
44+
url {
45+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-alpha1.tar.gz"
46+
checksum: [
47+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
48+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
49+
]
50+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "State library for opam 2.5"
3+
description:
4+
"Handling of the ~/.opam hierarchy, repository and switch states."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"David Allsopp <[email protected]>"
8+
"Vincent Bernardoff <[email protected]>"
9+
"Raja Boujbel <[email protected]>"
10+
"Kate Deplaix <[email protected]>"
11+
"Roberto Di Cosmo <[email protected]>"
12+
"Thomas Gazagnaire <[email protected]>"
13+
"Louis Gesbert <[email protected]>"
14+
"Fabrice Le Fessant <[email protected]>"
15+
"Anil Madhavapeddy <[email protected]>"
16+
"Guillem Rieu <[email protected]>"
17+
"Ralf Treinen <[email protected]>"
18+
"Frederic Tuong <[email protected]>"
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.08.0"}
25+
"opam-repository" {= version}
26+
"re" {>= "1.9.0"}
27+
"spdx_licenses" {>= "1.0.0"}
28+
"patch" {>= "3.0.0"}
29+
"dune" {>= "2.8.0"}
30+
]
31+
available: opam-version >= "2.1.0"
32+
flags: avoid-version
33+
build: [
34+
["./configure" "--disable-checks" "--prefix" prefix]
35+
["dune" "build" "-p" name "-j" jobs]
36+
]
37+
dev-repo: "git+https://github.com/ocaml/opam.git"
38+
url {
39+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.5.0-alpha1.tar.gz"
40+
checksum: [
41+
"md5=a5ac5882814d72ec3f8ed512ca9a1fe6"
42+
"sha512=7c3a23798cad6a940f12154904144bdebf622a55c2a56e813a6bf3b180f5e5843971b21902c46547716836fd7e04c239256f8238db1b6ba049b878438fdad38f"
43+
]
44+
}

0 commit comments

Comments
 (0)