Skip to content

Commit ed163b6

Browse files
authored
Merge pull request ocaml#12396 from jrochel/opam-publish-resource-pooling.0.1
Package resource-pooling.0.1
2 parents a18a15a + b40e184 commit ed163b6

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library for pooling resources like connections, threads, or similar
2+
3+
This package is derived from the module Lwt_pool from the lwt package,
4+
which implements resource pooling. With Resource_pool this package
5+
provides a modified version with additional features. Also there is a
6+
module called Server_pool that manages resource clusters, specifically
7+
a cluster of servers each with its own connection pool.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
opam-version: "1.2"
2+
maintainer: "Jan Rochel <[email protected]>"
3+
authors: "Jan Rochel (BeSport)"
4+
homepage: "https://github.com/ocsigen/resource-pooling"
5+
bug-reports: "https://github.com/ocsigen/resource-pooling/issues"
6+
license: "MIT"
7+
dev-repo: "https://github.com/ocsigen/resource-pooling.git"
8+
build: [
9+
["oasis" "setup"]
10+
["ocaml" "setup.ml" "-configure" "--prefix" prefix]
11+
["ocaml" "setup.ml" "-build"]
12+
]
13+
install: ["ocaml" "setup.ml" "-install"]
14+
build-test: [
15+
["oasis" "setup"]
16+
["ocaml" "setup.ml" "-configure" "--enable-tests"]
17+
["ocaml" "setup.ml" "-build"]
18+
["ocaml" "setup.ml" "-test"]
19+
]
20+
remove: ["ocamlfind" "remove" "resource-pooling"]
21+
depends: [
22+
"batteries"
23+
("lwt" {>= "2.4.7" & < "4.0.0"})
24+
("oasis" {build & >= "0.4.7"} | "oasis-mirage" {build & >= "0.4.7"})
25+
"ocamlbuild" {build}
26+
"ocamlfind" {build}
27+
]
28+
available: [ocaml-version >= "4.02"]
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
http: "https://github.com/ocsigen/resource-pooling/archive/0.1.tar.gz"
2+
checksum: "54b2a358d85e7cf528194a886509baa5"

0 commit comments

Comments
 (0)