Skip to content

Commit

Permalink
Merge pull request #26571 from dboris/camlkit-v0.2.1
Browse files Browse the repository at this point in the history
[new release] camlkit (0.2.1)
  • Loading branch information
shonfeder committed Sep 17, 2024
2 parents 12d7650 + c1e27e1 commit accd281
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 0 deletions.
45 changes: 45 additions & 0 deletions packages/camlkit-base/camlkit-base.0.2.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
opam-version: "2.0"
synopsis: "OCaml bindings to the Objective-C runtime and some base frameworks"
description: """
This package provides OCaml bindings to the Objective-C runtime and
a selection of core Cocoa frameworks."""
maintainer: ["Boris D. <[email protected]>"]
authors: ["Boris D. <[email protected]>"]
license: "ISC"
tags: ["objc" "bindings" "cocoa" "macos" "gnustep"]
homepage: "https://github.com/dboris/camlkit"
bug-reports: "https://github.com/dboris/camlkit/issues"
depends: [
"ocaml" {>= "4.13"}
"dune" {>= "3.13"}
"ctypes" {>= "0.22.0"}
"ctypes-foreign" {>= "0.22.0"}
"alcotest" {with-test}
"odoc" {with-doc}
"conf-gnustep-base" {os != "macos"}
"conf-libobjc2" {os != "macos"}
"conf-clang" {os != "macos"}
]
available: (arch = "arm64" | arch = "x86_64") & (os = "macos" | os = "freebsd")
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
build-env: [
[CC = "clang"]
]
dev-repo: "git+https://github.com/dboris/camlkit.git"
url {
src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.2.1.tar.gz"
checksum: "sha256=73e5bf2a4a6f63e0f5689b9db8a8d9c4110ce2d1ea2d2ffd66c56b49056e79ae"
}
36 changes: 36 additions & 0 deletions packages/camlkit-gui/camlkit-gui.0.2.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
opam-version: "2.0"
synopsis: "OCaml bindings to AppKit and other gui frameworks"
description: "OCaml bindings to AppKit and other gui frameworks"
maintainer: ["Boris D. <[email protected]>"]
authors: ["Boris D. <[email protected]>"]
license: "ISC"
tags: ["objc" "bindings" "cocoa" "macos" "gnustep"]
homepage: "https://github.com/dboris/camlkit"
bug-reports: "https://github.com/dboris/camlkit/issues"
depends: [
"dune" {>= "3.13"}
"camlkit-base" {= version}
"odoc" {with-doc}
"conf-gnustep-gui" {os != "macos"}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]
build-env: [
[CC = "clang"]
]
dev-repo: "git+https://github.com/dboris/camlkit.git"
url {
src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.2.1.tar.gz"
checksum: "sha256=73e5bf2a4a6f63e0f5689b9db8a8d9c4110ce2d1ea2d2ffd66c56b49056e79ae"
}
38 changes: 38 additions & 0 deletions packages/camlkit/camlkit.0.2.1/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
opam-version: "2.0"
synopsis: "Higher-level wrappers for Cocoa APIs"
description: "Higher-level wrappers for Cocoa APIs"
maintainer: ["Boris D. <[email protected]>"]
authors: ["Boris D. <[email protected]>"]
license: "ISC"
tags: ["objc" "cocoa" "macos" "gnustep"]
homepage: "https://github.com/dboris/camlkit"
bug-reports: "https://github.com/dboris/camlkit/issues"
depends: [
"dune" {>= "3.13"}
"camlkit-base" {= version}
"camlkit-gui" {= version}
"alcotest" {with-test}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
build-env: [
[CC = "clang"]
]
dev-repo: "git+https://github.com/dboris/camlkit.git"
url {
src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.2.1.tar.gz"
checksum: "sha256=73e5bf2a4a6f63e0f5689b9db8a8d9c4110ce2d1ea2d2ffd66c56b49056e79ae"
}

0 comments on commit accd281

Please sign in to comment.