-
Notifications
You must be signed in to change notification settings - Fork 24
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 #669 from psafont/musty
- Loading branch information
Showing
91 changed files
with
844 additions
and
665 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
cache | ||
cache.log | ||
stash/ | ||
xs-opam-repo-*/ | ||
xs-opam-repo-* |
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
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
opam-version: "2.0" | ||
name: "conf-ruby" | ||
version: "1.0.0" | ||
synopsis: "Virtual package relying on Ruby" | ||
description: | ||
"This package can only install if the `ruby` program is available on the system." | ||
maintainer: "Takuma Ishikawa <[email protected]>" | ||
authors: "Yukihiro Matsumoto (Matz) and contributers" | ||
license: "2-clause BSDL or the conditions in COPYING of the Ruby repository" | ||
homepage: "https://www.ruby-lang.org/" | ||
bug-reports: "https://github.com/ocaml/opam-repository/issues" | ||
flags: conf | ||
build: ["ruby" "--version"] | ||
depexts: [ | ||
["ruby"] {os-distribution = "alpine"} | ||
["ruby"] {os-distribution = "arch"} | ||
["ruby"] {os-distribution = "centos"} | ||
["ruby"] {os-family = "debian"} | ||
["ruby"] {os-distribution = "fedora"} | ||
["dev-lang/ruby"] {os-distribution = "gentoo"} | ||
["ruby"] {os-distribution = "homebrew" & os = "macos"} | ||
["ruby"] {os = "netbsd"} | ||
["ruby"] {os-distribution = "nixos"} | ||
["ruby"] {os = "openbsd"} | ||
["ruby"] {os-family = "suse" | os-family = "opensuse"} | ||
["ruby" "rubygems"] {os-distribution = "ol"} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,58 @@ | ||
opam-version: "2.0" | ||
name: "crunch" | ||
version: "3.3.1" | ||
synopsis: "Convert a filesystem into a static OCaml module" | ||
description: """\ | ||
`ocaml-crunch` takes a directory of files and compiles them into a standalone | ||
OCaml module which serves the contents directly from memory. This can be | ||
convenient for libraries that need a few embedded files (such as a web server) | ||
and do not want to deal with all the trouble of file configuration.""" | ||
maintainer: "MirageOS team" | ||
authors: [ | ||
"Anil Madhavapeddy" | ||
"Thomas Gazagnaire" | ||
"Stefanie Schirmer" | ||
"Hannes Mehnert" | ||
] | ||
license: "ISC" | ||
tags: ["org:mirage" "org:xapi-project"] | ||
homepage: "https://github.com/mirage/ocaml-crunch" | ||
doc: "https://mirage.github.io/ocaml-crunch/" | ||
bug-reports: "https://github.com/mirage/ocaml-crunch/issues" | ||
depends: [ | ||
"ocaml" {>= "4.08.0"} | ||
"cmdliner" {>= "1.1"} | ||
"ptime" | ||
"dune" {>= "2.5"} | ||
"lwt" {with-test} | ||
"mirage-kv" {with-test & >= "3.0.0"} | ||
"mirage-kv-mem" {with-test & >= "3.0.0"} | ||
"fmt" {with-test} | ||
] | ||
conflicts: [ | ||
"mirage-kv" {< "3.0.0"} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/mirage/ocaml-crunch.git" | ||
url { | ||
src: | ||
"https://github.com/mirage/ocaml-crunch/releases/download/v3.3.1/crunch-3.3.1.tbz" | ||
checksum: [ | ||
"sha256=2c5ba0d4110bcbb7731cba4eafb6c44a7487c3f88c1ad47401271b69ffa8ed6a" | ||
"sha512=5aaa1b67456dd2f5e3ab450ea547e62fba2b0341a49f3b24669162dce91b6ea1158c1594d60c6df3e416e719484411c50ae61017c40b2f75ee90401aa543bd08" | ||
] | ||
} | ||
x-commit-hash: "bd4f0195b35c602b8b83886bc8731e649b1e3f9c" |
File renamed without changes.
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,6 +1,6 @@ | ||
opam-version: "2.0" | ||
name: "dune-rpc" | ||
version: "3.11.1" | ||
version: "3.14.0" | ||
synopsis: "Communicate with dune using rpc" | ||
description: "Library to connect and control a running dune instance" | ||
maintainer: "Jane Street Group, LLC <[email protected]>" | ||
|
@@ -10,7 +10,7 @@ homepage: "https://github.com/ocaml/dune" | |
doc: "https://dune.readthedocs.io/" | ||
bug-reports: "https://github.com/ocaml/dune/issues" | ||
depends: [ | ||
"dune" {>= "3.5"} | ||
"dune" {>= "3.12"} | ||
"csexp" | ||
"ordering" | ||
"dyn" | ||
|
@@ -28,10 +28,10 @@ build: [ | |
dev-repo: "git+https://github.com/ocaml/dune.git" | ||
url { | ||
src: | ||
"https://github.com/ocaml/dune/releases/download/3.11.1/dune-3.11.1.tbz" | ||
"https://github.com/ocaml/dune/releases/download/3.14.0/dune-3.14.0.tbz" | ||
checksum: [ | ||
"sha256=866f2307adadaf7604f3bf9d98bb4098792baa046953a6726c96c40fc5ed3f71" | ||
"sha512=c888153b204a16bcfed2636de776bbd5f9ca84484e716cc1e9ef3ba3c904e9dd15a2609ae943cddb6097912623ec54618c58386d6730ff742d746850400fb3cc" | ||
"sha256=f4d09d89162621fdff424c253fa50c4920d2179fb5b3d1debab7bbe97c68b2fc" | ||
"sha512=f5ead1a9a0cc26e00a762e83e107b47c3c3fe9b44d9e505547c385c7938208d4fdcc91a8099512e76ea4a426f3543445b4d75ef0b621dc7dbfdcbb615bc0b999" | ||
] | ||
} | ||
x-commit-hash: "7cbb0e7277c6cacd1ccf7941cac5a03c25fc63cf" | ||
x-commit-hash: "73250f00372d3f28a25963ded6138728f4202663" |
File renamed without changes.
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
File renamed without changes.
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,6 +1,6 @@ | ||
opam-version: "2.0" | ||
name: "ocaml-lsp-server" | ||
version: "1.16.2" | ||
version: "1.17.0" | ||
synopsis: "LSP Server for OCaml" | ||
description: "An LSP server for OCaml." | ||
maintainer: "Rudi Grinberg <[email protected]>" | ||
|
@@ -33,7 +33,8 @@ depends: [ | |
"ordering" | ||
"dune-build-info" | ||
"spawn" | ||
"odoc-parser" {>= "2.0.0" & < "2.3.0"} | ||
"astring" | ||
"camlp-streams" | ||
"ppx_expect" {>= "v0.15.0" & with-test} | ||
"ocamlformat" {with-test & = "0.24.1"} | ||
"ocamlc-loc" {>= "3.7.0"} | ||
|
@@ -52,10 +53,10 @@ build: [ | |
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" | ||
url { | ||
src: | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.16.2/lsp-1.16.2.tbz" | ||
"https://github.com/ocaml/ocaml-lsp/releases/download/1.17.0/lsp-1.17.0.tbz" | ||
checksum: [ | ||
"sha256=1487d5a4e2f2d4f023341058551bdb8ba86c23367b7c5b4fdda3aa7dc02aaec4" | ||
"sha512=4a392f6d3deafc6dd37f9603250e736c8d8195ea42c782252386616e8c1562d744e02beee54ec45254cba23efd343ebb33789babb093b0e70122ba86d7e67717" | ||
"sha256=8fb8bbd717eefd2608b4d83458105b660e0de3a1134dc8fc216ae659d4d19600" | ||
"sha512=6876df760dbcb51f85e7fd9d08cc8498c69ede38a52f4e12407187da3fbd9657c71f3223f9490ad97edd5259cfdeb2819d943db65bb9ce3c2a18dace3b65ffa8" | ||
] | ||
} | ||
x-commit-hash: "22cefd841bb0b6b9a6fd4fe5befe5eb68d213ce3" | ||
x-commit-hash: "d3d8de5a4213c2a16e43ac4f87cbbe88a894d05f" |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
opam-version: "2.0" | ||
name: "odoc-parser" | ||
version: "2.4.1" | ||
synopsis: "Parser for ocaml documentation comments" | ||
description: """\ | ||
Odoc_parser is a library for parsing the contents of OCaml documentation | ||
comments, formatted using 'odoc' syntax, an extension of the language | ||
understood by ocamldoc.""" | ||
maintainer: "Jon Ludlam <[email protected]>" | ||
authors: "Anton Bachin <[email protected]>" | ||
license: "ISC" | ||
homepage: "https://github.com/ocaml/odoc" | ||
doc: "https://ocaml.github.io/odoc/odoc_parser" | ||
bug-reports: "https://github.com/ocaml/odoc/issues" | ||
depends: [ | ||
"dune" {>= "3.7"} | ||
"ocaml" {>= "4.02.0"} | ||
"astring" | ||
"result" | ||
"camlp-streams" | ||
"ppx_expect" {with-test} | ||
("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@src/parser/runtest" {with-test} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/ocaml/odoc.git" | ||
url { | ||
src: "https://github.com/ocaml/odoc/releases/download/2.4.1/odoc-2.4.1.tbz" | ||
checksum: [ | ||
"sha256=b814a0b9020b503eb67f17d1d9a969d052b63d8cdc7cdfa5fb793b137558cedb" | ||
"sha512=8ed2ed6ef705c00a2c90b7c57e7e5c747247e3406f1b7415a46db7cbd19d02678db40be761984d627f4fa2d9b38f696c77d8b5d40108e12563e101d07949821c" | ||
] | ||
} | ||
x-commit-hash: "0e671097a35ef938ea390a6bb894f25d8dc847a8" |
Oops, something went wrong.