this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #23029 from Leonidas-from-XIV/release-mdx-2.2.1

[new release] mdx (2.2.1)

authored by

Kate and committed by
GitHub
6d7907bd ae62da48

+62
+62
packages/mdx/mdx.2.2.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Executable code blocks inside markdown files" 3 + description: """ 4 + `ocaml-mdx` allows to execute code blocks inside markdown files. 5 + There are (currently) two sub-commands, corresponding 6 + to two modes of operations: pre-processing (`ocaml-mdx pp`) 7 + and tests (`ocaml-mdx test`). 8 + 9 + The pre-processor mode allows to mix documentation and code, 10 + and to practice "literate programming" using markdown and OCaml. 11 + 12 + The test mode allows to ensure that shell scripts and OCaml fragments 13 + in the documentation always stays up-to-date.""" 14 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 15 + authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 16 + license: "ISC" 17 + homepage: "https://github.com/realworldocaml/mdx" 18 + bug-reports: "https://github.com/realworldocaml/mdx/issues" 19 + depends: [ 20 + "dune" {>= "3.5"} 21 + "ocaml" {>= "4.08.0"} 22 + "ocamlfind" 23 + "fmt" {>= "0.8.7"} 24 + "cppo" {build & >= "1.1.0"} 25 + "csexp" {>= "1.3.2"} 26 + "astring" 27 + "logs" {>= "0.7.0"} 28 + "cmdliner" {>= "1.1.0"} 29 + "re" {>= "1.7.2"} 30 + "ocaml-version" {>= "2.3.0"} 31 + "odoc-parser" {>= "1.0.0"} 32 + "lwt" {with-test} 33 + "alcotest" {with-test} 34 + "odoc" {with-doc} 35 + ] 36 + conflicts: [ 37 + "result" {< "1.5"} 38 + ] 39 + build: [ 40 + ["dune" "subst"] {dev} 41 + [ 42 + "dune" 43 + "build" 44 + "-p" 45 + name 46 + "-j" 47 + jobs 48 + "@install" 49 + "@runtest" {with-test} 50 + "@doc" {with-doc} 51 + ] 52 + ] 53 + dev-repo: "git+https://github.com/realworldocaml/mdx.git" 54 + url { 55 + src: 56 + "https://github.com/realworldocaml/mdx/releases/download/2.2.1/mdx-2.2.1.tbz" 57 + checksum: [ 58 + "sha256=f09ed733fe4461605f029773748a6353d01b95be65eb986bcce17d6ddaf509d8" 59 + "sha512=5f918fbafcb55c3959f6cce69b8d8e640883dea5c21d159b5ebb6ead31230569100813555d2637f74028d51f79f23a226dc69811524d9cf1c2ca50b87a93dbf2" 60 + ] 61 + } 62 + x-commit-hash: "96cef6ca65b55c629a265686a0ae471c378d5fca"