My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

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

day11: move opam file and dune-project into day11/ subdirectory

Like other packages in this monorepo, day11 now has its own
dune-project at day11/dune-project and the generated opam file
at day11/day11.opam.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+12 -43
-22
day11.opam
··· 1 - # This file is generated by dune, edit dune-project instead 2 - opam-version: "2.0" 3 - synopsis: "OCaml package build and documentation system" 4 - depends: [ 5 - "dune" {>= "3.20"} 6 - "odoc" {with-doc} 7 - ] 8 - build: [ 9 - ["dune" "subst"] {dev} 10 - [ 11 - "dune" 12 - "build" 13 - "-p" 14 - name 15 - "-j" 16 - jobs 17 - "@install" 18 - "@runtest" {with-test} 19 - "@doc" {with-doc} 20 - ] 21 - ] 22 - x-maintenance-intent: ["(latest)"]
+3 -21
day11/day11.opam
··· 1 1 # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 - synopsis: "Containerized opam package builder" 4 - description: 5 - "Build opam packages in isolated containers with layered caching" 6 - maintainer: ["Maintainer Name <maintainer@example.com>"] 7 - authors: ["Author Name <author@example.com>"] 8 - license: "LICENSE" 3 + synopsis: "OCaml package build and documentation system" 9 4 depends: [ 10 - "ocaml" {>= "5.3.0"} 11 - "dune" {>= "3.17"} 12 - "bos" 13 - "eio_main" 14 - "fpath" 15 - "logs" 16 - "rresult" 17 - "yojson" 18 - "opam-0install" 19 - "opam-format" 20 - "cmdliner" {< "2.0.0"} 21 - "dockerfile" 22 - "str" 23 - "alcotest" {with-test} 5 + "dune" {>= "3.20"} 24 6 "odoc" {with-doc} 25 7 ] 26 8 build: [ ··· 37 19 "@doc" {with-doc} 38 20 ] 39 21 ] 40 - dev-repo: "https://tangled.org/jon.recoil.org/day11" 22 + x-maintenance-intent: ["(latest)"]
+9
day11/dune-project
··· 1 + (lang dune 3.20) 2 + (name day11) 3 + 4 + (generate_opam_files true) 5 + 6 + (package 7 + (name day11) 8 + (synopsis "OCaml package build and documentation system") 9 + (allow_empty))