this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prevent ip2locationio from building with dune 3.13

Dune 3.13 introduces an additional check for the validity of the package
names for opam dependencies thus `lwt.unix` is flagged as invalid.
`lwt.unix` does not make much sense as an OPAM package as it is a
findlib name and available in the `lwt` package.

PR with fix upstream submitted: https://github.com/ip2location/ip2location-io-ocaml/pull/2

Example of failing build:
https://opam.ci.ocaml.org/github/ocaml/opam-repository/commit/fa3e075e57439140df4aacda519ec59df15e0b66/variant/compilers,4.14,dune-configurator.3.13.0~alpha1,revdeps,ip2locationio.1.0.0

+1 -1
+1 -1
packages/ip2locationio/ip2locationio.1.0.0/opam
··· 12 12 bug-reports: "https://github.com/ip2location/ip2location-io-ocaml/issues" 13 13 depends: [ 14 14 "ocaml" {>= "4.13"} 15 - "dune" {>= "3.4"} 15 + "dune" {>= "3.4" & < "3.13"} 16 16 "lwt" 17 17 "cohttp" 18 18 "cohttp-lwt-unix"