this repo has no description
0
fork

Configure Feed

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

Merge pull request #25831 from kit-ty-kate/fix-281

config-file is not compatible with OCaml 5.0 (uses Genlex)

authored by

Anil Madhavapeddy and committed by
GitHub
cf263556 dbe65578

+3 -3
+1 -1
packages/config-file/config-file.1.1/opam
··· 10 10 ["./configure" "--prefix" prefix] 11 11 [make "uninstall"] 12 12 ] 13 - depends: ["ocaml" "ocamlfind" "camlp4"] 13 + depends: ["ocaml" {< "5.0"} "ocamlfind" "camlp4"] 14 14 install: [make "install"] 15 15 synopsis: "Small library to define, load and save options files." 16 16 url {
+1 -1
packages/config-file/config-file.1.2.1/opam
··· 18 18 bug-reports: "https://github.com/MisterDA/config-file/issues" 19 19 depends: [ 20 20 "dune" {>= "2.9"} 21 - "ocaml" {>= "4.02"} 21 + "ocaml" {>= "4.02" & < "5.0"} 22 22 "camlp4" {build} 23 23 "cppo" {>= "1.6.7" & build} 24 24 "odoc" {with-doc}
+1 -1
packages/config-file/config-file.1.2/opam
··· 11 11 ] 12 12 remove: [["ocamlfind" "remove" "config-file"]] 13 13 depends: [ 14 - "ocaml" {>= "4.00"} 14 + "ocaml" {>= "4.00" & < "5.0"} 15 15 "ocamlfind" 16 16 "camlp4" 17 17 ]