Skip to content

Commit

Permalink
adds to uuidm a lower bound constraint on the cmdliner version
Browse files Browse the repository at this point in the history
The uuidm.0.9.7 version is missing a conflict that defines the lower
bound constraint on the cmdliner version, which results in the
following error,
```
File "test/uuidtrip.ml", line 85, characters 8-13:
85 |   Term.(const gen $ version $ ns $ name_ $ upper $ binary),
```

When uuidm.0.9.7 [is built][1] with cmdliner.0.9.4.

Discovered in PR ocaml#21781, fixed in a separate PR for cleaner history.

CC Daniel @dbuenzli for the situational awareness.

[1]: https://opam.ci.ocaml.org/github/ocaml/opam-repository/commit/bb37510c2bf1d1e78cfa6c25a14fe0c9627562f8/variant/opam-2.1,compilers,4.08,bap-core-theory.2.5.0,lower-bounds
  • Loading branch information
ivg committed Jul 13, 2022
1 parent 2dfb85b commit ca03198
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/uuidm/uuidm.0.9.7/opam
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ depends: [
"ocamlbuild" {build}
"topkg" {build} ]
depopts: [ "cmdliner" ]
conflicts: [
"cmdliner" {< "0.9.8"}
]
build:
[ "ocaml" "pkg/pkg.ml" "build"
"--pinned" "%{pinned}%"
Expand Down

0 comments on commit ca03198

Please sign in to comment.