this repo has no description
0
fork

Configure Feed

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

Merge pull request #27205 from gildor478/release-expect-v0.1.0

[new release] expect (0.1.0)

authored by

Shon Feder and committed by
GitHub
f455debb b0d908f2

+50
+50
packages/expect/expect.0.1.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: 3 + "Simple implementation of 'expect' to help building unitary testing of interactive program" 4 + description: """ 5 + You can match the question using a regular expression or a timeout. 6 + 7 + See the Expect manual for more information: 8 + http://expect.nist.gov/ 9 + """ 10 + maintainer: ["Sylvain Le Gall <sylvain+ocaml@le-gall.net>"] 11 + authors: ["Sylvain Le Gall"] 12 + license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 13 + homepage: "https://github.com/gildor478/ocaml-expect" 14 + doc: "https://gildor478.github.io/ocaml-expect/" 15 + bug-reports: "https://github.com/gildor478/ocaml-expect/issues" 16 + depends: [ 17 + "dune" {>= "2.9"} 18 + "base-unix" 19 + "re" {>= "1.12.0"} 20 + "batteries" {>= "3.8.0"} 21 + "ounit2" {>= "2.0.0" & with-test} 22 + "ocaml" {>= "4.14"} 23 + "odoc" {with-doc} 24 + ] 25 + build: [ 26 + ["dune" "subst"] {dev} 27 + [ 28 + "dune" 29 + "build" 30 + "-p" 31 + name 32 + "-j" 33 + jobs 34 + "--promote-install-files=false" 35 + "@install" 36 + "@runtest" {with-test} 37 + "@doc" {with-doc} 38 + ] 39 + ["dune" "install" "-p" name "--create-install-files" name] 40 + ] 41 + dev-repo: "git+https://github.com/gildor478/ocaml-expect.git" 42 + url { 43 + src: 44 + "https://github.com/gildor478/ocaml-expect/releases/download/v0.1.0/expect-0.1.0.tbz" 45 + checksum: [ 46 + "sha256=25465f78cff8ba44e85cafdff053b9a30320269c2bbb851d2b34d855d6464cc1" 47 + "sha512=4f4567812afb9ef611749b5256550c05b1ec03c3910e9a3336ec4dec54156b4596acb27143c758e1ebd035398412cd21a0b90c7c4559c0ad57e91355d24a273a" 48 + ] 49 + } 50 + x-commit-hash: "53b42ca539737872add71a7213d543b904e35f6d"