Skip to content

Commit 7542ebb

Browse files
authored
Merge pull request #27745 from c-cube/release-tiny_httpd-v0.18
[new release] tiny_httpd (2 packages) (0.18)
2 parents a0114c7 + 62551a7 commit 7542ebb

File tree

2 files changed

+92
-0
lines changed
  • packages
    • tiny_httpd_camlzip/tiny_httpd_camlzip.0.18
    • tiny_httpd/tiny_httpd.0.18

2 files changed

+92
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
opam-version: "2.0"
2+
synopsis: "Minimal HTTP server using threads"
3+
maintainer: ["c-cube"]
4+
authors: ["c-cube"]
5+
license: "MIT"
6+
tags: [
7+
"http" "thread" "server" "tiny_httpd" "http_of_dir" "simplehttpserver"
8+
]
9+
homepage: "https://github.com/c-cube/tiny_httpd/"
10+
bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
11+
depends: [
12+
"dune" {>= "3.2"}
13+
"seq"
14+
"base-threads"
15+
"result"
16+
"hmap"
17+
"iostream" {>= "0.2"}
18+
"ocaml" {>= "4.08"}
19+
"odoc" {with-doc}
20+
"logs" {with-test}
21+
"conf-libcurl" {with-test}
22+
"ptime" {with-test}
23+
"qcheck-core" {>= "0.9" & with-test}
24+
]
25+
depopts: [
26+
"logs"
27+
"magic-mime"
28+
"mtime" {>= "2.0"}
29+
]
30+
build: [
31+
["dune" "subst"] {dev}
32+
[
33+
"dune"
34+
"build"
35+
"-p"
36+
name
37+
"-j"
38+
jobs
39+
"@install"
40+
"@runtest" {with-test}
41+
"@doc" {with-doc}
42+
]
43+
]
44+
dev-repo: "git+https://github.com/c-cube/tiny_httpd.git"
45+
url {
46+
src:
47+
"https://github.com/c-cube/tiny_httpd/releases/download/v0.18/tiny_httpd-0.18.tbz"
48+
checksum: [
49+
"sha256=ef806444b2f9e53d10976b9124902560d0855124433537080e6d0bec48d202e5"
50+
"sha512=539530eb9e511b6ed4d69bb083f421d5f51b183c347c116a52f24210f30b1c9b14a029e2b82d6e0d698c74ab75ba5c307a1976711558a1419df287335b2a8f51"
51+
]
52+
}
53+
x-commit-hash: "f6daff24c0758de5f772e9a5ddf04df2a78d8a14"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
opam-version: "2.0"
2+
synopsis: "Interface to camlzip for tiny_httpd"
3+
maintainer: ["c-cube"]
4+
authors: ["c-cube"]
5+
license: "MIT"
6+
homepage: "https://github.com/c-cube/tiny_httpd/"
7+
bug-reports: "https://github.com/c-cube/tiny_httpd/issues"
8+
depends: [
9+
"dune" {>= "3.2"}
10+
"tiny_httpd" {= version}
11+
"camlzip" {>= "1.06"}
12+
"iostream-camlzip" {>= "0.2.1"}
13+
"logs" {with-test}
14+
"odoc" {with-doc}
15+
]
16+
build: [
17+
["dune" "subst"] {dev}
18+
[
19+
"dune"
20+
"build"
21+
"-p"
22+
name
23+
"-j"
24+
jobs
25+
"@install"
26+
"@runtest" {with-test}
27+
"@doc" {with-doc}
28+
]
29+
]
30+
dev-repo: "git+https://github.com/c-cube/tiny_httpd.git"
31+
url {
32+
src:
33+
"https://github.com/c-cube/tiny_httpd/releases/download/v0.18/tiny_httpd-0.18.tbz"
34+
checksum: [
35+
"sha256=ef806444b2f9e53d10976b9124902560d0855124433537080e6d0bec48d202e5"
36+
"sha512=539530eb9e511b6ed4d69bb083f421d5f51b183c347c116a52f24210f30b1c9b14a029e2b82d6e0d698c74ab75ba5c307a1976711558a1419df287335b2a8f51"
37+
]
38+
}
39+
x-commit-hash: "f6daff24c0758de5f772e9a5ddf04df2a78d8a14"

0 commit comments

Comments
 (0)