this repo has no description
0
fork

Configure Feed

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

Merge pull request #26584 from kit-ty-kate/opam-publish-extlib.1.8.0

Package extlib.1.8.0

authored by

Marcello Seri and committed by
GitHub
c719e6fe 25dd411e

+48
+48
packages/extlib/extlib.1.8.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "A complete yet small extension for OCaml standard library" 3 + description: """\ 4 + The purpose of this library is to add new functions to OCaml standard library 5 + modules, to modify some functions in order to get better performances or 6 + safety (tail-recursive) and also to provide new modules which should be useful 7 + for day to day programming. 8 + 9 + Current goal is to maintain compatibility, new software is encouraged to not use extlib since stdlib 10 + is now seeing many additions and improvements which make many parts of extlib obsolete. 11 + For tail-recursion safety consider using other libraries e.g. containers.""" 12 + maintainer: "ygrek@autistici.org" 13 + authors: [ 14 + "Nicolas Cannasse" 15 + "Brian Hurt" 16 + "Yamagata Yoriyuki" 17 + "Markus Mottl" 18 + "Jesse Guardiani" 19 + "John Skaller" 20 + "Bardur Arantsson" 21 + "Janne Hellsten" 22 + "Richard W.M. Jones" 23 + "ygrek" 24 + "Gabriel Scherer" 25 + "Pietro Abate" 26 + ] 27 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 28 + homepage: "https://github.com/ygrek/ocaml-extlib" 29 + doc: "https://ygrek.org/p/extlib/doc/" 30 + bug-reports: "https://github.com/ygrek/ocaml-extlib/issues" 31 + depends: [ 32 + "dune" {>= "1.0"} 33 + "ocaml" {>= "4.02"} 34 + "cppo" {build & >= "1.0.1"} 35 + ] 36 + build: [ 37 + ["dune" "build" "-p" name "-j" jobs] 38 + ["dune" "runtest" "-p" name "-j" jobs] {with-test} 39 + ] 40 + dev-repo: "git+https://github.com/ygrek/ocaml-extlib.git" 41 + url { 42 + src: 43 + "https://github.com/ygrek/ocaml-extlib/releases/download/1.8.0/extlib-1.8.0.tar.gz" 44 + checksum: [ 45 + "md5=43fb3bf2989671af1769147b1171d080" 46 + "sha512=dedd2bb4a63f2df9e451dbe6aede18d873489a8675f48ded09131f2af4d00dbeaecc8750039b2e4facb9f5f9b1b01c6b7accd392bf8ac5a3f2c801562ce5c4ee" 47 + ] 48 + }