Skip to content

Commit 598a03c

Browse files
authored
Merge pull request #21976 from rjbou/opam-publish-opam-opam-admin-opam-client-opam-core-opam-devel-opam-format-opam-installer-opam-repository-opam-solver-opam-state.2.1.3
8 packages from ocaml/opam at 2.1.3
2 parents 191fb77 + d1779ed commit 598a03c

File tree

8 files changed

+329
-0
lines changed
  • packages
    • opam-client/opam-client.2.1.3
    • opam-core/opam-core.2.1.3
    • opam-devel/opam-devel.2.1.3
    • opam-format/opam-format.2.1.3
    • opam-installer/opam-installer.2.1.3
    • opam-repository/opam-repository.2.1.3
    • opam-solver/opam-solver.2.1.3
    • opam-state/opam-state.2.1.3

8 files changed

+329
-0
lines changed
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: "Client library for opam 2.1"
3+
description:
4+
"Actions on the opam root, switches, installations, and front-end."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Roberto Di Cosmo <[email protected]>"
10+
"Thomas Gazagnaire <[email protected]>"
11+
"Louis Gesbert <[email protected]>"
12+
"Fabrice Le Fessant <[email protected]>"
13+
"Anil Madhavapeddy <[email protected]>"
14+
"Guillem Rieu <[email protected]>"
15+
"Ralf Treinen <[email protected]>"
16+
"Frederic Tuong <[email protected]>"
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.9.0"}
28+
"cmdliner" {>= "1.0.0"}
29+
"dune" {>= "1.11.0"}
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/refs/tags/2.1.3.tar.gz"
38+
checksum: [
39+
"md5=e55ac537cd9ab3d987454633fa439fa4"
40+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
41+
]
42+
}
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: "Core library for opam 2.1"
3+
description:
4+
"Small standard library extensions, and generic system interaction modules used by opam."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Roberto Di Cosmo <[email protected]>"
10+
"Thomas Gazagnaire <[email protected]>"
11+
"Louis Gesbert <[email protected]>"
12+
"Fabrice Le Fessant <[email protected]>"
13+
"Anil Madhavapeddy <[email protected]>"
14+
"Guillem Rieu <[email protected]>"
15+
"Ralf Treinen <[email protected]>"
16+
"Frederic Tuong <[email protected]>"
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.9.0"}
27+
"dune" {>= "1.11.0"}
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/refs/tags/2.1.3.tar.gz"
38+
checksum: [
39+
"md5=e55ac537cd9ab3d987454633fa439fa4"
40+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
41+
]
42+
}
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
opam-version: "2.0"
2+
synopsis: "Bootstrapped development binary for opam 2.1"
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+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Roberto Di Cosmo <[email protected]>"
10+
"Thomas Gazagnaire <[email protected]>"
11+
"Louis Gesbert <[email protected]>"
12+
"Fabrice Le Fessant <[email protected]>"
13+
"Anil Madhavapeddy <[email protected]>"
14+
"Guillem Rieu <[email protected]>"
15+
"Ralf Treinen <[email protected]>"
16+
"Frederic Tuong <[email protected]>"
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" {>= "0.9.8"}
25+
"dune" {>= "1.11.0"}
26+
"conf-openssl" {with-test}
27+
"conf-diffutils" {with-test}
28+
]
29+
build: [
30+
["./configure" "--disable-checks" "--prefix" prefix]
31+
[make "%{name}%.install"]
32+
]
33+
post-messages:
34+
"""\
35+
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
36+
sudo cp %{lib}%/%{name}%/opam /usr/local/bin
37+
38+
If you just want to give it a try without altering your current installation, you could use instead:
39+
alias opam2="OPAMROOT=~/.opam2 %{lib}%/%{name}%/opam\""""
40+
{success}
41+
dev-repo: "git+https://github.com/ocaml/opam.git"
42+
url {
43+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.1.3.tar.gz"
44+
checksum: [
45+
"md5=e55ac537cd9ab3d987454633fa439fa4"
46+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
47+
]
48+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis: "Format library for opam 2.1"
3+
description: "Definition of opam datastructures and its file interface."
4+
maintainer: "[email protected]"
5+
authors: [
6+
"Vincent Bernardoff <[email protected]>"
7+
"Raja Boujbel <[email protected]>"
8+
"Roberto Di Cosmo <[email protected]>"
9+
"Thomas Gazagnaire <[email protected]>"
10+
"Louis Gesbert <[email protected]>"
11+
"Fabrice Le Fessant <[email protected]>"
12+
"Anil Madhavapeddy <[email protected]>"
13+
"Guillem Rieu <[email protected]>"
14+
"Ralf Treinen <[email protected]>"
15+
"Frederic Tuong <[email protected]>"
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.1.4"}
24+
"re" {>= "1.9.0"}
25+
"dune" {>= "1.11.0"}
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/refs/tags/2.1.3.tar.gz"
34+
checksum: [
35+
"md5=e55ac537cd9ab3d987454633fa439fa4"
36+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
37+
]
38+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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+
"Vincent Bernardoff <[email protected]>"
10+
"Raja Boujbel <[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.02.3"}
25+
"opam-format" {= version}
26+
"cmdliner" {>= "0.9.8"}
27+
"dune" {>= "1.11.0"}
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/refs/tags/2.1.3.tar.gz"
36+
checksum: [
37+
"md5=e55ac537cd9ab3d987454633fa439fa4"
38+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
39+
]
40+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "Repository library for opam 2.1"
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+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Roberto Di Cosmo <[email protected]>"
10+
"Thomas Gazagnaire <[email protected]>"
11+
"Louis Gesbert <[email protected]>"
12+
"Fabrice Le Fessant <[email protected]>"
13+
"Anil Madhavapeddy <[email protected]>"
14+
"Guillem Rieu <[email protected]>"
15+
"Ralf Treinen <[email protected]>"
16+
"Frederic Tuong <[email protected]>"
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.11.0"}
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/refs/tags/2.1.3.tar.gz"
33+
checksum: [
34+
"md5=e55ac537cd9ab3d987454633fa439fa4"
35+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
36+
]
37+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
opam-version: "2.0"
2+
synopsis: "Solver library for opam 2.1"
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+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Roberto Di Cosmo <[email protected]>"
10+
"Thomas Gazagnaire <[email protected]>"
11+
"Louis Gesbert <[email protected]>"
12+
"Fabrice Le Fessant <[email protected]>"
13+
"Anil Madhavapeddy <[email protected]>"
14+
"Guillem Rieu <[email protected]>"
15+
"Ralf Treinen <[email protected]>"
16+
"Frederic Tuong <[email protected]>"
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+
"dune" {>= "1.11.0"}
28+
]
29+
depopts: ["z3" "opam-0install-cudf"]
30+
conflicts: [
31+
"z3" {< "4.8.4"}
32+
"opam-0install-cudf" {< "0.4"}
33+
]
34+
build: [
35+
["./configure" "--disable-checks" "--prefix" prefix]
36+
["dune" "build" "-p" name "-j" jobs]
37+
]
38+
dev-repo: "git+https://github.com/ocaml/opam.git"
39+
url {
40+
src: "https://github.com/ocaml/opam/archive/refs/tags/2.1.3.tar.gz"
41+
checksum: [
42+
"md5=e55ac537cd9ab3d987454633fa439fa4"
43+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
44+
]
45+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "State library for opam 2.1"
3+
description:
4+
"Handling of the ~/.opam hierarchy, repository and switch states."
5+
maintainer: "[email protected]"
6+
authors: [
7+
"Vincent Bernardoff <[email protected]>"
8+
"Raja Boujbel <[email protected]>"
9+
"Roberto Di Cosmo <[email protected]>"
10+
"Thomas Gazagnaire <[email protected]>"
11+
"Louis Gesbert <[email protected]>"
12+
"Fabrice Le Fessant <[email protected]>"
13+
"Anil Madhavapeddy <[email protected]>"
14+
"Guillem Rieu <[email protected]>"
15+
"Ralf Treinen <[email protected]>"
16+
"Frederic Tuong <[email protected]>"
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.11.0"}
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/refs/tags/2.1.3.tar.gz"
33+
checksum: [
34+
"md5=e55ac537cd9ab3d987454633fa439fa4"
35+
"sha512=040e4f58f93e962ff422617ce0d35ed45dd86921a9aac3505914c33dd942d0e5e5771e7e1774046504f9aa84f32bc4fbd6ac7720fbea862d48bf1ca29e02cefc"
36+
]
37+
}

0 commit comments

Comments
 (0)