Skip to content

Commit 44fc694

Browse files
authored
Merge pull request #1 from maiste/duniverse-v1.4.0
Duniverse v1.4.0
2 parents 55c9350 + ae43b33 commit 44fc694

File tree

4 files changed

+31
-8
lines changed

4 files changed

+31
-8
lines changed

dune-project

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
(lang dune 1.0)
2+
(name mtime)

opam renamed to mtime.opam

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,12 @@ Home page: http://erratique.ch/software/mtime"""
1818
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
1919
authors: "The mtime programmers"
2020
license: "ISC"
21-
tags: ["time" "monotonic" "system" "org:erratique"]
22-
homepage: "https://erratique.ch/software/mtime"
23-
doc: "https://erratique.ch/software/mtime/doc/"
21+
homepage: "https://github.com/dune-universe/mtime"
2422
bug-reports: "https://github.com/dbuenzli/mtime/issues"
2523
depends: [
24+
"dune"
2625
"ocaml" {>= "4.08.0"}
27-
"ocamlfind" {build}
28-
"ocamlbuild" {build & != "0.9.0"}
29-
"topkg" {build & >= "1.0.3"}
3026
]
31-
build: ["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]
32-
dev-repo: "git+https://erratique.ch/repos/mtime.git"
27+
build: [ "dune" "build" "-p" name "-j" jobs "@install" "@runtest" {with-test} ]
28+
tags: [ "time" "posix" "system" "org:erratique" ]
29+
dev-repo: "git+https://github.com/dune-universe/mtime.git"

src-clock/dune

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(library
2+
(name mtime_clock)
3+
(public_name mtime.clock.os)
4+
(libraries mtime)
5+
(modules mtime_clock)
6+
(c_names mtime_clock_stubs)
7+
(wrapped false))

src/dune

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
(library
2+
(name mtime)
3+
(public_name mtime)
4+
(modules mtime)
5+
(wrapped false))
6+
7+
(library
8+
(name mtime_clock_virtual)
9+
(public_name mtime.clock)
10+
(modules))
11+
12+
(library
13+
(name mtime_top)
14+
(public_name mtime.top)
15+
(libraries compiler-libs.toplevel mtime)
16+
(modules mtime_top)
17+
(wrapped false))

0 commit comments

Comments
 (0)