@grain/binaryen.ml 0.9.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- binaryen-archive/.gitignore +1 -0
- binaryen-archive/CHANGELOG.md +73 -0
- binaryen-archive/README.md +27 -3
- binaryen-archive/binaryen.opam +8 -8
- binaryen-archive/esy.lock/index.json +537 -460
- binaryen-archive/esy.lock/opam/{base.v0.14.1 → base.v0.14.2}/opam +4 -4
- binaryen-archive/esy.lock/opam/biniou.1.2.1/opam +1 -1
- binaryen-archive/esy.lock/opam/{cppo.1.6.7 → cppo.1.6.8}/opam +4 -6
- binaryen-archive/esy.lock/opam/{csexp.1.4.0 → csexp.1.5.1}/opam +11 -9
- binaryen-archive/esy.lock/opam/{dune-build-info.2.8.2 → dune-build-info.2.9.1}/opam +5 -5
- binaryen-archive/esy.lock/opam/{dune-configurator.2.8.2 → dune-configurator.2.9.1}/opam +5 -5
- binaryen-archive/esy.lock/opam/{dune.2.8.2 → dune.2.9.1}/opam +4 -4
- binaryen-archive/esy.lock/opam/easy-format.1.3.2/opam +1 -1
- binaryen-archive/esy.lock/opam/{fix.20201120 → fix.20211231}/opam +7 -5
- binaryen-archive/esy.lock/opam/js_of_ocaml-compiler.3.11.0/opam +54 -0
- binaryen-archive/esy.lock/opam/js_of_ocaml-ppx.3.11.0/opam +44 -0
- binaryen-archive/esy.lock/opam/js_of_ocaml.3.11.0/opam +45 -0
- binaryen-archive/esy.lock/opam/{menhir.20201216 → menhir.20211128}/opam +8 -6
- binaryen-archive/esy.lock/opam/{menhirLib.20201216 → menhirLib.20211128}/opam +8 -6
- binaryen-archive/esy.lock/opam/{menhirSdk.20201216 → menhirSdk.20211128}/opam +8 -6
- binaryen-archive/esy.lock/opam/ocaml-compiler-libs.v0.12.4/opam +39 -0
- binaryen-archive/esy.lock/opam/{ocaml-lsp-server.1.4.0 → ocaml-lsp-server.1.9.0}/opam +15 -12
- binaryen-archive/esy.lock/opam/{ocaml-migrate-parsetree.2.1.0 → ocaml-migrate-parsetree.2.3.0}/opam +13 -10
- binaryen-archive/esy.lock/opam/ocaml-version.3.4.0/opam +49 -0
- binaryen-archive/esy.lock/opam/ocamlbuild.0.14.0/opam +1 -1
- binaryen-archive/esy.lock/opam/{ocamlfind.1.8.1 → ocamlfind.1.9.1}/opam +19 -39
- binaryen-archive/esy.lock/opam/ocamlformat-rpc-lib.0.19.0/opam +40 -0
- binaryen-archive/esy.lock/opam/ocamlformat.0.18.0/opam +56 -0
- binaryen-archive/esy.lock/opam/{odoc.1.5.2 → odoc.1.5.3}/opam +12 -12
- binaryen-archive/esy.lock/opam/pp.1.1.2/opam +58 -0
- binaryen-archive/esy.lock/opam/ppx_derivers.1.2.1/opam +1 -1
- binaryen-archive/esy.lock/opam/ppx_yojson_conv_lib.v0.14.0/opam +2 -2
- binaryen-archive/esy.lock/opam/{ppxlib.0.21.0 → ppxlib.0.22.2}/opam +40 -32
- binaryen-archive/esy.lock/opam/{re.1.9.0 → re.1.10.3}/opam +8 -4
- binaryen-archive/esy.lock/opam/result.1.5/opam +2 -2
- binaryen-archive/esy.lock/opam/sexplib0.v0.14.0/opam +2 -2
- binaryen-archive/esy.lock/opam/spawn.v0.15.0/opam +56 -0
- binaryen-archive/esy.lock/opam/stdio.v0.14.0/opam +2 -2
- binaryen-archive/esy.lock/opam/{topkg.1.0.3 → topkg.1.0.4}/opam +18 -22
- binaryen-archive/esy.lock/opam/tyxml.4.5.0/opam +42 -0
- binaryen-archive/esy.lock/opam/uucp.14.0.0/opam +41 -0
- binaryen-archive/esy.lock/opam/{uuseg.13.0.0 → uuseg.14.0.0}/opam +22 -28
- binaryen-archive/esy.lock/opam/yojson.1.7.0/opam +1 -1
- binaryen-archive/esy.lock/overrides/{opam__s__ocamlfind_opam__c__1.8.1_opam_override/files/findlib-1.8.1.patch → opam__s__ocamlfind_opam__c__1.9.1_opam_override/files/findlib-1.9.1.patch} +0 -0
- binaryen-archive/esy.lock/overrides/{opam__s__ocamlfind_opam__c__1.8.1_opam_override → opam__s__ocamlfind_opam__c__1.9.1_opam_override}/package.json +1 -1
- binaryen-archive/js/binaryen.es5.js +5 -0
- binaryen-archive/js/dune +1 -6
- binaryen-archive/js/element_segment.ml +33 -0
- binaryen-archive/js/export.ml +37 -0
- binaryen-archive/js/expression.ml +935 -177
- binaryen-archive/js/function.ml +31 -0
- binaryen-archive/js/global.ml +29 -0
- binaryen-archive/js/import.ml +24 -0
- binaryen-archive/js/literal.ml +8 -4
- binaryen-archive/js/module.ml +42 -46
- binaryen-archive/js/op.ml +9 -78
- binaryen-archive/js/settings.ml +60 -0
- binaryen-archive/js/table.ml +20 -3
- binaryen-archive/js/type.ml +3 -0
- binaryen-archive/package.json +14 -20
- binaryen-archive/src/binaryen_stubs_exports.c +78 -0
- binaryen-archive/src/binaryen_stubs_expressions.c +1300 -0
- binaryen-archive/src/binaryen_stubs_features.c +7 -0
- binaryen-archive/src/binaryen_stubs_functions.c +78 -0
- binaryen-archive/src/binaryen_stubs_globals.c +63 -0
- binaryen-archive/src/binaryen_stubs_imports.c +29 -0
- binaryen-archive/src/binaryen_stubs_memory.c +1 -1
- binaryen-archive/src/binaryen_stubs_modules.c +0 -122
- binaryen-archive/src/binaryen_stubs_ops.c +19 -173
- binaryen-archive/src/binaryen_stubs_settings.c +145 -0
- binaryen-archive/src/binaryen_stubs_tables.c +121 -7
- binaryen-archive/src/binaryen_stubs_types.c +18 -0
- binaryen-archive/src/dune +5 -44
- binaryen-archive/src/element_segment.ml +13 -0
- binaryen-archive/src/export.ml +33 -0
- binaryen-archive/src/expression.ml +805 -76
- binaryen-archive/src/function.ml +18 -0
- binaryen-archive/src/global.ml +14 -0
- binaryen-archive/src/import.ml +12 -0
- binaryen-archive/src/literal.ml +2 -2
- binaryen-archive/src/module.ml +64 -38
- binaryen-archive/src/ocaml_helpers.c +0 -8
- binaryen-archive/src/ocaml_helpers.h +2 -3
- binaryen-archive/src/op.ml +18 -131
- binaryen-archive/src/settings.ml +45 -0
- binaryen-archive/src/table.ml +26 -4
- binaryen-archive/src/type.ml +2 -0
- binaryen-archive/test/config/dune +8 -0
- binaryen-archive/test/config/ocamlopt_flags.ml +16 -0
- binaryen-archive/test/dune +4 -0
- binaryen-archive/test/test.expected +38 -3
- binaryen-archive/test/test.ml +90 -18
- binaryen-archive/virtual/dune +2 -2
- binaryen-archive/virtual/element_segment.mli +11 -0
- binaryen-archive/virtual/export.mli +22 -0
- binaryen-archive/virtual/expression.mli +389 -34
- binaryen-archive/virtual/function.mli +16 -0
- binaryen-archive/virtual/global.mli +12 -0
- binaryen-archive/virtual/import.mli +8 -0
- binaryen-archive/virtual/literal.mli +2 -2
- binaryen-archive/virtual/module.mli +25 -27
- binaryen-archive/virtual/op.mli +9 -53
- binaryen-archive/virtual/settings.mli +35 -0
- binaryen-archive/virtual/table.mli +19 -2
- binaryen-archive/virtual/type.mli +2 -0
- binaryen-archive/esy.lock/opam/conf-m4.1/opam +0 -22
- binaryen-archive/esy.lock/opam/dot-merlin-reader.4.1/opam +0 -30
- binaryen-archive/esy.lock/opam/js_of_ocaml-compiler.3.9.1/opam +0 -40
- binaryen-archive/esy.lock/opam/js_of_ocaml-ppx.3.9.0/opam +0 -30
- binaryen-archive/esy.lock/opam/js_of_ocaml.3.9.0/opam +0 -31
- binaryen-archive/esy.lock/opam/ocaml-compiler-libs.v0.12.3/opam +0 -29
- binaryen-archive/esy.lock/opam/ocamlfind.1.8.1/files/ocaml-stub +0 -4
- binaryen-archive/esy.lock/opam/ocamlfind.1.8.1/files/ocamlfind.install +0 -6
- binaryen-archive/esy.lock/opam/ocamlformat.0.15.1/opam +0 -41
- binaryen-archive/esy.lock/opam/tyxml.4.4.0/opam +0 -47
- binaryen-archive/esy.lock/opam/uucp.13.0.0/opam +0 -44
- binaryen-archive/esy.lock/overrides/opam__s__conf_m4_opam__c__1_opam_override/package.json +0 -6
- binaryen-archive/js/features.ml +0 -27
- binaryen-archive/js/function_table.ml +0 -13
- binaryen-archive/src/binaryen_stubs_function_tables.c +0 -25
- binaryen-archive/src/config/dune +0 -8
- binaryen-archive/src/config/library_flags.ml +0 -16
- binaryen-archive/src/features.ml +0 -49
- binaryen-archive/src/function_table.ml +0 -6
- binaryen-archive/vendor/binaryen-c.h +0 -2647
- binaryen-archive/vendor/js/index.es5.js +0 -5
- binaryen-archive/vendor/linux/libbinaryen.a +0 -0
- binaryen-archive/vendor/linux/libbinaryen.so +0 -0
- binaryen-archive/vendor/macosx/libbinaryen.a +0 -0
- binaryen-archive/vendor/macosx/libbinaryen.dylib +0 -0
- binaryen-archive/vendor/mingw64/libbinaryen.a +0 -0
- binaryen-archive/vendor/mingw64/libbinaryen.dll +0 -0
- binaryen-archive/vendor/wasm-delegations.h +0 -85
- binaryen-archive/virtual/features.mli +0 -23
- binaryen-archive/virtual/function_table.mli +0 -4
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
maintainer: "Anil Madhavapeddy <anil@recoil.org>"
|
|
3
|
+
authors: "Anil Madhavapeddy <anil@recoil.org>"
|
|
4
|
+
license: "ISC"
|
|
5
|
+
tags: "org:ocamllabs"
|
|
6
|
+
homepage: "https://github.com/ocurrent/ocaml-version"
|
|
7
|
+
doc: "https://ocurrent.github.io/ocaml-version/doc"
|
|
8
|
+
bug-reports: "https://github.com/ocurrent/ocaml-version/issues"
|
|
9
|
+
depends: [
|
|
10
|
+
"ocaml" {>= "4.07.0"}
|
|
11
|
+
"dune" {>= "1.0"}
|
|
12
|
+
"alcotest" {with-test}
|
|
13
|
+
]
|
|
14
|
+
build: [
|
|
15
|
+
["dune" "subst"] {dev}
|
|
16
|
+
["dune" "build" "-p" name "-j" jobs]
|
|
17
|
+
]
|
|
18
|
+
dev-repo: "git+https://github.com/ocurrent/ocaml-version.git"
|
|
19
|
+
synopsis: "Manipulate, parse and generate OCaml compiler version strings"
|
|
20
|
+
description: """
|
|
21
|
+
This library provides facilities to parse version numbers of the OCaml
|
|
22
|
+
compiler, and enumerates the various official OCaml releases and configuration
|
|
23
|
+
variants.
|
|
24
|
+
|
|
25
|
+
OCaml version numbers are of the form `major.minor.patch+extra`, where the
|
|
26
|
+
`patch` and `extra` fields are optional. This library offers the following
|
|
27
|
+
functionality:
|
|
28
|
+
|
|
29
|
+
- Functions to parse and serialise OCaml compiler version numbers.
|
|
30
|
+
- Enumeration of official OCaml compiler version releases.
|
|
31
|
+
- Test compiler versions for a particular feature (e.g. the `bytes` type)
|
|
32
|
+
- [opam](https://opam.ocaml.org) compiler switch enumeration.
|
|
33
|
+
|
|
34
|
+
### Further information
|
|
35
|
+
|
|
36
|
+
- **Discussion:** Post on <https://discuss.ocaml.org/> with the `ocaml` tag under
|
|
37
|
+
the Ecosystem category.
|
|
38
|
+
- **Bugs:** <https://github.com/ocurrent/ocaml-version/issues>
|
|
39
|
+
- **Docs:** <http://docs.mirage.io/ocaml-version>
|
|
40
|
+
"""
|
|
41
|
+
url {
|
|
42
|
+
src:
|
|
43
|
+
"https://github.com/ocurrent/ocaml-version/releases/download/v3.4.0/ocaml-version-v3.4.0.tbz"
|
|
44
|
+
checksum: [
|
|
45
|
+
"sha256=d8c1beb5e8d8ebb7710b5f434ce66a3ec8b752b1e4d6ba87c4fe27452bdb8a25"
|
|
46
|
+
"sha512=215e5b0c4ea5fa5461cdc0fc81fbd84a2a319a246a19504d0a0abc8c891e252a9e41644356150a1dc25d56b3f7e084db7a0b15becab4e1339992e645fc3d8ef1"
|
|
47
|
+
]
|
|
48
|
+
}
|
|
49
|
+
x-commit-hash: "c535ad2f463664b31001888fc99495dd01632747"
|
|
@@ -3,7 +3,7 @@ maintainer: "Gabriel Scherer <gabriel.scherer@gmail.com>"
|
|
|
3
3
|
authors: ["Nicolas Pouillard" "Berke Durak"]
|
|
4
4
|
homepage: "https://github.com/ocaml/ocamlbuild/"
|
|
5
5
|
bug-reports: "https://github.com/ocaml/ocamlbuild/issues"
|
|
6
|
-
license: "LGPL-2.1-only
|
|
6
|
+
license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
|
|
7
7
|
doc: "https://github.com/ocaml/ocamlbuild/blob/master/manual/manual.adoc"
|
|
8
8
|
dev-repo: "git+https://github.com/ocaml/ocamlbuild.git"
|
|
9
9
|
build: [
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
2
|
synopsis: "A library manager for OCaml"
|
|
3
|
-
maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>"
|
|
4
|
-
authors: "Gerd Stolpmann <gerd@gerd-stolpmann.de>"
|
|
5
|
-
homepage: "http://projects.camlcity.org/projects/findlib.html"
|
|
6
|
-
bug-reports: "https://gitlab.camlcity.org/gerd/lib-findlib/issues"
|
|
7
|
-
dev-repo: "git+https://gitlab.camlcity.org/gerd/lib-findlib.git"
|
|
8
3
|
description: """
|
|
9
4
|
Findlib is a library manager for OCaml. It provides a convention how
|
|
10
5
|
to store libraries, and a file format ("META") to describe the
|
|
@@ -12,17 +7,22 @@ properties of libraries. There is also a tool (ocamlfind) for
|
|
|
12
7
|
interpreting the META files, so that it is very easy to use libraries
|
|
13
8
|
in programs and scripts.
|
|
14
9
|
"""
|
|
10
|
+
license: "MIT"
|
|
11
|
+
maintainer: "Thomas Gazagnaire <thomas@gazagnaire.org>"
|
|
12
|
+
authors: "Gerd Stolpmann <gerd@gerd-stolpmann.de>"
|
|
13
|
+
homepage: "http://projects.camlcity.org/projects/findlib.html"
|
|
14
|
+
bug-reports: "https://github.com/ocaml/ocamlfind/issues"
|
|
15
|
+
depends: [
|
|
16
|
+
"ocaml" {>= "4.00.0"}
|
|
17
|
+
]
|
|
18
|
+
depopts: ["graphics"]
|
|
15
19
|
build: [
|
|
16
20
|
[
|
|
17
21
|
"./configure"
|
|
18
|
-
"-bindir"
|
|
19
|
-
|
|
20
|
-
"-
|
|
21
|
-
lib
|
|
22
|
-
"-mandir"
|
|
23
|
-
man
|
|
24
|
-
"-config"
|
|
25
|
-
"%{lib}%/findlib.conf"
|
|
22
|
+
"-bindir" bin
|
|
23
|
+
"-sitelib" lib
|
|
24
|
+
"-mandir" man
|
|
25
|
+
"-config" "%{lib}%/findlib.conf"
|
|
26
26
|
"-no-custom"
|
|
27
27
|
"-no-camlp4" {!ocaml:preinstalled & ocaml:version >= "4.02.0"}
|
|
28
28
|
"-no-topfind" {ocaml:preinstalled}
|
|
@@ -31,34 +31,14 @@ build: [
|
|
|
31
31
|
[make "opt"] {ocaml:native}
|
|
32
32
|
]
|
|
33
33
|
install: [
|
|
34
|
-
[
|
|
35
|
-
"./configure"
|
|
36
|
-
"-bindir"
|
|
37
|
-
bin
|
|
38
|
-
"-sitelib"
|
|
39
|
-
lib
|
|
40
|
-
"-mandir"
|
|
41
|
-
man
|
|
42
|
-
"-config"
|
|
43
|
-
"%{lib}%/findlib.conf"
|
|
44
|
-
"-no-custom"
|
|
45
|
-
"-no-camlp4" {!ocaml:preinstalled & ocaml:version >= "4.02.0"}
|
|
46
|
-
"-no-topfind" {ocaml:preinstalled}
|
|
47
|
-
]
|
|
48
34
|
[make "install"]
|
|
49
35
|
["install" "-m" "0755" "ocaml-stub" "%{bin}%/ocaml"] {ocaml:preinstalled}
|
|
50
36
|
]
|
|
51
|
-
|
|
52
|
-
"ocaml" {>= "4.00.0" & < "4.13"}
|
|
53
|
-
"conf-m4" {build}
|
|
54
|
-
]
|
|
55
|
-
extra-files: [
|
|
56
|
-
["ocamlfind.install" "md5=06f2c282ab52d93aa6adeeadd82a2543"]
|
|
57
|
-
["ocaml-stub" "md5=181f259c9e0bad9ef523e7d4abfdf87a"]
|
|
58
|
-
]
|
|
37
|
+
dev-repo: "git+https://github.com/ocaml/ocamlfind.git"
|
|
59
38
|
url {
|
|
60
|
-
src: "http://download.camlcity.org/download/findlib-1.
|
|
61
|
-
checksum:
|
|
62
|
-
|
|
39
|
+
src: "http://download.camlcity.org/download/findlib-1.9.1.tar.gz"
|
|
40
|
+
checksum: [
|
|
41
|
+
"md5=65e6dc9b305ccbed1267275fe180f538"
|
|
42
|
+
"sha512=83a05f3e310fa7cabb0475c5525f7a87c1b6bc2dc5e39f094cabfb5d944a826a5581844ba00ec1a48dd96184eb9de3c4d1055cdddee2b83c700a2de5a6dc6f84"
|
|
43
|
+
]
|
|
63
44
|
}
|
|
64
|
-
depopts: ["graphics"]
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Auto-formatter for OCaml code (RPC mode)"
|
|
3
|
+
description:
|
|
4
|
+
"OCamlFormat is a tool to automatically format OCaml code in a uniform style. This package defines a RPC interface to OCamlFormat"
|
|
5
|
+
maintainer: ["OCamlFormat Team <ocamlformat-dev@lists.ocaml.org>"]
|
|
6
|
+
authors: ["Josh Berdine <jjb@fb.com>"]
|
|
7
|
+
license: "MIT"
|
|
8
|
+
homepage: "https://github.com/ocaml-ppx/ocamlformat"
|
|
9
|
+
bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues"
|
|
10
|
+
depends: [
|
|
11
|
+
"dune" {>= "2.8"}
|
|
12
|
+
"ocaml" {>= "4.08" & < "4.14"}
|
|
13
|
+
"csexp"
|
|
14
|
+
"sexplib0"
|
|
15
|
+
"odoc" {with-doc}
|
|
16
|
+
]
|
|
17
|
+
build: [
|
|
18
|
+
["dune" "subst"] {dev}
|
|
19
|
+
[
|
|
20
|
+
"dune"
|
|
21
|
+
"build"
|
|
22
|
+
"-p"
|
|
23
|
+
name
|
|
24
|
+
"-j"
|
|
25
|
+
jobs
|
|
26
|
+
"@install"
|
|
27
|
+
"@runtest" {with-test}
|
|
28
|
+
"@doc" {with-doc}
|
|
29
|
+
]
|
|
30
|
+
]
|
|
31
|
+
dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
|
|
32
|
+
url {
|
|
33
|
+
src:
|
|
34
|
+
"https://github.com/ocaml-ppx/ocamlformat/releases/download/0.19.0/ocamlformat-0.19.0.tbz"
|
|
35
|
+
checksum: [
|
|
36
|
+
"sha256=62fc46aae8f0a4a33ce7f8d7726d7109bff615ea6fcb50d1482f21d20ee50f46"
|
|
37
|
+
"sha512=408b3af533169f201d7492be869f8ae4acde5583e01693c586929f44b76d569d3d6d555bc056378743d7cb3bd8e11ebc9cbd178ca196bcb82db33127d14902f8"
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
x-commit-hash: "ba67af28ddca8718ef8816b2b0dc1e5b2f5e9591"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Auto-formatter for OCaml code"
|
|
3
|
+
description:
|
|
4
|
+
"OCamlFormat is a tool to automatically format OCaml code in a uniform style."
|
|
5
|
+
maintainer: ["OCamlFormat Team <ocamlformat-dev@lists.ocaml.org>"]
|
|
6
|
+
authors: ["Josh Berdine <jjb@fb.com>"]
|
|
7
|
+
license: "MIT"
|
|
8
|
+
homepage: "https://github.com/ocaml-ppx/ocamlformat"
|
|
9
|
+
bug-reports: "https://github.com/ocaml-ppx/ocamlformat/issues"
|
|
10
|
+
depends: [
|
|
11
|
+
"dune" {>= "2.8"}
|
|
12
|
+
"ocaml" {>= "4.08" & < "4.13"}
|
|
13
|
+
"ocaml-version" {>= "3.1.0"}
|
|
14
|
+
"alcotest" {with-test}
|
|
15
|
+
"base" {>= "v0.12.0" & < "v0.15"}
|
|
16
|
+
"base-unix"
|
|
17
|
+
"cmdliner"
|
|
18
|
+
"dune-build-info"
|
|
19
|
+
"fix"
|
|
20
|
+
"fpath"
|
|
21
|
+
"menhir" {>= "20180528"}
|
|
22
|
+
"menhirLib" {>= "20200624"}
|
|
23
|
+
"menhirSdk" {>= "20200624"}
|
|
24
|
+
"ocp-indent" {with-test}
|
|
25
|
+
"bisect_ppx" {dev & >= "2.5.0"}
|
|
26
|
+
"odoc" {>= "1.4.2" & < "2.0.0"}
|
|
27
|
+
"ppxlib" {>= "0.22.0" & < "0.23.0"}
|
|
28
|
+
"re" {>= "1.7.2"}
|
|
29
|
+
"stdio" {< "v0.15"}
|
|
30
|
+
"uuseg" {>= "10.0.0"}
|
|
31
|
+
"uutf" {>= "1.0.1"}
|
|
32
|
+
]
|
|
33
|
+
build: [
|
|
34
|
+
["dune" "subst"] {dev}
|
|
35
|
+
[
|
|
36
|
+
"dune"
|
|
37
|
+
"build"
|
|
38
|
+
"-p"
|
|
39
|
+
name
|
|
40
|
+
"-j"
|
|
41
|
+
jobs
|
|
42
|
+
"@install"
|
|
43
|
+
"@runtest" {with-test}
|
|
44
|
+
"@doc" {with-doc}
|
|
45
|
+
]
|
|
46
|
+
]
|
|
47
|
+
dev-repo: "git+https://github.com/ocaml-ppx/ocamlformat.git"
|
|
48
|
+
x-commit-hash: "3697f0f92854a681fd1156fe4f6fb97d060da1d8"
|
|
49
|
+
url {
|
|
50
|
+
src:
|
|
51
|
+
"https://github.com/ocaml-ppx/ocamlformat/releases/download/0.18.0/ocamlformat-0.18.0.tbz"
|
|
52
|
+
checksum: [
|
|
53
|
+
"sha256=981a44296485da6ca29ab2cd8c711270398e5e1d1624408ec403c0b0ea9fe114"
|
|
54
|
+
"sha512=d1cbd63e4b82ff2e9ec0c96a9305704d3eea3e978c703ef9d1244853d8aaea912ad9f934379eeddfc1a0468b1cb1c2dc39ecf452189f2a35fa1ae53aec10b277"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
@@ -12,7 +12,7 @@ authors: [
|
|
|
12
12
|
"Anton Bachin <antonbachin@yahoo.com>"
|
|
13
13
|
"Jon Ludlam <jon@recoil.org>"
|
|
14
14
|
]
|
|
15
|
-
maintainer: "
|
|
15
|
+
maintainer: "Jon Ludlam <jon@recoil.org>"
|
|
16
16
|
dev-repo: "git+https://github.com/ocaml/odoc.git"
|
|
17
17
|
|
|
18
18
|
synopsis: "OCaml documentation generator"
|
|
@@ -23,31 +23,31 @@ delimited with `(** ... *)`, and outputs HTML.
|
|
|
23
23
|
|
|
24
24
|
depends: [
|
|
25
25
|
"astring"
|
|
26
|
-
"cmdliner"
|
|
27
|
-
"cppo" {build}
|
|
26
|
+
"cmdliner" {>= "1.0.0"}
|
|
27
|
+
"cppo" {build & >= "1.1.0"}
|
|
28
28
|
"dune"
|
|
29
29
|
"fpath"
|
|
30
|
-
"ocaml" {>= "4.02.0" & < "4.
|
|
30
|
+
"ocaml" {>= "4.02.0" & < "4.14"}
|
|
31
31
|
"result"
|
|
32
32
|
"tyxml" {>= "4.3.0"}
|
|
33
33
|
|
|
34
|
-
"alcotest" {dev & >= "0.8.3"}
|
|
35
|
-
"markup" {dev & >= "1.0.0"}
|
|
34
|
+
"alcotest" {dev & >= "0.8.3" & with-test}
|
|
35
|
+
"markup" {dev & >= "1.0.0" & with-test}
|
|
36
36
|
"ocamlfind" {dev}
|
|
37
|
-
"sexplib" {dev & >= "113.33.00"}
|
|
37
|
+
"sexplib" {dev & >= "113.33.00" & with-test}
|
|
38
38
|
|
|
39
39
|
"bisect_ppx" {dev & >= "1.3.0"}
|
|
40
40
|
]
|
|
41
41
|
|
|
42
42
|
build: [
|
|
43
|
-
["dune" "subst"] {
|
|
43
|
+
["dune" "subst"] {dev}
|
|
44
44
|
["dune" "build" "-p" name "-j" jobs]
|
|
45
45
|
]
|
|
46
|
-
x-commit-hash: "c0df8ce2171fa9645a41f371429aa3ddc16de5c1"
|
|
47
46
|
url {
|
|
48
|
-
src: "https://github.com/ocaml/odoc/releases/download/1.5.
|
|
47
|
+
src: "https://github.com/ocaml/odoc/releases/download/1.5.3/odoc-1.5.3.tbz"
|
|
49
48
|
checksum: [
|
|
50
|
-
"sha256=
|
|
51
|
-
"sha512=
|
|
49
|
+
"sha256=f2b76f811658c4b52cb48ac4ffc2ec37cedd2a805111c7f8ec20f8f36b8bbf45"
|
|
50
|
+
"sha512=9e069590e0737c94813d25235b5cfe27feb5a0298a17ff9b9ee446c69827c3a0ea3b7da5d05b278639cd1f0202e0d83356707979edfaa2af73876fc000c23c4d"
|
|
52
51
|
]
|
|
53
52
|
}
|
|
53
|
+
x-commit-hash: "8de4a36814533b25b461373fe5c0f54db55e5e7c"
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Pretty-printing library"
|
|
3
|
+
description: """
|
|
4
|
+
|
|
5
|
+
This library provides a lean alternative to the Format [1] module of
|
|
6
|
+
the OCaml standard library. It aims to make it easy for users to do
|
|
7
|
+
the right thing. If you have tried Format before but find its API
|
|
8
|
+
complicated and difficult to use, then Pp might be a good choice for
|
|
9
|
+
you.
|
|
10
|
+
|
|
11
|
+
Pp uses the same concepts of boxes and break hints, and the final
|
|
12
|
+
rendering is done to formatter from the Format module. However it
|
|
13
|
+
defines its own algebra which some might find easier to work with and
|
|
14
|
+
reason about. No previous knowledge is required to start using this
|
|
15
|
+
library, however the various guides for the Format module such as this
|
|
16
|
+
one [2] should be applicable to Pp as well.
|
|
17
|
+
|
|
18
|
+
[1]: https://caml.inria.fr/pub/docs/manual-ocaml/libref/Format.html
|
|
19
|
+
[2]: http://caml.inria.fr/resources/doc/guides/format.en.html
|
|
20
|
+
"""
|
|
21
|
+
maintainer: ["Jeremie Dimino <jeremie@dimino.org>"]
|
|
22
|
+
authors: [
|
|
23
|
+
"Jane Street Group, LLC"
|
|
24
|
+
"Jeremie Dimino <jeremie@dimino.org>"
|
|
25
|
+
]
|
|
26
|
+
license: "MIT"
|
|
27
|
+
homepage: "https://github.com/ocaml-dune/pp"
|
|
28
|
+
doc: "https://ocaml-dune.github.io/pp/"
|
|
29
|
+
bug-reports: "https://github.com/ocaml-dune/pp/issues"
|
|
30
|
+
depends: [
|
|
31
|
+
"dune" {>= "2.0"}
|
|
32
|
+
"ocaml" {>= "4.08.0"}
|
|
33
|
+
"ppx_expect" {with-test}
|
|
34
|
+
]
|
|
35
|
+
build: [
|
|
36
|
+
["dune" "subst"] {dev}
|
|
37
|
+
[
|
|
38
|
+
"dune"
|
|
39
|
+
"build"
|
|
40
|
+
"-p"
|
|
41
|
+
name
|
|
42
|
+
"-j"
|
|
43
|
+
jobs
|
|
44
|
+
"@install"
|
|
45
|
+
"@runtest" {with-test}
|
|
46
|
+
"@doc" {with-doc}
|
|
47
|
+
]
|
|
48
|
+
]
|
|
49
|
+
dev-repo: "git+https://github.com/ocaml-dune/pp.git"
|
|
50
|
+
x-commit-hash: "395b95c89cfe2c6d538dad9d56721b6a7278d46c"
|
|
51
|
+
url {
|
|
52
|
+
src:
|
|
53
|
+
"https://github.com/ocaml-dune/pp/releases/download/1.1.2/pp-1.1.2.tbz"
|
|
54
|
+
checksum: [
|
|
55
|
+
"sha256=e4a4e98d96b1bb76950fcd6da4e938c86d989df4d7e48f02f7a44595f5af1d56"
|
|
56
|
+
"sha512=58f78b083483006b40814be9aac33c895349eb1c6427d2762b4d760192613401262478bd5deff909763517560b06af7bf013c6a6f87d549aafa77b26345303f2"
|
|
57
|
+
]
|
|
58
|
+
}
|
|
@@ -4,7 +4,7 @@ authors: ["Jérémie Dimino"]
|
|
|
4
4
|
license: "BSD-3-Clause"
|
|
5
5
|
homepage: "https://github.com/ocaml-ppx/ppx_derivers"
|
|
6
6
|
bug-reports: "https://github.com/ocaml-ppx/ppx_derivers/issues"
|
|
7
|
-
dev-repo: "git://github.com/ocaml-ppx/ppx_derivers.git"
|
|
7
|
+
dev-repo: "git+https://github.com/ocaml-ppx/ppx_derivers.git"
|
|
8
8
|
build: [
|
|
9
9
|
["dune" "build" "-p" name "-j" jobs]
|
|
10
10
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
maintainer: "
|
|
3
|
-
authors: ["Jane Street Group, LLC
|
|
2
|
+
maintainer: "Jane Street developers"
|
|
3
|
+
authors: ["Jane Street Group, LLC"]
|
|
4
4
|
homepage: "https://github.com/janestreet/ppx_yojson_conv_lib"
|
|
5
5
|
bug-reports: "https://github.com/janestreet/ppx_yojson_conv_lib/issues"
|
|
6
6
|
dev-repo: "git+https://github.com/janestreet/ppx_yojson_conv_lib.git"
|
|
@@ -1,32 +1,4 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
maintainer: "opensource@janestreet.com"
|
|
3
|
-
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
4
|
-
homepage: "https://github.com/ocaml-ppx/ppxlib"
|
|
5
|
-
bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues"
|
|
6
|
-
dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git"
|
|
7
|
-
doc: "https://ocaml-ppx.github.io/ppxlib/"
|
|
8
|
-
license: "MIT"
|
|
9
|
-
build: [
|
|
10
|
-
["dune" "subst"] {pinned}
|
|
11
|
-
["dune" "build" "-p" name "-j" jobs]
|
|
12
|
-
]
|
|
13
|
-
run-test: [
|
|
14
|
-
["dune" "runtest" "-p" name "-j" jobs] { ocaml:version >= "4.07" }
|
|
15
|
-
]
|
|
16
|
-
depends: [
|
|
17
|
-
"ocaml" {>= "4.04.1" & < "4.13"}
|
|
18
|
-
"dune" {>= "2.7"}
|
|
19
|
-
"ocaml-compiler-libs" {>= "v0.11.0"}
|
|
20
|
-
"ocaml-migrate-parsetree" {>= "2.1.0"}
|
|
21
|
-
"ppx_derivers" {>= "1.0"}
|
|
22
|
-
"sexplib0"
|
|
23
|
-
"stdlib-shims"
|
|
24
|
-
"ocamlfind" {with-test}
|
|
25
|
-
"re" {with-test & >= "1.9.0"}
|
|
26
|
-
"cinaps" {with-test & >= "v0.12.1"}
|
|
27
|
-
"base" {with-test}
|
|
28
|
-
"stdio" {with-test}
|
|
29
|
-
]
|
|
30
2
|
synopsis: "Standard library for ppx rewriters"
|
|
31
3
|
description: """
|
|
32
4
|
Ppxlib is the standard library for ppx rewriters and other programs
|
|
@@ -40,12 +12,48 @@ OCaml syntax directly and `ppxlib.traverse` which provides various
|
|
|
40
12
|
ways of automatically traversing values of a given type, in particular
|
|
41
13
|
allowing to inject a complex structured value into generated code.
|
|
42
14
|
"""
|
|
43
|
-
|
|
15
|
+
maintainer: ["opensource@janestreet.com"]
|
|
16
|
+
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
|
|
17
|
+
license: "MIT"
|
|
18
|
+
homepage: "https://github.com/ocaml-ppx/ppxlib"
|
|
19
|
+
doc: "https://ocaml-ppx.github.io/ppxlib/"
|
|
20
|
+
bug-reports: "https://github.com/ocaml-ppx/ppxlib/issues"
|
|
21
|
+
depends: [
|
|
22
|
+
"dune" {>= "2.7"}
|
|
23
|
+
"ocaml" {>= "4.04.1" & < "4.14"}
|
|
24
|
+
"ocaml-compiler-libs" {>= "v0.11.0"}
|
|
25
|
+
"ocaml-migrate-parsetree" {>= "2.2.0"}
|
|
26
|
+
"ppx_derivers" {>= "1.0"}
|
|
27
|
+
"sexplib0" {>= "v0.12"}
|
|
28
|
+
"stdlib-shims"
|
|
29
|
+
"ocamlfind" {with-test}
|
|
30
|
+
"re" {with-test & >= "1.9.0"}
|
|
31
|
+
"cinaps" {with-test & >= "v0.12.1"}
|
|
32
|
+
"base" {with-test}
|
|
33
|
+
"stdio" {with-test}
|
|
34
|
+
"odoc" {with-doc}
|
|
35
|
+
]
|
|
36
|
+
build: [
|
|
37
|
+
["dune" "subst"] {dev}
|
|
38
|
+
[
|
|
39
|
+
"dune"
|
|
40
|
+
"build"
|
|
41
|
+
"-p"
|
|
42
|
+
name
|
|
43
|
+
"-j"
|
|
44
|
+
jobs
|
|
45
|
+
"@install"
|
|
46
|
+
"@runtest" {with-test}
|
|
47
|
+
"@doc" {with-doc}
|
|
48
|
+
]
|
|
49
|
+
]
|
|
50
|
+
dev-repo: "git+https://github.com/ocaml-ppx/ppxlib.git"
|
|
51
|
+
x-commit-hash: "3cf57772fef4666a2992041cf3a670dd2be98603"
|
|
44
52
|
url {
|
|
45
53
|
src:
|
|
46
|
-
"https://github.com/ocaml-ppx/ppxlib/releases/download/0.
|
|
54
|
+
"https://github.com/ocaml-ppx/ppxlib/releases/download/0.22.2/ppxlib-0.22.2.tbz"
|
|
47
55
|
checksum: [
|
|
48
|
-
"sha256=
|
|
49
|
-
"sha512=
|
|
56
|
+
"sha256=d0e8a1ebdc6220b1574d7a926f008460c5118ccef79bf9a0ce0242f34cff225a"
|
|
57
|
+
"sha512=6010a59be6af873eaf193670f9cc8c9a7f091cfd89ec6c5b68d1f0c72d7c6015eec6371c009fc473cf2cb37d24f0934d04d0eacefa567a4945234197c3b31741"
|
|
50
58
|
]
|
|
51
59
|
}
|
|
@@ -8,7 +8,7 @@ authors: [
|
|
|
8
8
|
"Rudi Grinberg"
|
|
9
9
|
"Gabriel Radanne"
|
|
10
10
|
]
|
|
11
|
-
license: "LGPL-2.0
|
|
11
|
+
license: "LGPL-2.0 with OCaml linking exception"
|
|
12
12
|
homepage: "https://github.com/ocaml/ocaml-re"
|
|
13
13
|
bug-reports: "https://github.com/ocaml/ocaml-re/issues"
|
|
14
14
|
dev-repo: "git+https://github.com/ocaml/ocaml-re.git"
|
|
@@ -21,7 +21,7 @@ build: [
|
|
|
21
21
|
|
|
22
22
|
depends: [
|
|
23
23
|
"ocaml" {>= "4.02"}
|
|
24
|
-
"dune"
|
|
24
|
+
"dune" {>= "2.0"}
|
|
25
25
|
"ounit" {with-test}
|
|
26
26
|
"seq"
|
|
27
27
|
]
|
|
@@ -37,6 +37,10 @@ Pure OCaml regular expressions with:
|
|
|
37
37
|
"""
|
|
38
38
|
url {
|
|
39
39
|
src:
|
|
40
|
-
"https://github.com/ocaml/ocaml-re/releases/download/1.
|
|
41
|
-
checksum:
|
|
40
|
+
"https://github.com/ocaml/ocaml-re/releases/download/1.10.3/re-1.10.3.tbz"
|
|
41
|
+
checksum: [
|
|
42
|
+
"sha256=846546967f3fe31765935dd40a6460a9424337ecce7b12727fcba49480790ebb"
|
|
43
|
+
"sha512=d02103b7b8b8d8bc797341dcc933554745427f3c1b51b54b4ac9ff81badfd68c94726c57548b08e00ca99f3e09741b54b6500e97c19fc0e8fcefd6dfbe71da7f"
|
|
44
|
+
]
|
|
42
45
|
}
|
|
46
|
+
x-commit-hash: "c5d5df80e128c3d7646b7d8b1322012c5fcc35f3"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
maintainer: "
|
|
3
|
-
authors: ["Jane Street Group, LLC
|
|
2
|
+
maintainer: "Jane Street developers"
|
|
3
|
+
authors: ["Jane Street Group, LLC"]
|
|
4
4
|
homepage: "https://github.com/janestreet/result"
|
|
5
5
|
dev-repo: "git+https://github.com/janestreet/result.git"
|
|
6
6
|
bug-reports: "https://github.com/janestreet/result/issues"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
maintainer: "
|
|
3
|
-
authors: ["Jane Street Group, LLC
|
|
2
|
+
maintainer: "Jane Street developers"
|
|
3
|
+
authors: ["Jane Street Group, LLC"]
|
|
4
4
|
homepage: "https://github.com/janestreet/sexplib0"
|
|
5
5
|
bug-reports: "https://github.com/janestreet/sexplib0/issues"
|
|
6
6
|
dev-repo: "git+https://github.com/janestreet/sexplib0.git"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
opam-version: "2.0"
|
|
2
|
+
synopsis: "Spawning sub-processes"
|
|
3
|
+
description: """
|
|
4
|
+
Spawn is a small library exposing only one functionality: spawning sub-process.
|
|
5
|
+
|
|
6
|
+
It has three main goals:
|
|
7
|
+
|
|
8
|
+
1. provide missing features of Unix.create_process such as providing a
|
|
9
|
+
working directory
|
|
10
|
+
|
|
11
|
+
2. provide better errors when a system call fails in the
|
|
12
|
+
sub-process. For instance if a command is not found, you get a proper
|
|
13
|
+
[Unix.Unix_error] exception
|
|
14
|
+
|
|
15
|
+
3. improve performance by using vfork when available. It is often
|
|
16
|
+
claimed that nowadays fork is as fast as vfork, however in practice
|
|
17
|
+
fork takes time proportional to the process memory while vfork is
|
|
18
|
+
constant time. In application using a lot of memory, vfork can be
|
|
19
|
+
thousands of times faster than fork.
|
|
20
|
+
"""
|
|
21
|
+
maintainer: ["Jane Street developers"]
|
|
22
|
+
authors: ["Jane Street Group, LLC"]
|
|
23
|
+
license: "MIT"
|
|
24
|
+
homepage: "https://github.com/janestreet/spawn"
|
|
25
|
+
doc: "https://janestreet.github.io/spawn/"
|
|
26
|
+
bug-reports: "https://github.com/janestreet/spawn/issues"
|
|
27
|
+
depends: [
|
|
28
|
+
"dune" {>= "2.8"}
|
|
29
|
+
"ppx_expect" {with-test}
|
|
30
|
+
"ocaml" {>= "4.05"}
|
|
31
|
+
"odoc" {with-doc}
|
|
32
|
+
]
|
|
33
|
+
build: [
|
|
34
|
+
["dune" "subst"] {dev}
|
|
35
|
+
[
|
|
36
|
+
"dune"
|
|
37
|
+
"build"
|
|
38
|
+
"-p"
|
|
39
|
+
name
|
|
40
|
+
"-j"
|
|
41
|
+
jobs
|
|
42
|
+
"@install"
|
|
43
|
+
"@runtest" {with-test}
|
|
44
|
+
"@doc" {with-doc}
|
|
45
|
+
]
|
|
46
|
+
]
|
|
47
|
+
dev-repo: "git+https://github.com/janestreet/spawn.git"
|
|
48
|
+
x-commit-hash: "b5a25cab2f53a5ee9e10a7b8a96506cc61ce1198"
|
|
49
|
+
url {
|
|
50
|
+
src:
|
|
51
|
+
"https://github.com/janestreet/spawn/archive/v0.15.0.tar.gz"
|
|
52
|
+
checksum: [
|
|
53
|
+
"sha256=310fb2a50ac7f64c738182cbabd9d27c1aeae1a08107fe14da8d35a87cbb57c7"
|
|
54
|
+
"sha512=3a775b57a73efee6adbc30b32fa779f27d11c7008a46f90fdb9da6288533e2d83fc49dbcd770c087f2e4560c5586ff72a9a2985d8929955773cc10d83f126013"
|
|
55
|
+
]
|
|
56
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
maintainer: "
|
|
3
|
-
authors: ["Jane Street Group, LLC
|
|
2
|
+
maintainer: "Jane Street developers"
|
|
3
|
+
authors: ["Jane Street Group, LLC"]
|
|
4
4
|
homepage: "https://github.com/janestreet/stdio"
|
|
5
5
|
bug-reports: "https://github.com/janestreet/stdio/issues"
|
|
6
6
|
dev-repo: "git+https://github.com/janestreet/stdio.git"
|
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
opam-version: "2.0"
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
dev-repo: "git+
|
|
2
|
+
synopsis: """The transitory OCaml software packager"""
|
|
3
|
+
maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
|
|
4
|
+
authors: ["The topkg programmers"]
|
|
5
|
+
homepage: "https://erratique.ch/software/topkg"
|
|
6
|
+
doc: "https://erratique.ch/software/topkg/doc"
|
|
7
|
+
dev-repo: "git+https://erratique.ch/repos/topkg.git"
|
|
8
8
|
bug-reports: "https://github.com/dbuenzli/topkg/issues"
|
|
9
|
+
license: ["ISC"]
|
|
9
10
|
tags: ["packaging" "ocamlbuild" "org:erratique"]
|
|
10
|
-
depends: [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
description: """\
|
|
20
|
-
|
|
11
|
+
depends: ["ocaml" {>= "4.03.0"}
|
|
12
|
+
"ocamlfind" {build & >= "1.6.1"}
|
|
13
|
+
"ocamlbuild"]
|
|
14
|
+
build: [["ocaml" "pkg/pkg.ml" "build" "--pkg-name" name
|
|
15
|
+
"--dev-pkg" "%{dev}%"]]
|
|
16
|
+
url {
|
|
17
|
+
src: "https://erratique.ch/software/topkg/releases/topkg-1.0.4.tbz"
|
|
18
|
+
checksum: "sha512=5baa1bf0105397589b741acd0195069823548b2051e453dffd641e5d00536b7a5f41b38d005b2b063f9e7cfb9a3b627bec3e6ad48e56769cc35a71f97a897f1b"}
|
|
19
|
+
description: """
|
|
21
20
|
Topkg is a packager for distributing OCaml software. It provides an
|
|
22
21
|
API to describe the files a package installs in a given build
|
|
23
22
|
configuration and to specify information about the package's
|
|
@@ -41,8 +40,5 @@ Topkg-care is distributed under the ISC license it depends on
|
|
|
41
40
|
[bos]: http://erratique.ch/software/bos
|
|
42
41
|
[cmdliner]: http://erratique.ch/software/cmdliner
|
|
43
42
|
[webbrowser]: http://erratique.ch/software/webbrowser
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
archive: "http://erratique.ch/software/topkg/releases/topkg-1.0.3.tbz"
|
|
47
|
-
checksum: "e285f7a296d77ee7d831ba9a6bfb396f"
|
|
48
|
-
}
|
|
43
|
+
|
|
44
|
+
Home page: http://erratique.ch/software/topkg"""
|