Skip to content

Commit f83bcf3

Browse files
Merge pull request #996 from ocsigen/remove-luv
Remove luv
2 parents fc8edd6 + 9983986 commit f83bcf3

File tree

8 files changed

+6
-144
lines changed

8 files changed

+6
-144
lines changed

.github/workflows/workflow.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,17 @@ jobs:
9393
- run: opam depext conf-libev --install
9494
if: ${{ matrix.libev == true }}
9595

96-
- run: opam install lwt_luv lwt_react lwt --deps-only --with-test
96+
- run: opam install lwt_react lwt --deps-only --with-test
9797

9898
- run: opam install lwt_ppx --deps-only --with-test
9999
if: ${{ matrix.ppx == true }}
100100

101-
- run: opam exec -- dune build --only-packages lwt_luv,lwt_react,lwt
101+
- run: opam exec -- dune build --only-packages lwt_react,lwt
102102

103103
- run: opam exec -- dune build --only-packages lwt_ppx
104104
if: ${{ matrix.ppx == true }}
105105

106-
- run: opam exec -- dune runtest --only-packages lwt_luv,lwt_react,lwt
106+
- run: opam exec -- dune runtest --only-packages lwt_react,lwt
107107

108108
- run: opam exec -- dune runtest --only-packages lwt_ppx
109109
if: ${{ matrix.ppx == true }}

esy.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@
55
"dependencies": {
66
"ocaml": "~4.9.0",
77
"@opam/conf-libev": "*",
8-
"@opam/bisect_ppx": "*",
9-
"@opam/luv": "*"
8+
"@opam/bisect_ppx": "*"
109
},
1110
"resolutions": {
12-
"@opam/conf-libev": "esy-packages/libev:package.json#0b5eb66",
13-
"@opam/luv": "aantron/luv:luv.opam#df02a9ac6e9e9fc6427e7853d260230fcb96bd2a"
11+
"@opam/conf-libev": "esy-packages/libev:package.json#0b5eb66"
1412
}
1513
}
1614
}

lwt_luv.opam

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/unix/luv/dune

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/unix/luv/lwt_luv.ml

Lines changed: 0 additions & 57 deletions
This file was deleted.

src/unix/luv/lwt_luv.mli

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/unix/dune

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(library
22
(name tester)
33
(libraries lwt lwttester)
4-
(modules (:standard \ main luv_main dummy) ))
4+
(modules (:standard \ main dummy) ))
55

66
(executable
77
(name dummy)
@@ -13,21 +13,9 @@
1313
(libraries lwttester tester)
1414
(modules main))
1515

16-
(executable
17-
(name luv_main)
18-
(libraries lwt lwt_luv lwttester tester)
19-
(modules luv_main))
20-
2116
(alias
2217
(name runtest)
2318
(package lwt)
2419
(action (run %{exe:main.exe}))
2520
(deps bytes_io_data %{exe:dummy.exe})
2621
)
27-
28-
(alias
29-
(name runtest_libuv)
30-
(package lwt)
31-
(action (run %{exe:luv_main.exe}))
32-
(deps bytes_io_data)
33-
)

test/unix/luv_main.ml

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)