Skip to content

Commit bed0cdf

Browse files
authored
Merge pull request ocaml#27800 from toots/opam-publish-posix-bindings.3-posix-socket.3.0.0
3 packages from savonet/ocaml-posix
2 parents 8106bcf + 5b6ebfd commit bed0cdf

File tree

13 files changed

+166
-20
lines changed
  • packages
    • liquidsoap-core/liquidsoap-core.2.3.0
    • liquidsoap
      • liquidsoap.2.3.1
      • liquidsoap.2.3.2
    • posix-bindings/posix-bindings.3
    • posix-socket-unix/posix-socket-unix.3.0.0
    • posix-socket/posix-socket.3.0.0
    • srt

13 files changed

+166
-20
lines changed

packages/liquidsoap-core/liquidsoap-core.2.3.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ conflicts: [
101101
"shine" {< "0.2.0"}
102102
"soundtouch" {< "0.1.9"}
103103
"speex" {< "0.4.0"}
104-
"srt" {< "0.3.0"}
104+
"srt" {< "0.3.3"}
105105
"ssl" {< "0.7.0"}
106106
"tls" {< "1.0.2"}
107107
"sdl-liquidsoap" {< "2"}

packages/liquidsoap/liquidsoap.2.3.1/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ conflicts: [
109109
"shine" {< "0.2.0"}
110110
"soundtouch" {< "0.1.9"}
111111
"speex" {< "1.0.0"}
112-
"srt" {< "0.3.2"}
112+
"srt" {< "0.3.3"}
113113
"ssl" {< "0.7.0"}
114114
"tls" {< "1.0.2"}
115115
"sdl-liquidsoap" {< "2"}

packages/liquidsoap/liquidsoap.2.3.2/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ conflicts: [
111111
"shine" {< "0.2.0"}
112112
"soundtouch" {< "0.1.9"}
113113
"speex" {< "1.0.0"}
114-
"srt" {< "0.3.2"}
114+
"srt" {< "0.3.3"}
115115
"ssl" {< "0.7.0"}
116116
"tls" {< "1.0.2"}
117117
"sdl-liquidsoap" {< "2"}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "POSIX bindings"
4+
description: "install all available posix bindings"
5+
maintainer: ["[email protected]"]
6+
authors: ["Romain Beauxis"]
7+
license: "MIT"
8+
homepage: "https://github.com/savonet/ocaml-posix"
9+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
10+
depends: [
11+
"dune" {>= "2.9"}
12+
"posix-types"
13+
"posix-socket"
14+
"posix-socket-unix"
15+
"posix-uname"
16+
"posix-math2"
17+
"posix-getopt"
18+
"odoc" {with-doc}
19+
]
20+
build: [
21+
["dune" "subst"] {dev}
22+
[
23+
"dune"
24+
"build"
25+
"-p"
26+
name
27+
"-j"
28+
jobs
29+
"--promote-install-files=false"
30+
"@install"
31+
"@runtest" {with-test}
32+
"@doc" {with-doc}
33+
]
34+
["dune" "install" "-p" name "--create-install-files" name]
35+
]
36+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
37+
url {
38+
src:
39+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/posix-socket.3.0.0.tar.gz"
40+
checksum: [
41+
"md5=7ad658ad6fe5a8b1f910f30ab632977e"
42+
"sha512=bfe8ff032d87abfc73df33662a5313a6eb8b78f8365523f7b68f9867868cfc5ad20c4d542c6db27cdb2544d209fa3dc658653fc20af9f2c92035e17b6d7c8982"
43+
]
44+
}
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "Bindings for posix sockets"
4+
description:
5+
"posix-socket-unix provides unix-specific types and bindings for posix sockets."
6+
maintainer: ["[email protected]"]
7+
authors: ["Romain Beauxis"]
8+
license: "MIT"
9+
homepage: "https://github.com/savonet/ocaml-posix"
10+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11+
depends: [
12+
"dune" {>= "2.9"}
13+
"ctypes"
14+
"posix-base" {>= "2.2"}
15+
"posix-socket" {= version}
16+
"unix-errno"
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"--promote-install-files=false"
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
["dune" "install" "-p" name "--create-install-files" name]
34+
]
35+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
36+
available: os != "win32"
37+
url {
38+
src:
39+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/posix-socket.3.0.0.tar.gz"
40+
checksum: [
41+
"md5=7ad658ad6fe5a8b1f910f30ab632977e"
42+
"sha512=bfe8ff032d87abfc73df33662a5313a6eb8b78f8365523f7b68f9867868cfc5ad20c4d542c6db27cdb2544d209fa3dc658653fc20af9f2c92035e17b6d7c8982"
43+
]
44+
}
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# This file is generated by dune, edit dune-project instead
2+
opam-version: "2.0"
3+
synopsis: "Bindings for posix sockets"
4+
description:
5+
"posix-socket provides the types and bindings of posix sockets APIs available on both unix and windows."
6+
maintainer: ["[email protected]"]
7+
authors: ["Romain Beauxis"]
8+
license: "MIT"
9+
homepage: "https://github.com/savonet/ocaml-posix"
10+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
11+
depends: [
12+
"dune" {>= "2.9"}
13+
"ocaml" {>= "4.12"}
14+
"dune-configurator"
15+
"posix-base" {>= "2.2"}
16+
"ctypes"
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"--promote-install-files=false"
29+
"@install"
30+
"@runtest" {with-test}
31+
"@doc" {with-doc}
32+
]
33+
["dune" "install" "-p" name "--create-install-files" name]
34+
]
35+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
36+
url {
37+
src:
38+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/posix-socket.3.0.0.tar.gz"
39+
checksum: [
40+
"md5=7ad658ad6fe5a8b1f910f30ab632977e"
41+
"sha512=bfe8ff032d87abfc73df33662a5313a6eb8b78f8365523f7b68f9867868cfc5ad20c4d542c6db27cdb2544d209fa3dc658653fc20af9f2c92035e17b6d7c8982"
42+
]
43+
}

packages/srt/srt.0.2.0/opam

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@ This package provides OCaml bindings to the C implementation library.
88
"""
99
maintainer: ["The Savonet Team <[email protected]>"]
1010
authors: ["The Savonet Team <[email protected]>"]
11-
license: "GPL-2.0-only"
11+
license: "GPL-2.0-or-later"
1212
homepage: "https://github.com/savonet/ocaml-srt"
1313
bug-reports: "https://github.com/savonet/ocaml-srt/issues"
1414
depends: [
1515
"conf-srt" {build}
1616
"conf-pkg-config" {build}
1717
"dune" {> "2.0"}
1818
"dune-configurator" {build}
19-
"ctypes"
19+
"ctypes" {>= "0.16.0"}
20+
"ctypes-foreign" {>= "0.16.0"}
2021
"integers"
21-
"posix-socket"
22+
"posix-socket" {< "3.0.0"}
2223
"ocamlfind"
2324
]
2425
build: [
@@ -36,6 +37,8 @@ build: [
3637
]
3738
]
3839
dev-repo: "git+https://github.com/savonet/ocaml-srt.git"
40+
available: [ os-family != "windows" ]
41+
x-maintenance-intent: ["(latest)"]
3942
url {
4043
src: "https://github.com/savonet/ocaml-srt/archive/v0.2.0.tar.gz"
4144
checksum: [

packages/srt/srt.0.2.1/opam

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ This package provides OCaml bindings to the C implementation library.
99
"""
1010
maintainer: ["The Savonet Team <[email protected]>"]
1111
authors: ["The Savonet Team <[email protected]>"]
12-
license: "GPL-2.0"
12+
license: "GPL-2.0-or-later"
1313
homepage: "https://github.com/savonet/ocaml-srt"
1414
bug-reports: "https://github.com/savonet/ocaml-srt/issues"
1515
depends: [
1616
"conf-srt" {build}
1717
"conf-pkg-config" {build}
1818
"dune" {>= "2.8"}
1919
"dune-configurator" {build}
20-
"ctypes"
20+
"ctypes" {>= "0.16.0"}
21+
"ctypes-foreign" {>= "0.16.0"}
2122
"integers"
22-
"posix-socket"
23+
"posix-socket" {< "3.0.0"}
2324
"ocamlfind"
2425
"odoc" {with-doc}
2526
]
@@ -38,6 +39,8 @@ build: [
3839
]
3940
]
4041
dev-repo: "git+https://github.com/savonet/ocaml-srt.git"
42+
available: [ os-family != "windows" ]
43+
x-maintenance-intent: ["(latest)"]
4144
url {
4245
src: "https://github.com/savonet/ocaml-srt/archive/v0.2.1.tar.gz"
4346
checksum: [

packages/srt/srt.0.2.2/opam

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ This package provides OCaml bindings to the C implementation library.
99
"""
1010
maintainer: ["The Savonet Team <[email protected]>"]
1111
authors: ["The Savonet Team <[email protected]>"]
12-
license: "GPL-2.0"
12+
license: "GPL-2.0-or-later"
1313
homepage: "https://github.com/savonet/ocaml-srt"
1414
bug-reports: "https://github.com/savonet/ocaml-srt/issues"
1515
depends: [
1616
"conf-srt" {build}
1717
"conf-pkg-config" {build}
1818
"dune" {>= "2.8"}
1919
"dune-configurator" {build}
20-
"ctypes"
21-
"ctypes-foreign"
20+
"ctypes" {>= "0.16.0"}
21+
"ctypes-foreign" {>= "0.16.0"}
2222
"ocamlfind"
2323
"integers"
24-
"posix-socket"
24+
"posix-socket" {< "3.0.0"}
2525
"odoc" {with-doc}
2626
]
2727
build: [
@@ -39,6 +39,8 @@ build: [
3939
]
4040
]
4141
dev-repo: "git+https://github.com/savonet/ocaml-srt.git"
42+
available: [ os-family != "windows" ]
43+
x-maintenance-intent: ["(latest)"]
4244
url {
4345
src: "https://github.com/savonet/ocaml-srt/archive/v0.2.2.tar.gz"
4446
checksum: [

packages/srt/srt.0.3.0/opam

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This package provides OCaml bindings to the C implementation library.
99
"""
1010
maintainer: ["The Savonet Team <[email protected]>"]
1111
authors: ["The Savonet Team <[email protected]>"]
12-
license: "GPL-2.0-only"
12+
license: "GPL-2.0-or-later"
1313
homepage: "https://github.com/savonet/ocaml-srt"
1414
bug-reports: "https://github.com/savonet/ocaml-srt/issues"
1515
depends: [
@@ -18,10 +18,10 @@ depends: [
1818
"dune" {>= "2.8"}
1919
"dune-configurator" {build}
2020
"ocamlfind"
21-
"ctypes"
22-
"ctypes-foreign"
21+
"ctypes" {>= "0.16.0"}
22+
"ctypes-foreign" {>= "0.16.0"}
2323
"integers"
24-
"posix-socket"
24+
"posix-socket" {< "3.0.0"}
2525
"odoc" {with-doc}
2626
]
2727
build: [
@@ -39,6 +39,8 @@ build: [
3939
]
4040
]
4141
dev-repo: "git+https://github.com/savonet/ocaml-srt.git"
42+
available: [ os-family != "windows" ]
43+
x-maintenance-intent: ["(latest)"]
4244
url {
4345
src: "https://github.com/savonet/ocaml-srt/archive/refs/tags/v0.3.0.tar.gz"
4446
checksum: [

0 commit comments

Comments
 (0)