this repo has no description

Merge pull request #27336 from toots/opam-publish-posix-base.2.2.0

10 packages from savonet/ocaml-posix at 2.2.0

Changed files
+434
packages
posix-base
posix-base.2.2.0
posix-bindings
posix-bindings.2.2.0
posix-getopt
posix-getopt.2.2.0
posix-math2
posix-math2.2.2.0
posix-signal
posix-signal.2.2.0
posix-socket
posix-socket.2.2.0
posix-socket-unix
posix-socket-unix.2.2.0
posix-time2
posix-time2.2.2.0
posix-types
posix-types.2.2.0
posix-uname
posix-uname.2.2.0
+41
packages/posix-base/posix-base.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Base module for the posix bindings"
+
description: "posix-base provides base tools for the posix binding modules."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ocaml" {>= "4.08"}
+
"integers"
+
"ctypes" {>= "0.14.0"}
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+46
packages/posix-bindings/posix-bindings.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "POSIX bindings"
+
description: "install all available posix bindings"
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ctypes"
+
"posix-base" {= version}
+
"posix-types" {= version}
+
"posix-socket" {= version}
+
"posix-socket-unix" {= version}
+
"posix-uname" {= version}
+
"posix-math2" {= version}
+
"posix-getopt" {= version}
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+47
packages/posix-getopt/posix-getopt.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for posix getopt/getopt_long"
+
description:
+
"posix-getopt provides a simple interface for the POSIX getopt and its extensions, getopt_long and getopt_long_only."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"dune-configurator"
+
"ounit2" {with-test}
+
"process" {with-test}
+
"posix-uname" {with-test & = version}
+
"ctypes"
+
"posix-base" {= version}
+
"unix-errno"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
available: os != "win32" & os != "bsd"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+42
packages/posix-math2/posix-math2.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for posix math"
+
description:
+
"posix-math2 provides a simple interface for POSIX math functions."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ctypes"
+
"posix-base" {= version}
+
"unix-errno"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+43
packages/posix-signal/posix-signal.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for the types defined in <signal.h>"
+
description:
+
"posix-signal provides an API to the types and bindings defined in <signal.h>"
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"posix-base" {= version}
+
"ctypes"
+
"unix-errno"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
available: os != "win32"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+44
packages/posix-socket-unix/posix-socket-unix.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for posix sockets"
+
description:
+
"posix-socket-unix provides unix-specific types and bindings for posix sockets."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ctypes"
+
"posix-base" {= version}
+
"posix-socket" {= version}
+
"unix-errno"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
available: os != "win32"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+42
packages/posix-socket/posix-socket.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for posix sockets"
+
description:
+
"posix-socket provides the types and bindings of posix sockets APIs available on both unix and windows."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ocaml" {>= "4.12"}
+
"posix-base" {= version}
+
"ctypes"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+44
packages/posix-time2/posix-time2.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for posix time functions"
+
description:
+
"posix-time2 provides the types and bindings for posix time APIs."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ctypes"
+
"posix-base" {= version}
+
"posix-types" {= version}
+
"unix-errno"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
available: os != "win32"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+43
packages/posix-types/posix-types.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for the types defined in <sys/types.h>"
+
description:
+
"posix-types provides an API to the types defined in <sys/types.h>"
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ocaml" {>= "4.03"}
+
"posix-base" {= version}
+
"ctypes"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
available: os != "win32"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}
+42
packages/posix-uname/posix-uname.2.2.0/opam
···
···
+
# This file is generated by dune, edit dune-project instead
+
opam-version: "2.0"
+
synopsis: "Bindings for posix uname"
+
description: "posix-uname provides a simple interface for POSIX uname."
+
maintainer: ["romain.beauxis@gmail.com"]
+
authors: ["Romain Beauxis"]
+
license: "MIT"
+
homepage: "https://github.com/savonet/ocaml-posix"
+
bug-reports: "https://github.com/savonet/ocaml-posix/issues"
+
depends: [
+
"dune" {>= "2.9"}
+
"ctypes"
+
"posix-base" {= version}
+
"unix-errno"
+
"odoc" {with-doc}
+
]
+
build: [
+
["dune" "subst"] {dev}
+
[
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"--promote-install-files=false"
+
"@install"
+
"@runtest" {with-test}
+
"@doc" {with-doc}
+
]
+
["dune" "install" "-p" name "--create-install-files" name]
+
]
+
dev-repo: "git+https://github.com/savonet/ocaml-posix.git"
+
available: os != "win32"
+
url {
+
src:
+
"https://github.com/savonet/ocaml-posix/archive/refs/tags/v2.2.0.tar.gz"
+
checksum: [
+
"md5=e7bfad548f0f7998c74ad5963fdd67fd"
+
"sha512=a0fae5a98b9ab63d5273d357292a74ac69c694bdd672b0cbd62b5beb5847e63c17fb0de0a1fb9f36b7bc9f10f7b990298ee63853d8399b9b8a9005c1c7b37ba3"
+
]
+
}