this repo has no description
0
fork

Configure Feed

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

Merge pull request #26534 from dbuenzli/b0-publish-uucd.16.0.0-etc-2d3dbbc80497c93f

Add: uucd.16.0.0, uucp.16.0.0, uunf.16.0.0, uuseg.16.0.0

authored by

Anil Madhavapeddy and committed by
GitHub
9d91a86a 1962c1e7

+195
+37
packages/uucd/uucd.16.0.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Unicode character database decoder for OCaml" 3 + description: """\ 4 + Uucd is an OCaml module to decode the data of the [Unicode character 5 + database][1] from its XML [representation][2]. It provides high-level 6 + (but not necessarily efficient) access to the data so that efficient 7 + representations can be extracted. 8 + 9 + Uucd is made of a single module, depends on [Xmlm][xmlm] and is distributed 10 + under the ISC license. 11 + 12 + [1]: http://www.unicode.org/reports/tr44/ 13 + [2]: http://www.unicode.org/reports/tr42/ 14 + [xmlm]: http://erratique.ch/software/xmlm 15 + 16 + Home page: <http://erratique.ch/software/uucd>""" 17 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 18 + authors: "The uucd programmers" 19 + license: "ISC" 20 + tags: ["unicode" "database" "decoder" "org:erratique"] 21 + homepage: "https://erratique.ch/software/uucd" 22 + doc: "https://erratique.ch/software/uucd/doc/Uucd" 23 + bug-reports: "https://github.com/dbuenzli/uucd/issues" 24 + depends: [ 25 + "ocaml" {>= "4.08.0"} 26 + "ocamlfind" {build} 27 + "ocamlbuild" {build} 28 + "topkg" {build & >= "1.0.3"} 29 + "xmlm" 30 + ] 31 + build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"] 32 + dev-repo: "git+https://erratique.ch/repos/uucd.git" 33 + url { 34 + src: "https://erratique.ch/software/uucd/releases/uucd-16.0.0.tbz" 35 + checksum: 36 + "sha512=8f9961d7f68414e08fdc2cb7fec0726be75b210cc2a10bc6e3dcc8e07e146f47bd8675671d0143428088e1e20d3e3c134233bfb86d2b9a76e772e515de929eae" 37 + }
+51
packages/uucp/uucp.16.0.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Unicode character properties for OCaml" 3 + description: """\ 4 + Uucp is an OCaml library providing efficient access to a selection of 5 + character properties of the [Unicode character database]. 6 + 7 + Uucp is distributed under the ISC license. It has no dependency. 8 + 9 + Home page: <http://erratique.ch/software/uucp> 10 + 11 + [Unicode character database]: http://www.unicode.org/reports/tr44/""" 12 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 13 + authors: "The uucp programmers" 14 + license: "ISC" 15 + tags: ["unicode" "text" "character" "org:erratique"] 16 + homepage: "https://erratique.ch/software/uucp" 17 + doc: "https://erratique.ch/software/uucp/doc/" 18 + bug-reports: "https://github.com/dbuenzli/uucp/issues" 19 + depends: [ 20 + "ocaml" {>= "4.14.0"} 21 + "ocamlfind" {build} 22 + "ocamlbuild" {build} 23 + "topkg" {build & >= "1.0.3"} 24 + "uucd" {with-test & dev & >= "16.0.0" & < "17.0.0"} 25 + "uunf" {with-test} 26 + ] 27 + depopts: ["uunf" "cmdliner"] 28 + conflicts: [ 29 + "uunf" {< "16.0.0" | >= "17.0.0"} 30 + "cmdliner" {< "1.1.0"} 31 + ] 32 + build: [ 33 + "ocaml" 34 + "pkg/pkg.ml" 35 + "build" 36 + "--dev-pkg" 37 + "%{dev}%" 38 + "--with-uunf" 39 + "%{uunf:installed}%" 40 + "--with-cmdliner" 41 + "%{cmdliner:installed}%" 42 + ] 43 + post-messages: 44 + "If the build fails with \"ocamlopt.opt got signal and exited\", issue 'ulimit -s unlimited' and retry." 45 + {failure & (arch = "ppc64" | arch = "arm64")} 46 + dev-repo: "git+https://erratique.ch/repos/uucp.git" 47 + url { 48 + src: "https://erratique.ch/software/uucp/releases/uucp-16.0.0.tbz" 49 + checksum: 50 + "sha512=5c06d8cadb2b011b1e4ac52e14732044f6ab8e9c11e1184950ff8629b26bd173f1264247623a635b8aa4033e287bfe42d709994f19a3d79f7cbfd20158aa4992" 51 + }
+52
packages/uunf/uunf.16.0.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Unicode text normalization for OCaml" 3 + description: """\ 4 + Uunf is an OCaml library for normalizing Unicode text. It supports all 5 + Unicode [normalization forms]. The library is independent from any IO 6 + mechanism or Unicode text data structure and it can process text 7 + without a complete in-memory representation. 8 + 9 + Uunf is distributed under the ISC license. It has no dependency. 10 + 11 + [normalization forms]: http://www.unicode.org/reports/tr15/ 12 + 13 + Homepage: <http://erratique.ch/software/uunf>""" 14 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 15 + authors: "The uunf programmers" 16 + license: "ISC" 17 + tags: ["unicode" "text" "normalization" "org:erratique"] 18 + homepage: "https://erratique.ch/software/uunf" 19 + doc: "https://erratique.ch/software/uunf/doc/Uunf" 20 + bug-reports: "https://github.com/dbuenzli/uunf/issues" 21 + depends: [ 22 + "ocaml" {>= "4.14.0"} 23 + "ocamlfind" {build} 24 + "ocamlbuild" {build} 25 + "topkg" {build & >= "1.0.3"} 26 + "uucd" {dev & >= "16.0.0" & < "17.0.0"} 27 + ] 28 + depopts: ["uutf" "cmdliner"] 29 + conflicts: [ 30 + "uutf" {< "1.0.0"} 31 + "cmdliner" {< "1.1.0"} 32 + ] 33 + build: [ 34 + "ocaml" 35 + "pkg/pkg.ml" 36 + "build" 37 + "--dev-pkg" 38 + "%{dev}%" 39 + "--with-uutf" 40 + "%{uutf:installed}%" 41 + "--with-cmdliner" 42 + "%{cmdliner:installed}%" 43 + ] 44 + post-messages: 45 + "If the build fails with \"ocamlopt.opt got signal and exited\", issue 'ulimit -s unlimited' and retry." 46 + {failure & (arch = "ppc64" | arch = "arm64")} 47 + dev-repo: "git+https://erratique.ch/repos/uunf.git" 48 + url { 49 + src: "https://erratique.ch/software/uunf/releases/uunf-16.0.0.tbz" 50 + checksum: 51 + "sha512=55e6aa2c0190667467744991839ae1024aa539fc94d9b8dcbaf8fdefed4f77a274acd22f79354b48b4a7582f308dbaadf14991ffee0c2aaf6e16f8efd538b756" 52 + }
+55
packages/uuseg/uuseg.16.0.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Unicode text segmentation for OCaml" 3 + description: """\ 4 + Uuseg is an OCaml library for segmenting Unicode text. It implements 5 + the locale independent [Unicode text segmentation algorithms][1] to 6 + detect grapheme cluster, word and sentence boundaries and the [Unicode 7 + line breaking algorithm][2] to detect line break opportunities. 8 + 9 + The library is independent from any IO mechanism or Unicode text data 10 + structure and it can process text without a complete in-memory 11 + representation. 12 + 13 + Uuseg is distributed under the ISC license. It depends on [Uucp]. 14 + 15 + [1]: http://www.unicode.org/reports/tr29/ 16 + [2]: http://www.unicode.org/reports/tr14/ 17 + [Uucp]: http://erratique.ch/software/uucp 18 + 19 + Homepage: <http://erratique.ch/software/uuseg>""" 20 + maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 21 + authors: "The uuseg programmers" 22 + license: "ISC" 23 + tags: ["unicode" "text" "segmentation" "org:erratique"] 24 + homepage: "https://erratique.ch/software/uuseg" 25 + doc: "https://erratique.ch/software/uuseg/doc/" 26 + bug-reports: "https://github.com/dbuenzli/uuseg/issues" 27 + depends: [ 28 + "ocaml" {>= "4.14.0"} 29 + "ocamlfind" {build} 30 + "ocamlbuild" {build} 31 + "topkg" {build & >= "1.0.3"} 32 + "uucp" {>= "16.0.0" & < "17.0.0"} 33 + ] 34 + depopts: ["uutf" "cmdliner"] 35 + conflicts: [ 36 + "uutf" {< "1.0.0"} 37 + "cmdliner" {< "1.1.0"} 38 + ] 39 + build: [ 40 + "ocaml" 41 + "pkg/pkg.ml" 42 + "build" 43 + "--dev-pkg" 44 + "%{dev}%" 45 + "--with-uutf" 46 + "%{uutf:installed}%" 47 + "--with-cmdliner" 48 + "%{cmdliner:installed}%" 49 + ] 50 + dev-repo: "git+https://erratique.ch/repos/uuseg.git" 51 + url { 52 + src: "https://erratique.ch/software/uuseg/releases/uuseg-16.0.0.tbz" 53 + checksum: 54 + "sha512=355139aee2a72baddf3d811e522948456147546ee946b6eca20f57711865770d4b8d32ea01a7338b8e6cdedb4423ee65cee387704bb9c0c057bcbd65012679b8" 55 + }