Skip to content

Commit 3ce81b7

Browse files
tmattioFirobe
authored andcommitted
Dunify v17.0.0
1 parent 90d53ea commit 3ce81b7

File tree

3 files changed

+18
-22
lines changed

3 files changed

+18
-22
lines changed

dune-project

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
(lang dune 1.1)
2+
(name uunf)
3+
(package (name uunf))

src/dune

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
(library
2+
(public_name uunf)
3+
(modules (:standard \ uunf_string))
4+
(flags :standard -w -32))
5+
6+
(library
7+
(public_name uunf.string)
8+
(name uunf_string)
9+
(modules uunf_string)
10+
(optional)
11+
(libraries uunf uutf))

opam renamed to uunf.opam

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,34 +16,16 @@ maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
1616
authors: "The uunf programmers"
1717
license: "ISC"
1818
tags: ["unicode" "text" "normalization" "org:erratique"]
19-
homepage: "https://erratique.ch/software/uunf"
20-
doc: "https://erratique.ch/software/uunf/doc/Uunf"
19+
homepage: "https://github.com/dune-universe/uunf"
2120
bug-reports: "https://github.com/dbuenzli/uunf/issues"
2221
depends: [
22+
"dune"
2323
"ocaml" {>= "4.14.0"}
24-
"ocamlfind" {build}
25-
"ocamlbuild" {build}
26-
"topkg" {build & >= "1.1.0"}
27-
"uucd" {dev & >= "17.0.0" & < "18.0.0"}
2824
]
2925
depopts: ["uutf" "cmdliner"]
3026
conflicts: [
3127
"uutf" {< "1.0.0"}
3228
"cmdliner" {< "1.1.0"}
3329
]
34-
build: [
35-
"ocaml"
36-
"pkg/pkg.ml"
37-
"build"
38-
"--dev-pkg"
39-
"%{dev}%"
40-
"--with-uutf"
41-
"%{uutf:installed}%"
42-
"--with-cmdliner"
43-
"%{cmdliner:installed}%"
44-
]
45-
post-messages:
46-
"If the build fails with \"ocamlopt.opt got signal and exited\", issue 'ulimit -s unlimited' and retry."
47-
{failure & (arch = "ppc64" | arch = "arm64")}
48-
dev-repo: "git+https://erratique.ch/repos/uunf.git"
49-
x-maintenance-intent: ["(latest)"]
30+
build: [ "dune" "build" "-p" name "-j" jobs ]
31+
dev-repo: "git+https://github.com/dune-universe/uunf.git"

0 commit comments

Comments
 (0)