Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/duniverse-v13.0.0' into dune-uni…
Browse files Browse the repository at this point in the history
…verse-v14.0.0
  • Loading branch information
Leonidas-from-XIV committed Mar 25, 2022
2 parents fc4530b + 407f27f commit cf3bb37
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
1 change: 1 addition & 0 deletions dune-project
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(lang dune 1.10)
15 changes: 15 additions & 0 deletions src/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
(library
(name uuseg)
(public_name uuseg)
(wrapped false)
(modules uuseg_base uuseg_buf uuseg_grapheme_cluster uuseg_word uuseg_sentence uuseg_line_break uuseg)
(libraries uchar uucp)
(flags :standard -w -50-39-37-32))

(library
(name uuseg_string)
(public_name uuseg.string)
(wrapped false)
(modules uuseg_string)
(libraries uuseg uutf)
(flags :standard -w -50-39-37-32))
20 changes: 9 additions & 11 deletions opam → uuseg.opam
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
opam-version: "2.0"
name: "uuseg"
synopsis: """Unicode text segmentation for OCaml"""
maintainer: ["Daniel Bünzli <daniel.buenzl [email protected]>"]
synopsis: "Unicode text segmentation for OCaml"
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
authors: ["The uuseg programmers"]
homepage: "https://erratique.ch/software/uuseg"
doc: "https://erratique.ch/software/uuseg/doc/"
dev-repo: "git+https://erratique.ch/repos/uuseg.git"
homepage: "https://github.com/dune-universe/uuseg/"
dev-repo: "git+https://github.com/dune-universe/uuseg.git"
bug-reports: "https://github.com/dbuenzli/uuseg/issues"
license: ["ISC"]
tags: ["unicode" "text" "segmentation" "org:erratique"]
depends: ["ocaml" {>= "4.03.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
"dune"
"uucp" {>= "14.0.0" & < "15.0.0"}]
depopts: ["uutf"
"cmdliner"]
conflicts: ["uutf" {< "1.0.0"}]
build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"
"--with-uutf" "%{uutf:installed}%"
"--with-cmdliner" "%{cmdliner:installed}%" ]]
build: [
[ "dune" "subst" ] {pinned}
[ "dune" "build" "-p" name "-j" jobs ]
]
description: """
Uuseg is an OCaml library for segmenting Unicode text. It implements
the locale independent [Unicode text segmentation algorithms][1] to
Expand Down

0 comments on commit cf3bb37

Please sign in to comment.