Is it possible to allow to build the package using 3.x versions of the dune package?
Currently the package requires dune 2.6 version, as it is set in drom.toml. So, drom generates dune-project with the following dependency: (dune (and (>= 2.6.0) (< 3.0.0))). This makes total sense, because the next major version of dune may contain incompatible changes. But for this particular package everything works fine with dune 3.4.6.
This dependency creates the following problem.
I'm trying to install ocaml-solidity, which depends on ez_file and (undirectly) on ocplib_stuff. Both of the dependencies require dune < 3.0.0. But ocaml-lsp-server from my switch requires dune >= 3.0. So I need to clone both of the dependencies locally, change the dune version to 3.0+ and build them from sources, before installing ocaml-solidity. This workaround works well, but this is not very convenient.
Is it possible to allow to build the package using
3.xversions of thedunepackage?Currently the package requires
dune2.6version, as it is set indrom.toml. So,dromgeneratesdune-projectwith the following dependency:(dune (and (>= 2.6.0) (< 3.0.0))). This makes total sense, because the next major version ofdunemay contain incompatible changes. But for this particular package everything works fine withdune3.4.6.This dependency creates the following problem.
I'm trying to install
ocaml-solidity, which depends onez_fileand (undirectly) onocplib_stuff. Both of the dependencies requiredune< 3.0.0. Butocaml-lsp-serverfrom my switch requiresdune>= 3.0. So I need to clone both of the dependencies locally, change theduneversion to3.0+and build them from sources, before installingocaml-solidity. This workaround works well, but this is not very convenient.