this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #26837 from dboris/camlkit-0.3.0

[new release] Camlkit v0.3.0

authored by

Shon Feder and committed by
GitHub
2dff29ab 654ee104

+119
+45
packages/camlkit-base/camlkit-base.0.3.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCaml bindings to the Objective-C runtime and some base frameworks" 3 + description: """ 4 + This package provides OCaml bindings to the Objective-C runtime and 5 + a selection of core Cocoa frameworks.""" 6 + maintainer: ["Boris D. <borisd@gmx.com>"] 7 + authors: ["Boris D. <borisd@gmx.com>"] 8 + license: "ISC" 9 + tags: ["objc" "bindings" "cocoa" "macos" "gnustep"] 10 + homepage: "https://github.com/dboris/camlkit" 11 + bug-reports: "https://github.com/dboris/camlkit/issues" 12 + depends: [ 13 + "ocaml" {>= "4.13"} 14 + "dune" {>= "3.13"} 15 + "ctypes" {>= "0.22.0"} 16 + "ctypes-foreign" {>= "0.22.0"} 17 + "alcotest" {with-test} 18 + "odoc" {with-doc} 19 + "conf-gnustep-base" {os != "macos"} 20 + "conf-libobjc2" {os != "macos"} 21 + "conf-clang" {os != "macos"} 22 + ] 23 + available: (arch = "arm64" | arch = "x86_64") & (os = "macos" | os = "freebsd") 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + build-env: [ 39 + [CC = "clang"] 40 + ] 41 + dev-repo: "git+https://github.com/dboris/camlkit.git" 42 + url { 43 + src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.3.0.tar.gz" 44 + checksum: "sha256=15a105781e7a3a168587941733b08a61c576243a40e3a47dd9af29065e0affa2" 45 + }
+36
packages/camlkit-gui/camlkit-gui.0.3.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "OCaml bindings to AppKit and other gui frameworks" 3 + description: "OCaml bindings to AppKit and other gui frameworks" 4 + maintainer: ["Boris D. <borisd@gmx.com>"] 5 + authors: ["Boris D. <borisd@gmx.com>"] 6 + license: "ISC" 7 + tags: ["objc" "bindings" "cocoa" "macos" "gnustep"] 8 + homepage: "https://github.com/dboris/camlkit" 9 + bug-reports: "https://github.com/dboris/camlkit/issues" 10 + depends: [ 11 + "dune" {>= "3.13"} 12 + "camlkit-base" {= version} 13 + "odoc" {with-doc} 14 + "conf-gnustep-gui" {os != "macos"} 15 + ] 16 + build: [ 17 + ["dune" "subst"] {dev} 18 + [ 19 + "dune" 20 + "build" 21 + "-p" 22 + name 23 + "-j" 24 + jobs 25 + "@install" 26 + "@doc" {with-doc} 27 + ] 28 + ] 29 + build-env: [ 30 + [CC = "clang"] 31 + ] 32 + dev-repo: "git+https://github.com/dboris/camlkit.git" 33 + url { 34 + src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.3.0.tar.gz" 35 + checksum: "sha256=15a105781e7a3a168587941733b08a61c576243a40e3a47dd9af29065e0affa2" 36 + }
+38
packages/camlkit/camlkit.0.3.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Higher-level wrappers for Cocoa APIs" 3 + description: "Higher-level wrappers for Cocoa APIs" 4 + maintainer: ["Boris D. <borisd@gmx.com>"] 5 + authors: ["Boris D. <borisd@gmx.com>"] 6 + license: "ISC" 7 + tags: ["objc" "cocoa" "macos" "gnustep"] 8 + homepage: "https://github.com/dboris/camlkit" 9 + bug-reports: "https://github.com/dboris/camlkit/issues" 10 + depends: [ 11 + "dune" {>= "3.13"} 12 + "camlkit-base" {= version} 13 + "camlkit-gui" {= version} 14 + "alcotest" {with-test} 15 + "odoc" {with-doc} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + build-env: [ 32 + [CC = "clang"] 33 + ] 34 + dev-repo: "git+https://github.com/dboris/camlkit.git" 35 + url { 36 + src: "https://github.com/dboris/camlkit/archive/refs/tags/v0.3.0.tar.gz" 37 + checksum: "sha256=15a105781e7a3a168587941733b08a61c576243a40e3a47dd9af29065e0affa2" 38 + }