this repo has no description
1opam-version: "2.0" 2maintainer: "Jan Rochel <jan@besport.com>" 3authors: "Jan Rochel (BeSport)" 4homepage: "https://github.com/ocsigen/resource-pooling" 5bug-reports: "https://github.com/ocsigen/resource-pooling/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/ocsigen/resource-pooling.git" 8build: [ 9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 10 ["ocaml" "setup.ml" "-build"] 11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 12 ["ocaml" "setup.ml" "-build"] {with-test} 13 ["ocaml" "setup.ml" "-test"] {with-test} 14] 15install: ["ocaml" "setup.ml" "-install"] 16remove: ["ocamlfind" "remove" "resource-pooling"] 17depends: [ 18 "ocaml" {>= "4.02" & < "5.0.0"} 19 "lwt" {>= "2.4.7"} 20 "lwt_log" 21 "ocamlbuild" {build} 22 "ocamlfind" {build} 23] 24synopsis: 25 "library for pooling resources like connections, threads, or similar" 26description: """ 27This package is derived from the module Lwt_pool from the lwt package, 28which implements resource pooling. With Resource_pool this package 29provides a modified version with additional features. Also there is a 30module called Server_pool that manages resource clusters, specifically 31a cluster of servers each with its own connection pool.""" 32flags: light-uninstall 33url { 34 src: "https://github.com/ocsigen/resource-pooling/archive/0.3.2.tar.gz" 35 checksum: [ 36 "sha256=c9929ee7c8294f271c9e04a9892173cb1adc32fe78fab2f4d25e3e464268001b" 37 "md5=d234136f41f60a9670195148c1bcf73d" 38 ] 39}