My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

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

Squashed 'braid/' changes from 6fa14e1..20ed263

20ed263 Release capability reference after RPC call completes
642dc98 Fix RPC server cwd issue and improve error handling
0d3b7bc Add two-stage build and remove --dry-run flag

git-subtree-dir: braid
git-subtree-split: 20ed263a5ebfee5c67d2241980c3e68b26857ddc

+4201 -144
+7 -23
README.md
··· 76 76 - `-o, --output PATH` - Output directory for results (default: results) 77 77 - `--opam-repo PATH` - Path to the main opam repository (default: /home/mtelvers/opam-repository) 78 78 - `--cache-dir PATH` - Cache directory for day10 (default: /var/cache/day10) 79 - - `--dry-run` - Only solve dependencies, don't actually build 80 79 - `--os OS` - Operating system (default: linux) 81 80 - `--os-family FAMILY` - OS family (default: debian) 82 81 - `--os-distribution DIST` - OS distribution (default: debian) ··· 93 92 94 93 # Stack multiple overlays (first has highest priority) 95 94 braid merge-test /path/to/repo1 /path/to/repo2 /path/to/repo3 96 - 97 - # Quick dependency check without building 98 - braid merge-test /path/to/overlay --dry-run 99 95 ``` 100 96 101 97 **How it works:** 102 98 103 99 1. Lists packages from all overlay repositories (not from opam-repository) 104 100 2. **Stage 1:** Runs `day10 health-check --dry-run --fork N` for fast parallel dependency solving 105 - 3. **Stage 2:** For packages that returned "solution" (solvable but not built), runs `day10 health-check` without `--dry-run` to actually build them 106 - 107 - With `--dry-run`, only stage 1 runs, showing which packages are solvable without building them. 101 + 3. **Stage 2:** For packages with "solution" status, runs `day10 health-check` to actually build them 108 102 109 103 **Querying merge-test results:** 110 104 ··· 424 418 } 425 419 ``` 426 420 427 - ### 2. Run Initial Merge Test 428 - 429 - Test the overlay with a quick dry-run first: 430 - 431 - ```bash 432 - braid merge-test ~/claude-repo --dry-run -o results 433 - ``` 434 - 435 - This shows which packages are solvable without building. The output includes a "solution" count for packages that can be built. 436 - 437 - ### 3. Run Full Build Test 421 + ### 2. Run Merge Test 438 422 439 - Run the actual build: 423 + Run the merge test: 440 424 441 425 ```bash 442 426 braid merge-test ~/claude-repo -o results ··· 450 434 Results: 1 success, 2 failure, 0 dep_failed, 0 no_solution, 0 error 451 435 ``` 452 436 453 - ### 4. Diagnose Failures 437 + ### 3. Diagnose Failures 454 438 455 439 Check which packages failed: 456 440 ··· 471 455 | ^~~~~~~~~~~~~~~~~~~~~ 472 456 ``` 473 457 474 - ### 5. Fix and Retest 458 + ### 4. Fix and Retest 475 459 476 460 In this case, the package needs `conf-pam` as a build dependency. Update the opam file: 477 461 ··· 494 478 Results: 3 success, 0 failure, 0 dep_failed, 0 no_solution, 0 error 495 479 ``` 496 480 497 - ### 6. Test Multiple Stacked Overlays 481 + ### 5. Test Multiple Stacked Overlays 498 482 499 483 Test what happens when merging multiple overlays together: 500 484 ··· 504 488 505 489 Overlays are listed in priority order (first = highest priority, "on top"). This tests the combined effect of merging all overlays. 506 490 507 - ### 7. Query Results 491 + ### 6. Query Results 508 492 509 493 After testing, query the manifest for details: 510 494
+41 -41
bin/main.ml
··· 76 76 ~repo_url:repo_path ~num_commits ~fork_jobs 77 77 ~os ~os_family ~os_distribution ~os_version in 78 78 let json = Yojson.Basic.from_string manifest_json in 79 - let manifest = Json.manifest_of_json json in 80 - (* Write manifest to output directory *) 81 - (try Unix.mkdir output_dir 0o755 with Unix.Unix_error (Unix.EEXIST, _, _) -> ()); 82 - let manifest_path = Filename.concat output_dir "manifest.json" in 83 - let _ = Json.write_manifest manifest_path manifest in 84 - let (s, f, d, n, b, e) = Query.summary manifest in 85 - Fmt.pr "Processed %d commits, %d packages (remote)@." 86 - (List.length manifest.commits) (List.length manifest.packages); 87 - Fmt.pr "Latest: %d success, %d failure, %d dep_failed, %d no_solution, %d solution, %d error@." 88 - s f d n b e; 89 - `Ok () 79 + (* Check for error response *) 80 + (match Yojson.Basic.Util.(json |> member "error" |> to_string_option) with 81 + | Some err_msg -> 82 + Fmt.epr "Remote error: %s@." err_msg; 83 + `Error (false, "remote run failed") 84 + | None -> 85 + let manifest = Json.manifest_of_json json in 86 + (* Write manifest to output directory *) 87 + (try Unix.mkdir output_dir 0o755 with Unix.Unix_error (Unix.EEXIST, _, _) -> ()); 88 + let manifest_path = Filename.concat output_dir "manifest.json" in 89 + let _ = Json.write_manifest manifest_path manifest in 90 + let (s, f, d, n, b, e) = Query.summary manifest in 91 + Fmt.pr "Processed %d commits, %d packages (remote)@." 92 + (List.length manifest.commits) (List.length manifest.packages); 93 + Fmt.pr "Latest: %d success, %d failure, %d dep_failed, %d no_solution, %d solution, %d error@." 94 + s f d n b e; 95 + `Ok ()) 90 96 | None -> 91 97 (* Local execution *) 92 98 match Runner.run ~repo_path ~opam_repo_path:opam_repo ~cache_dir ~output_dir ··· 148 154 let doc = "OS version" in 149 155 Arg.(value & opt string "13" & info ["os-version"] ~docv:"VERSION" ~doc) 150 156 in 151 - let dry_run = 152 - let doc = "Only solve dependencies, don't actually build" in 153 - Arg.(value & flag & info ["dry-run"] ~doc) 154 - in 155 157 156 158 let run _setup overlay_repos opam_repo cache_dir output_dir fork_jobs 157 - os os_family os_distribution os_version dry_run connect = 159 + os os_family os_distribution os_version connect = 158 160 match connect with 159 161 | Some cap_file -> 160 162 (* Remote execution via RPC *) ··· 162 164 Eio.Switch.run @@ fun sw -> 163 165 let net = Eio.Stdenv.net env in 164 166 let manifest_json = Rpc_client.merge_test_remote ~sw ~net ~cap_file 165 - ~repo_urls:overlay_repos ~dry_run ~fork_jobs 167 + ~repo_urls:overlay_repos ~fork_jobs 166 168 ~os ~os_family ~os_distribution ~os_version in 167 169 let json = Yojson.Basic.from_string manifest_json in 168 - let manifest = Json.manifest_of_json json in 169 - (* Write manifest to output directory *) 170 - (try Unix.mkdir output_dir 0o755 with Unix.Unix_error (Unix.EEXIST, _, _) -> ()); 171 - let manifest_path = Filename.concat output_dir "manifest.json" in 172 - let _ = Json.write_manifest manifest_path manifest in 173 - let (s, f, d, n, b, e) = Query.summary manifest in 174 - Fmt.pr "Merge test: %d overlay repos, %d packages (remote)@." 175 - (List.length overlay_repos) (List.length manifest.packages); 176 - Fmt.pr "Overlay repos (priority order):@."; 177 - List.iter (fun r -> Fmt.pr " %s@." r) overlay_repos; 178 - if dry_run then 179 - Fmt.pr "Results: %d success, %d failure, %d dep_failed, %d no_solution, %d solution, %d error@." 180 - s f d n b e 181 - else 170 + (* Check for error response *) 171 + (match Yojson.Basic.Util.(json |> member "error" |> to_string_option) with 172 + | Some err_msg -> 173 + Fmt.epr "Remote error: %s@." err_msg; 174 + `Error (false, "remote merge-test failed") 175 + | None -> 176 + let manifest = Json.manifest_of_json json in 177 + (* Write manifest to output directory *) 178 + (try Unix.mkdir output_dir 0o755 with Unix.Unix_error (Unix.EEXIST, _, _) -> ()); 179 + let manifest_path = Filename.concat output_dir "manifest.json" in 180 + let _ = Json.write_manifest manifest_path manifest in 181 + let (s, f, d, n, _b, e) = Query.summary manifest in 182 + Fmt.pr "Merge test: %d overlay repos, %d packages (remote)@." 183 + (List.length overlay_repos) (List.length manifest.packages); 184 + Fmt.pr "Overlay repos (priority order):@."; 185 + List.iter (fun r -> Fmt.pr " %s@." r) overlay_repos; 182 186 Fmt.pr "Results: %d success, %d failure, %d dep_failed, %d no_solution, %d error@." 183 187 s f d n e; 184 - `Ok () 188 + `Ok ()) 185 189 | None -> 186 190 (* Local execution *) 187 191 match Runner.merge_test ~overlay_repos ~opam_repo_path:opam_repo ~cache_dir ~output_dir 188 - ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~dry_run with 192 + ~os ~os_family ~os_distribution ~os_version ~fork_jobs with 189 193 | Ok manifest -> 190 - let (s, f, d, n, b, e) = Query.summary manifest in 194 + let (s, f, d, n, _b, e) = Query.summary manifest in 191 195 Fmt.pr "Merge test: %d overlay repos, %d packages@." 192 196 (List.length overlay_repos) (List.length manifest.packages); 193 197 Fmt.pr "Overlay repos (priority order):@."; 194 198 List.iter (fun r -> Fmt.pr " %s@." r) overlay_repos; 195 - if dry_run then 196 - Fmt.pr "Results: %d success, %d failure, %d dep_failed, %d no_solution, %d solution, %d error@." 197 - s f d n b e 198 - else 199 - Fmt.pr "Results: %d success, %d failure, %d dep_failed, %d no_solution, %d error@." 200 - s f d n e; 199 + Fmt.pr "Results: %d success, %d failure, %d dep_failed, %d no_solution, %d error@." 200 + s f d n e; 201 201 `Ok () 202 202 | Error e -> 203 203 Fmt.epr "Error: %a@." Rresult.R.pp_msg e; ··· 208 208 let info = Cmd.info "merge-test" ~doc in 209 209 Cmd.v info Term.(ret (const run $ setup_log_term $ overlay_repos $ opam_repo $ cache_dir 210 210 $ output_dir $ fork_jobs 211 - $ os $ os_family $ os_distribution $ os_version $ dry_run $ connect_arg)) 211 + $ os $ os_family $ os_distribution $ os_version $ connect_arg)) 212 212 213 213 (* Server subcommand *) 214 214 let server_cmd =
+4030
braid-res/manifest.json
··· 1 + { 2 + "repo_path": "/tmp/braid.uAva47/aoah-opam-repo", 3 + "opam_repo_path": "/home/mte24/opam-repository", 4 + "os": "debian-13", 5 + "os_version": "13", 6 + "generated_at": "2026-01-22T10:36:05Z", 7 + "commits": [ 8 + "664df44", "633e020", "a997cb2", "e32aea2", "d1443bf", "3289824", 9 + "b92aa39", "2345324", "2f148b1", "301ed63" 10 + ], 11 + "packages": [ 12 + "apubt.dev", "atp-lexicon-atproto.dev", "atp-lexicon-bsky.dev", 13 + "atp-lexicon-standard-site.dev", "atp-lexicon-tangled.dev", 14 + "atp-xrpc.dev", "atp.dev", "braid.dev", "bsky.dev", "bushel.dev", 15 + "bytesrw-eio.dev", "cbort.dev", "cff.dev", "claude.dev", "conpool.dev", 16 + "cookeio.dev", "crockford.dev", "frontmatter-eio.dev", "frontmatter.dev", 17 + "hermest-cli.dev", "hermest.dev", "html5rw.dev", "imapd.dev", "init.dev", 18 + "jmap.dev", "json-pointer.dev", "jsonwt.dev", "karakeep.dev", 19 + "langdetect.dev", "mail-flag.dev", "matrix.dev", "mdns.dev", 20 + "monopam.dev", "mqtte.dev", "odoc-xo.dev", "owntracks-cli.dev", 21 + "owntracks.dev", "peertube.dev", "poe.dev", "publicsuffix.dev", 22 + "punycode.dev", "requests.dev", "srcsetter-cmd.dev", "srcsetter.dev", 23 + "standard-site.dev", "tangled.dev", "tomlt.dev", "typesense.dev", 24 + "webfinger.dev", "xdge.dev", "xrpc-auth.dev", "yamlrw-eio.dev", 25 + "yamlrw-unix.dev", "yamlrw.dev", "yamlt.dev", "zotero-translation.dev", 26 + "zulip.dev" 27 + ], 28 + "results": [ 29 + { 30 + "commit": "664df44488587c519dc37aed3d598c60d400dbed", 31 + "short_commit": "664df44", 32 + "message": "metadata sync", 33 + "packages": [ 34 + { 35 + "status": "no_solution", 36 + "name": "apubt.dev", 37 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 38 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&apubt ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- apubt -> apubt.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 39 + }, 40 + { 41 + "status": "dependency_failed", 42 + "name": "atp-lexicon-atproto.dev", 43 + "sha": "", 44 + "layer": "6e03dbe03b561e34d8c7a0087c172e4a", 45 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 46 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 47 + }, 48 + { 49 + "status": "dependency_failed", 50 + "name": "atp-lexicon-bsky.dev", 51 + "sha": "", 52 + "layer": "6e03dbe03b561e34d8c7a0087c172e4a", 53 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 54 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 55 + }, 56 + { 57 + "status": "dependency_failed", 58 + "name": "atp-lexicon-standard-site.dev", 59 + "sha": "", 60 + "layer": "6e03dbe03b561e34d8c7a0087c172e4a", 61 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 62 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 63 + }, 64 + { 65 + "status": "dependency_failed", 66 + "name": "atp-lexicon-tangled.dev", 67 + "sha": "", 68 + "layer": "6e03dbe03b561e34d8c7a0087c172e4a", 69 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 70 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 71 + }, 72 + { 73 + "status": "no_solution", 74 + "name": "atp-xrpc.dev", 75 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 76 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 77 + }, 78 + { 79 + "status": "failure", 80 + "name": "atp.dev", 81 + "sha": "", 82 + "layer": "6e03dbe03b561e34d8c7a0087c172e4a", 83 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 84 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 85 + }, 86 + { 87 + "status": "success", 88 + "name": "braid.dev", 89 + "sha": "", 90 + "layer": "a4c1b2222056f1d5a3112cb66491823e", 91 + "log": "Processing: [default: loading data]\n[WARNING] Input error:\n This file is for package 'braid.dev' but has mismatching fields 'version:0.1.0.\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n-> retrieved braid.dev (git+https://github.com/avsm/braid#main)\n[braid: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/braid.dev)\n[braid: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"braid\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/braid.dev)\n- (cd _build/default/lib && /usr/bin/capnp compile -o /home/opam/.opam/default/bin/capnpc-ocaml rpc_schema.capnp)\n- rpc_schema.capnp --> rpc_schema.mli rpc_schema.ml\n-> compiled braid.dev\n-> installed braid.dev\n[WARNING] Opam packages conf-capnproto.2 and conf-gmp.5 depend on the following system packages that are no longer installed: capnproto libcapnp-dev libgmp-dev\n - conf-capnproto.2: depends on capnproto, libcapnp-dev\n - conf-gmp.5: depends on libgmp-dev\n", 92 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"asetmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base.v0.17.3\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\" \"ocaml_intrinsics_kernel.v0.17.1\" \"sexplib0.v0.17.0\"}\n \"base-bytes.base\" -> {\"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"braid.dev\" -> {\"bos.0.2.1\" \"capnp.3.6.0\" \"capnp-rpc.2.1\" \"capnp-rpc-unix.2.1\" \"cmdliner.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"capnp.3.6.0\" -> {\"base.v0.17.3\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocplib-endian.1.2\" \"res.5.0.2\" \"result.1.5\" \"stdint.0.7.2\" \"stdio.v0.17.0\"}\n \"capnp-rpc.2.1\" -> {\"astring.0.8.5\" \"capnp.3.6.0\" \"conf-capnproto.2\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"stdint.0.7.2\" \"uri.4.4.0\"}\n \"capnp-rpc-net.2.1\" -> {\"asn1-combinators.0.3.2\" \"astring.0.8.5\" \"base64.3.5.2\" \"capnp.3.6.0\" \"capnp-rpc.2.1\" \"conf-capnproto.2\" \"cstruct.6.2.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"prometheus.1.3\" \"ptime.1.2.0\" \"tls-eio.2.0.3\" \"uri.4.4.0\" \"x509.1.0.6\"}\n \"capnp-rpc-unix.2.1\" -> {\"astring.0.8.5\" \"base64.3.5.2\" \"capnp-rpc-net.2.1\" \"cmdliner.1.3.0\" \"cstruct.6.2.0\" \"dune.3.21.0\" \"eio.1.3\" \"extunix.0.4.4\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"logs.0.10.0\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"cmdliner.1.3.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"cppo.1.8.0\" -> {\"base-unix.base\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"extunix.0.4.4\" -> {\"base-bigarray.base\" \"base-bytes.base\" \"base-unix.base\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\" \"ppxlib.0.37.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.1.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.1.3.0\" \"fmt.0.11.0\" \"lwt.6.0.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt.6.0.0\" -> {\"base-threads.base\" \"base-unix.base\" \"cppo.1.8.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\" \"ocplib-endian.1.2\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-compiler-libs.v0.17.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml_intrinsics_kernel.v0.17.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ocplib-endian.1.2\" -> {\"base-bytes.base\" \"cppo.1.8.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ppx_derivers.1.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ppxlib.0.37.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-compiler-libs.v0.17.0\" \"ppx_derivers.1.2.1\" \"sexplib0.v0.17.0\" \"stdlib-shims.0.3.0\"}\n \"prometheus.1.3\" -> {\"asetmap.0.8.1\" \"astring.0.8.5\" \"dune.3.21.0\" \"lwt.6.0.0\" \"ocaml.5.3.0\" \"re.1.14.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"re.1.14.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"res.5.0.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"result.1.5\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"sexplib0.v0.17.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stdint.0.7.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stdio.v0.17.0\" -> {\"base.v0.17.3\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 93 + }, 94 + { 95 + "status": "no_solution", 96 + "name": "bsky.dev", 97 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 98 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 99 + }, 100 + { 101 + "status": "no_solution", 102 + "name": "bushel.dev", 103 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 104 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 105 + }, 106 + { 107 + "status": "success", 108 + "name": "bytesrw-eio.dev", 109 + "sha": "", 110 + "layer": "81cc3765f99b84aa1c3f8ec504d2ff74", 111 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 112 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 113 + }, 114 + { 115 + "status": "success", 116 + "name": "cbort.dev", 117 + "sha": "", 118 + "layer": "e9cef78e28e3c5d58fc71575a4be9831", 119 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 120 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 121 + }, 122 + { 123 + "status": "success", 124 + "name": "cff.dev", 125 + "sha": "", 126 + "layer": "16f9dacae3ba0ee74a1570fdaab594c2", 127 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 128 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 129 + }, 130 + { 131 + "status": "failure", 132 + "name": "claude.dev", 133 + "sha": "", 134 + "layer": "83cf7337737550a2a0b2429d6f14aad9", 135 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 136 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n}\n" 137 + }, 138 + { 139 + "status": "success", 140 + "name": "conpool.dev", 141 + "sha": "", 142 + "layer": "73dbefe1aff6b45dadc3bfeb039d1ee1", 143 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 144 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 145 + }, 146 + { 147 + "status": "no_solution", 148 + "name": "cookeio.dev", 149 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 150 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 151 + }, 152 + { 153 + "status": "success", 154 + "name": "crockford.dev", 155 + "sha": "", 156 + "layer": "4d9fd275ad338b950ea5441f066a17e3", 157 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 158 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 159 + }, 160 + { 161 + "status": "dependency_failed", 162 + "name": "frontmatter-eio.dev", 163 + "sha": "", 164 + "layer": "dd6b134e05b3a0214d64e0d12562a6d2", 165 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 166 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 167 + }, 168 + { 169 + "status": "failure", 170 + "name": "frontmatter.dev", 171 + "sha": "", 172 + "layer": "dd6b134e05b3a0214d64e0d12562a6d2", 173 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 174 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 175 + }, 176 + { 177 + "status": "dependency_failed", 178 + "name": "hermest-cli.dev", 179 + "sha": "", 180 + "layer": "1123fe3f5f5ec8943782ae6ac841d790", 181 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 182 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 183 + }, 184 + { 185 + "status": "failure", 186 + "name": "hermest.dev", 187 + "sha": "", 188 + "layer": "1123fe3f5f5ec8943782ae6ac841d790", 189 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 190 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 191 + }, 192 + { 193 + "status": "failure", 194 + "name": "html5rw.dev", 195 + "sha": "", 196 + "layer": "d0cf81d14660aeefe3624092db12f08e", 197 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 198 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 199 + }, 200 + { 201 + "status": "no_solution", 202 + "name": "imapd.dev", 203 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 204 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 205 + }, 206 + { 207 + "status": "failure", 208 + "name": "init.dev", 209 + "sha": "", 210 + "layer": "2a681fe792e1090acf06f7171ec57784", 211 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 212 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 213 + }, 214 + { 215 + "status": "no_solution", 216 + "name": "jmap.dev", 217 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 218 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 219 + }, 220 + { 221 + "status": "success", 222 + "name": "json-pointer.dev", 223 + "sha": "", 224 + "layer": "a41fef662ae9df1d593b4df35df53b86", 225 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 226 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 227 + }, 228 + { 229 + "status": "success", 230 + "name": "jsonwt.dev", 231 + "sha": "", 232 + "layer": "bf236197718b4ec90644ca80f9511ad2", 233 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 234 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 235 + }, 236 + { 237 + "status": "no_solution", 238 + "name": "karakeep.dev", 239 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 240 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 241 + }, 242 + { 243 + "status": "failure", 244 + "name": "langdetect.dev", 245 + "sha": "", 246 + "layer": "11e3254c69e216948b22c55187daed87", 247 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 248 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 249 + }, 250 + { 251 + "status": "success", 252 + "name": "mail-flag.dev", 253 + "sha": "", 254 + "layer": "ba0cf1d4adde2da0e096e4c159f080cb", 255 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 256 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 257 + }, 258 + { 259 + "status": "no_solution", 260 + "name": "matrix.dev", 261 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 262 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 263 + }, 264 + { 265 + "status": "failure", 266 + "name": "mdns.dev", 267 + "sha": "", 268 + "layer": "a7f1c6fb5d9e08a364f82ba222af3532", 269 + "log": "Processing: [default: loading data]\n[mdns: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mdns\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mdns.dev)\n- Error: I don't know about package mdns (passed through --only-packages)\n[ERROR] The compilation of mdns.dev failed at \"dune build -p mdns -j 39 @install\".\nbuild failed... \n", 270 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"dns.10.2.3\" -> {\"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"duration.0.2.1\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"logs.0.10.0\" \"lru.0.3.1\" \"metrics.0.5.0\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lru.0.3.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"psq.0.2.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mdns.dev\" -> {\"dns.10.2.3\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"eio.1.3\" \"ipaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"metrics.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 271 + }, 272 + { 273 + "status": "no_solution", 274 + "name": "monopam.dev", 275 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 276 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 menhir.20250912 menhirCST.20250912\n menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 opam-file-format.2.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 tangled.dev thread-table.1.0.0 tls.2.0.3\n tls-eio.2.0.3 tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14 ocaml&monopam\n ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- monopam -> monopam.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 277 + }, 278 + { 279 + "status": "failure", 280 + "name": "mqtte.dev", 281 + "sha": "", 282 + "layer": "c2ac3d8b8bceb9aafdba68fb74e622e3", 283 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 284 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 285 + }, 286 + { 287 + "status": "dependency_failed", 288 + "name": "odoc-xo.dev", 289 + "sha": "", 290 + "layer": "c9ca2f1951d8482b0df30b12e9a121ff", 291 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 292 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 293 + }, 294 + { 295 + "status": "no_solution", 296 + "name": "owntracks-cli.dev", 297 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 298 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 299 + }, 300 + { 301 + "status": "failure", 302 + "name": "owntracks.dev", 303 + "sha": "", 304 + "layer": "4e2571007b6ddaec0addedd6b9a66c12", 305 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 306 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 307 + }, 308 + { 309 + "status": "no_solution", 310 + "name": "peertube.dev", 311 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 312 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 313 + }, 314 + { 315 + "status": "no_solution", 316 + "name": "poe.dev", 317 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 318 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 319 + }, 320 + { 321 + "status": "no_solution", 322 + "name": "publicsuffix.dev", 323 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 324 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 325 + }, 326 + { 327 + "status": "no_solution", 328 + "name": "punycode.dev", 329 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 330 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 331 + }, 332 + { 333 + "status": "no_solution", 334 + "name": "requests.dev", 335 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 336 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 337 + }, 338 + { 339 + "status": "success", 340 + "name": "srcsetter-cmd.dev", 341 + "sha": "", 342 + "layer": "8aa5bf4cccc88204a4dd1d01258d4ac7", 343 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 344 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 345 + }, 346 + { 347 + "status": "success", 348 + "name": "srcsetter.dev", 349 + "sha": "", 350 + "layer": "efbaf0eb69cfeba7b2d677853730bfda", 351 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 352 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 353 + }, 354 + { 355 + "status": "no_solution", 356 + "name": "standard-site.dev", 357 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 358 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 359 + }, 360 + { 361 + "status": "no_solution", 362 + "name": "tangled.dev", 363 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 364 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 365 + }, 366 + { 367 + "status": "success", 368 + "name": "tomlt.dev", 369 + "sha": "", 370 + "layer": "173fa1b2a20faac18c6b33424a63147a", 371 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 372 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 373 + }, 374 + { 375 + "status": "no_solution", 376 + "name": "typesense.dev", 377 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 378 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 379 + }, 380 + { 381 + "status": "no_solution", 382 + "name": "webfinger.dev", 383 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 384 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 385 + }, 386 + { 387 + "status": "success", 388 + "name": "xdge.dev", 389 + "sha": "", 390 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 391 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 392 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 393 + }, 394 + { 395 + "status": "no_solution", 396 + "name": "xrpc-auth.dev", 397 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 398 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 399 + }, 400 + { 401 + "status": "success", 402 + "name": "yamlrw-eio.dev", 403 + "sha": "", 404 + "layer": "81e06f73a529ed5f799627fbfda10fdf", 405 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 406 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 407 + }, 408 + { 409 + "status": "success", 410 + "name": "yamlrw-unix.dev", 411 + "sha": "", 412 + "layer": "ce0b605cf97e9395fe6b43ba93ff241b", 413 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 414 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 415 + }, 416 + { 417 + "status": "success", 418 + "name": "yamlrw.dev", 419 + "sha": "", 420 + "layer": "1dd5e233f9324fdf0106cd6774de4c4f", 421 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 422 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 423 + }, 424 + { 425 + "status": "success", 426 + "name": "yamlt.dev", 427 + "sha": "", 428 + "layer": "876f4f9467bc98e59ea9ee95d75c43d7", 429 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 430 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 431 + }, 432 + { 433 + "status": "no_solution", 434 + "name": "zotero-translation.dev", 435 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 436 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 437 + }, 438 + { 439 + "status": "no_solution", 440 + "name": "zulip.dev", 441 + "sha": "664df44488587c519dc37aed3d598c60d400dbed31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 442 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 443 + } 444 + ] 445 + }, 446 + { 447 + "commit": "633e0206f15d2590bfa97860b3efd71226950cac", 448 + "short_commit": "633e020", 449 + "message": "+braid", 450 + "packages": [ 451 + { 452 + "status": "no_solution", 453 + "name": "apubt.dev", 454 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 455 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&apubt ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- apubt -> apubt.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 456 + }, 457 + { 458 + "status": "dependency_failed", 459 + "name": "atp-lexicon-atproto.dev", 460 + "sha": "", 461 + "layer": "025fada5602c251d083a20586e17e4df", 462 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 463 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 464 + }, 465 + { 466 + "status": "dependency_failed", 467 + "name": "atp-lexicon-bsky.dev", 468 + "sha": "", 469 + "layer": "025fada5602c251d083a20586e17e4df", 470 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 471 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 472 + }, 473 + { 474 + "status": "dependency_failed", 475 + "name": "atp-lexicon-standard-site.dev", 476 + "sha": "", 477 + "layer": "025fada5602c251d083a20586e17e4df", 478 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 479 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 480 + }, 481 + { 482 + "status": "dependency_failed", 483 + "name": "atp-lexicon-tangled.dev", 484 + "sha": "", 485 + "layer": "025fada5602c251d083a20586e17e4df", 486 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 487 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 488 + }, 489 + { 490 + "status": "no_solution", 491 + "name": "atp-xrpc.dev", 492 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 493 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 494 + }, 495 + { 496 + "status": "failure", 497 + "name": "atp.dev", 498 + "sha": "", 499 + "layer": "025fada5602c251d083a20586e17e4df", 500 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 501 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 502 + }, 503 + { 504 + "status": "success", 505 + "name": "braid.dev", 506 + "sha": "", 507 + "layer": "a4c1b2222056f1d5a3112cb66491823e", 508 + "log": "Processing: [default: loading data]\n[WARNING] Input error:\n This file is for package 'braid.dev' but has mismatching fields 'version:0.1.0.\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n[braid.dev: git]\n-> retrieved braid.dev (git+https://github.com/avsm/braid#main)\n[braid: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/braid.dev)\n[braid: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"braid\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/braid.dev)\n- (cd _build/default/lib && /usr/bin/capnp compile -o /home/opam/.opam/default/bin/capnpc-ocaml rpc_schema.capnp)\n- rpc_schema.capnp --> rpc_schema.mli rpc_schema.ml\n-> compiled braid.dev\n-> installed braid.dev\n[WARNING] Opam packages conf-capnproto.2 and conf-gmp.5 depend on the following system packages that are no longer installed: capnproto libcapnp-dev libgmp-dev\n - conf-capnproto.2: depends on capnproto, libcapnp-dev\n - conf-gmp.5: depends on libgmp-dev\n", 509 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"asetmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base.v0.17.3\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\" \"ocaml_intrinsics_kernel.v0.17.1\" \"sexplib0.v0.17.0\"}\n \"base-bytes.base\" -> {\"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"braid.dev\" -> {\"bos.0.2.1\" \"capnp.3.6.0\" \"capnp-rpc.2.1\" \"capnp-rpc-unix.2.1\" \"cmdliner.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"capnp.3.6.0\" -> {\"base.v0.17.3\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocplib-endian.1.2\" \"res.5.0.2\" \"result.1.5\" \"stdint.0.7.2\" \"stdio.v0.17.0\"}\n \"capnp-rpc.2.1\" -> {\"astring.0.8.5\" \"capnp.3.6.0\" \"conf-capnproto.2\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"stdint.0.7.2\" \"uri.4.4.0\"}\n \"capnp-rpc-net.2.1\" -> {\"asn1-combinators.0.3.2\" \"astring.0.8.5\" \"base64.3.5.2\" \"capnp.3.6.0\" \"capnp-rpc.2.1\" \"conf-capnproto.2\" \"cstruct.6.2.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"prometheus.1.3\" \"ptime.1.2.0\" \"tls-eio.2.0.3\" \"uri.4.4.0\" \"x509.1.0.6\"}\n \"capnp-rpc-unix.2.1\" -> {\"astring.0.8.5\" \"base64.3.5.2\" \"capnp-rpc-net.2.1\" \"cmdliner.1.3.0\" \"cstruct.6.2.0\" \"dune.3.21.0\" \"eio.1.3\" \"extunix.0.4.4\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"logs.0.10.0\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"cmdliner.1.3.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"cppo.1.8.0\" -> {\"base-unix.base\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"extunix.0.4.4\" -> {\"base-bigarray.base\" \"base-bytes.base\" \"base-unix.base\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\" \"ppxlib.0.37.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.1.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.1.3.0\" \"fmt.0.11.0\" \"lwt.6.0.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt.6.0.0\" -> {\"base-threads.base\" \"base-unix.base\" \"cppo.1.8.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\" \"ocplib-endian.1.2\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-compiler-libs.v0.17.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml_intrinsics_kernel.v0.17.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ocplib-endian.1.2\" -> {\"base-bytes.base\" \"cppo.1.8.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ppx_derivers.1.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ppxlib.0.37.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-compiler-libs.v0.17.0\" \"ppx_derivers.1.2.1\" \"sexplib0.v0.17.0\" \"stdlib-shims.0.3.0\"}\n \"prometheus.1.3\" -> {\"asetmap.0.8.1\" \"astring.0.8.5\" \"dune.3.21.0\" \"lwt.6.0.0\" \"ocaml.5.3.0\" \"re.1.14.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"re.1.14.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"res.5.0.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"result.1.5\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"sexplib0.v0.17.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stdint.0.7.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stdio.v0.17.0\" -> {\"base.v0.17.3\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 510 + }, 511 + { 512 + "status": "no_solution", 513 + "name": "bsky.dev", 514 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 515 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 516 + }, 517 + { 518 + "status": "no_solution", 519 + "name": "bushel.dev", 520 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 521 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 522 + }, 523 + { 524 + "status": "success", 525 + "name": "bytesrw-eio.dev", 526 + "sha": "", 527 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 528 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 529 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 530 + }, 531 + { 532 + "status": "success", 533 + "name": "cbort.dev", 534 + "sha": "", 535 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 536 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 537 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 538 + }, 539 + { 540 + "status": "success", 541 + "name": "cff.dev", 542 + "sha": "", 543 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 544 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 545 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 546 + }, 547 + { 548 + "status": "failure", 549 + "name": "claude.dev", 550 + "sha": "", 551 + "layer": "702d94150b31ca1887c445541829069e", 552 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 553 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 554 + }, 555 + { 556 + "status": "success", 557 + "name": "conpool.dev", 558 + "sha": "", 559 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 560 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 561 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 562 + }, 563 + { 564 + "status": "no_solution", 565 + "name": "cookeio.dev", 566 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 567 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 568 + }, 569 + { 570 + "status": "success", 571 + "name": "crockford.dev", 572 + "sha": "", 573 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 574 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 575 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 576 + }, 577 + { 578 + "status": "dependency_failed", 579 + "name": "frontmatter-eio.dev", 580 + "sha": "", 581 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 582 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 583 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 584 + }, 585 + { 586 + "status": "failure", 587 + "name": "frontmatter.dev", 588 + "sha": "", 589 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 590 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 591 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 592 + }, 593 + { 594 + "status": "dependency_failed", 595 + "name": "hermest-cli.dev", 596 + "sha": "", 597 + "layer": "036f6658c8528613dcd54d67f44aa45c", 598 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 599 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 600 + }, 601 + { 602 + "status": "failure", 603 + "name": "hermest.dev", 604 + "sha": "", 605 + "layer": "036f6658c8528613dcd54d67f44aa45c", 606 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 607 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 608 + }, 609 + { 610 + "status": "failure", 611 + "name": "html5rw.dev", 612 + "sha": "", 613 + "layer": "d7d194b875991f41abf86f008f600a41", 614 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 615 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 616 + }, 617 + { 618 + "status": "no_solution", 619 + "name": "imapd.dev", 620 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 621 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 622 + }, 623 + { 624 + "status": "failure", 625 + "name": "init.dev", 626 + "sha": "", 627 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 628 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 629 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 630 + }, 631 + { 632 + "status": "no_solution", 633 + "name": "jmap.dev", 634 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 635 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 636 + }, 637 + { 638 + "status": "success", 639 + "name": "json-pointer.dev", 640 + "sha": "", 641 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 642 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 643 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 644 + }, 645 + { 646 + "status": "success", 647 + "name": "jsonwt.dev", 648 + "sha": "", 649 + "layer": "6e458034bb9e49551940d407cb36ec3c", 650 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 651 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 652 + }, 653 + { 654 + "status": "no_solution", 655 + "name": "karakeep.dev", 656 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 657 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 658 + }, 659 + { 660 + "status": "failure", 661 + "name": "langdetect.dev", 662 + "sha": "", 663 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 664 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 665 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 666 + }, 667 + { 668 + "status": "success", 669 + "name": "mail-flag.dev", 670 + "sha": "", 671 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 672 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 673 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 674 + }, 675 + { 676 + "status": "no_solution", 677 + "name": "matrix.dev", 678 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 679 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 680 + }, 681 + { 682 + "status": "failure", 683 + "name": "mdns.dev", 684 + "sha": "", 685 + "layer": "a7f1c6fb5d9e08a364f82ba222af3532", 686 + "log": "Processing: [default: loading data]\n[mdns: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mdns\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mdns.dev)\n- Error: I don't know about package mdns (passed through --only-packages)\n[ERROR] The compilation of mdns.dev failed at \"dune build -p mdns -j 39 @install\".\nbuild failed... \n", 687 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"dns.10.2.3\" -> {\"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"duration.0.2.1\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"logs.0.10.0\" \"lru.0.3.1\" \"metrics.0.5.0\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lru.0.3.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"psq.0.2.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mdns.dev\" -> {\"dns.10.2.3\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"eio.1.3\" \"ipaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"metrics.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 688 + }, 689 + { 690 + "status": "no_solution", 691 + "name": "monopam.dev", 692 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 693 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 menhir.20250912 menhirCST.20250912\n menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 opam-file-format.2.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 tangled.dev thread-table.1.0.0 tls.2.0.3\n tls-eio.2.0.3 tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14 ocaml&monopam\n ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- monopam -> monopam.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 694 + }, 695 + { 696 + "status": "failure", 697 + "name": "mqtte.dev", 698 + "sha": "", 699 + "layer": "5791b14efa238892d474e9f0828a924c", 700 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 701 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 702 + }, 703 + { 704 + "status": "dependency_failed", 705 + "name": "odoc-xo.dev", 706 + "sha": "", 707 + "layer": "813f6c718d66929bf81f1feb4d135d97", 708 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 709 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 710 + }, 711 + { 712 + "status": "no_solution", 713 + "name": "owntracks-cli.dev", 714 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 715 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 716 + }, 717 + { 718 + "status": "failure", 719 + "name": "owntracks.dev", 720 + "sha": "", 721 + "layer": "9de0a19185741e33e85e1513441103db", 722 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 723 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 724 + }, 725 + { 726 + "status": "no_solution", 727 + "name": "peertube.dev", 728 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 729 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 730 + }, 731 + { 732 + "status": "no_solution", 733 + "name": "poe.dev", 734 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 735 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 736 + }, 737 + { 738 + "status": "no_solution", 739 + "name": "publicsuffix.dev", 740 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 741 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 742 + }, 743 + { 744 + "status": "no_solution", 745 + "name": "punycode.dev", 746 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 747 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 748 + }, 749 + { 750 + "status": "no_solution", 751 + "name": "requests.dev", 752 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 753 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 754 + }, 755 + { 756 + "status": "success", 757 + "name": "srcsetter-cmd.dev", 758 + "sha": "", 759 + "layer": "2096127048a7edfc326006e01d359a90", 760 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 761 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 762 + }, 763 + { 764 + "status": "success", 765 + "name": "srcsetter.dev", 766 + "sha": "", 767 + "layer": "dc7188b9522138b60d495cacd602018b", 768 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 769 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 770 + }, 771 + { 772 + "status": "no_solution", 773 + "name": "standard-site.dev", 774 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 775 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 776 + }, 777 + { 778 + "status": "no_solution", 779 + "name": "tangled.dev", 780 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 781 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 782 + }, 783 + { 784 + "status": "success", 785 + "name": "tomlt.dev", 786 + "sha": "", 787 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 788 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 789 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 790 + }, 791 + { 792 + "status": "no_solution", 793 + "name": "typesense.dev", 794 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 795 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 796 + }, 797 + { 798 + "status": "no_solution", 799 + "name": "webfinger.dev", 800 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 801 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 802 + }, 803 + { 804 + "status": "success", 805 + "name": "xdge.dev", 806 + "sha": "", 807 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 808 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 809 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 810 + }, 811 + { 812 + "status": "no_solution", 813 + "name": "xrpc-auth.dev", 814 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 815 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 816 + }, 817 + { 818 + "status": "success", 819 + "name": "yamlrw-eio.dev", 820 + "sha": "", 821 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 822 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 823 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 824 + }, 825 + { 826 + "status": "success", 827 + "name": "yamlrw-unix.dev", 828 + "sha": "", 829 + "layer": "8db054b070b14cd059644b727209cbfb", 830 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 831 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 832 + }, 833 + { 834 + "status": "success", 835 + "name": "yamlrw.dev", 836 + "sha": "", 837 + "layer": "a2956555be7bd691d14244a9f8043429", 838 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 839 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 840 + }, 841 + { 842 + "status": "success", 843 + "name": "yamlt.dev", 844 + "sha": "", 845 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 846 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 847 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 848 + }, 849 + { 850 + "status": "no_solution", 851 + "name": "zotero-translation.dev", 852 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 853 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 854 + }, 855 + { 856 + "status": "no_solution", 857 + "name": "zulip.dev", 858 + "sha": "633e0206f15d2590bfa97860b3efd71226950cac31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 859 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 860 + } 861 + ] 862 + }, 863 + { 864 + "commit": "a997cb2193f8f7802b2762abc244ee08ac829795", 865 + "short_commit": "a997cb2", 866 + "message": "+mdns", 867 + "packages": [ 868 + { 869 + "status": "no_solution", 870 + "name": "apubt.dev", 871 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 872 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&apubt ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- apubt -> apubt.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 873 + }, 874 + { 875 + "status": "dependency_failed", 876 + "name": "atp-lexicon-atproto.dev", 877 + "sha": "", 878 + "layer": "025fada5602c251d083a20586e17e4df", 879 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 880 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 881 + }, 882 + { 883 + "status": "dependency_failed", 884 + "name": "atp-lexicon-bsky.dev", 885 + "sha": "", 886 + "layer": "025fada5602c251d083a20586e17e4df", 887 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 888 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 889 + }, 890 + { 891 + "status": "dependency_failed", 892 + "name": "atp-lexicon-standard-site.dev", 893 + "sha": "", 894 + "layer": "025fada5602c251d083a20586e17e4df", 895 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 896 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 897 + }, 898 + { 899 + "status": "dependency_failed", 900 + "name": "atp-lexicon-tangled.dev", 901 + "sha": "", 902 + "layer": "025fada5602c251d083a20586e17e4df", 903 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 904 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 905 + }, 906 + { 907 + "status": "no_solution", 908 + "name": "atp-xrpc.dev", 909 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 910 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 911 + }, 912 + { 913 + "status": "failure", 914 + "name": "atp.dev", 915 + "sha": "", 916 + "layer": "025fada5602c251d083a20586e17e4df", 917 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 918 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 919 + }, 920 + { 921 + "status": "no_solution", 922 + "name": "bsky.dev", 923 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 924 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 925 + }, 926 + { 927 + "status": "no_solution", 928 + "name": "bushel.dev", 929 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 930 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 931 + }, 932 + { 933 + "status": "success", 934 + "name": "bytesrw-eio.dev", 935 + "sha": "", 936 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 937 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 938 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 939 + }, 940 + { 941 + "status": "success", 942 + "name": "cbort.dev", 943 + "sha": "", 944 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 945 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 946 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 947 + }, 948 + { 949 + "status": "success", 950 + "name": "cff.dev", 951 + "sha": "", 952 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 953 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 954 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 955 + }, 956 + { 957 + "status": "failure", 958 + "name": "claude.dev", 959 + "sha": "", 960 + "layer": "702d94150b31ca1887c445541829069e", 961 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 962 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 963 + }, 964 + { 965 + "status": "success", 966 + "name": "conpool.dev", 967 + "sha": "", 968 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 969 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 970 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 971 + }, 972 + { 973 + "status": "no_solution", 974 + "name": "cookeio.dev", 975 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 976 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 977 + }, 978 + { 979 + "status": "success", 980 + "name": "crockford.dev", 981 + "sha": "", 982 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 983 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 984 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 985 + }, 986 + { 987 + "status": "dependency_failed", 988 + "name": "frontmatter-eio.dev", 989 + "sha": "", 990 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 991 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 992 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 993 + }, 994 + { 995 + "status": "failure", 996 + "name": "frontmatter.dev", 997 + "sha": "", 998 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 999 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 1000 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1001 + }, 1002 + { 1003 + "status": "dependency_failed", 1004 + "name": "hermest-cli.dev", 1005 + "sha": "", 1006 + "layer": "036f6658c8528613dcd54d67f44aa45c", 1007 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 1008 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1009 + }, 1010 + { 1011 + "status": "failure", 1012 + "name": "hermest.dev", 1013 + "sha": "", 1014 + "layer": "036f6658c8528613dcd54d67f44aa45c", 1015 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 1016 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1017 + }, 1018 + { 1019 + "status": "failure", 1020 + "name": "html5rw.dev", 1021 + "sha": "", 1022 + "layer": "d7d194b875991f41abf86f008f600a41", 1023 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 1024 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1025 + }, 1026 + { 1027 + "status": "no_solution", 1028 + "name": "imapd.dev", 1029 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1030 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 1031 + }, 1032 + { 1033 + "status": "failure", 1034 + "name": "init.dev", 1035 + "sha": "", 1036 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 1037 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 1038 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 1039 + }, 1040 + { 1041 + "status": "no_solution", 1042 + "name": "jmap.dev", 1043 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1044 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 1045 + }, 1046 + { 1047 + "status": "success", 1048 + "name": "json-pointer.dev", 1049 + "sha": "", 1050 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 1051 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 1052 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1053 + }, 1054 + { 1055 + "status": "success", 1056 + "name": "jsonwt.dev", 1057 + "sha": "", 1058 + "layer": "6e458034bb9e49551940d407cb36ec3c", 1059 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1060 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1061 + }, 1062 + { 1063 + "status": "no_solution", 1064 + "name": "karakeep.dev", 1065 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1066 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1067 + }, 1068 + { 1069 + "status": "failure", 1070 + "name": "langdetect.dev", 1071 + "sha": "", 1072 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 1073 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 1074 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1075 + }, 1076 + { 1077 + "status": "success", 1078 + "name": "mail-flag.dev", 1079 + "sha": "", 1080 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 1081 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 1082 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1083 + }, 1084 + { 1085 + "status": "no_solution", 1086 + "name": "matrix.dev", 1087 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1088 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1089 + }, 1090 + { 1091 + "status": "failure", 1092 + "name": "mdns.dev", 1093 + "sha": "", 1094 + "layer": "a7f1c6fb5d9e08a364f82ba222af3532", 1095 + "log": "Processing: [default: loading data]\n[mdns: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mdns\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mdns.dev)\n- Error: I don't know about package mdns (passed through --only-packages)\n[ERROR] The compilation of mdns.dev failed at \"dune build -p mdns -j 39 @install\".\nbuild failed... \n", 1096 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"dns.10.2.3\" -> {\"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"duration.0.2.1\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"logs.0.10.0\" \"lru.0.3.1\" \"metrics.0.5.0\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lru.0.3.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"psq.0.2.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mdns.dev\" -> {\"dns.10.2.3\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"eio.1.3\" \"ipaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"metrics.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1097 + }, 1098 + { 1099 + "status": "no_solution", 1100 + "name": "monopam.dev", 1101 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1102 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 menhir.20250912 menhirCST.20250912\n menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 opam-file-format.2.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 tangled.dev thread-table.1.0.0 tls.2.0.3\n tls-eio.2.0.3 tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14 ocaml&monopam\n ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- monopam -> monopam.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1103 + }, 1104 + { 1105 + "status": "failure", 1106 + "name": "mqtte.dev", 1107 + "sha": "", 1108 + "layer": "5791b14efa238892d474e9f0828a924c", 1109 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 1110 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1111 + }, 1112 + { 1113 + "status": "dependency_failed", 1114 + "name": "odoc-xo.dev", 1115 + "sha": "", 1116 + "layer": "813f6c718d66929bf81f1feb4d135d97", 1117 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 1118 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1119 + }, 1120 + { 1121 + "status": "no_solution", 1122 + "name": "owntracks-cli.dev", 1123 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1124 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1125 + }, 1126 + { 1127 + "status": "failure", 1128 + "name": "owntracks.dev", 1129 + "sha": "", 1130 + "layer": "9de0a19185741e33e85e1513441103db", 1131 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 1132 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1133 + }, 1134 + { 1135 + "status": "no_solution", 1136 + "name": "peertube.dev", 1137 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1138 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1139 + }, 1140 + { 1141 + "status": "no_solution", 1142 + "name": "poe.dev", 1143 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1144 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1145 + }, 1146 + { 1147 + "status": "no_solution", 1148 + "name": "publicsuffix.dev", 1149 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1150 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1151 + }, 1152 + { 1153 + "status": "no_solution", 1154 + "name": "punycode.dev", 1155 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1156 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1157 + }, 1158 + { 1159 + "status": "no_solution", 1160 + "name": "requests.dev", 1161 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1162 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 1163 + }, 1164 + { 1165 + "status": "success", 1166 + "name": "srcsetter-cmd.dev", 1167 + "sha": "", 1168 + "layer": "2096127048a7edfc326006e01d359a90", 1169 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 1170 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1171 + }, 1172 + { 1173 + "status": "success", 1174 + "name": "srcsetter.dev", 1175 + "sha": "", 1176 + "layer": "dc7188b9522138b60d495cacd602018b", 1177 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 1178 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1179 + }, 1180 + { 1181 + "status": "no_solution", 1182 + "name": "standard-site.dev", 1183 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1184 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 1185 + }, 1186 + { 1187 + "status": "no_solution", 1188 + "name": "tangled.dev", 1189 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1190 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 1191 + }, 1192 + { 1193 + "status": "success", 1194 + "name": "tomlt.dev", 1195 + "sha": "", 1196 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 1197 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 1198 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1199 + }, 1200 + { 1201 + "status": "no_solution", 1202 + "name": "typesense.dev", 1203 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1204 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 1205 + }, 1206 + { 1207 + "status": "no_solution", 1208 + "name": "webfinger.dev", 1209 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1210 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 1211 + }, 1212 + { 1213 + "status": "success", 1214 + "name": "xdge.dev", 1215 + "sha": "", 1216 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 1217 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 1218 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 1219 + }, 1220 + { 1221 + "status": "no_solution", 1222 + "name": "xrpc-auth.dev", 1223 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1224 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 1225 + }, 1226 + { 1227 + "status": "success", 1228 + "name": "yamlrw-eio.dev", 1229 + "sha": "", 1230 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 1231 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 1232 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1233 + }, 1234 + { 1235 + "status": "success", 1236 + "name": "yamlrw-unix.dev", 1237 + "sha": "", 1238 + "layer": "8db054b070b14cd059644b727209cbfb", 1239 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 1240 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1241 + }, 1242 + { 1243 + "status": "success", 1244 + "name": "yamlrw.dev", 1245 + "sha": "", 1246 + "layer": "a2956555be7bd691d14244a9f8043429", 1247 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 1248 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1249 + }, 1250 + { 1251 + "status": "success", 1252 + "name": "yamlt.dev", 1253 + "sha": "", 1254 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 1255 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 1256 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1257 + }, 1258 + { 1259 + "status": "no_solution", 1260 + "name": "zotero-translation.dev", 1261 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1262 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 1263 + }, 1264 + { 1265 + "status": "no_solution", 1266 + "name": "zulip.dev", 1267 + "sha": "a997cb2193f8f7802b2762abc244ee08ac82979531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1268 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 1269 + } 1270 + ] 1271 + }, 1272 + { 1273 + "commit": "e32aea2287604b89e57c012dbd57ecb628625daa", 1274 + "short_commit": "e32aea2", 1275 + "message": "more", 1276 + "packages": [ 1277 + { 1278 + "status": "no_solution", 1279 + "name": "apubt.dev", 1280 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1281 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&apubt ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- apubt -> apubt.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1282 + }, 1283 + { 1284 + "status": "dependency_failed", 1285 + "name": "atp-lexicon-atproto.dev", 1286 + "sha": "", 1287 + "layer": "025fada5602c251d083a20586e17e4df", 1288 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1289 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1290 + }, 1291 + { 1292 + "status": "dependency_failed", 1293 + "name": "atp-lexicon-bsky.dev", 1294 + "sha": "", 1295 + "layer": "025fada5602c251d083a20586e17e4df", 1296 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1297 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1298 + }, 1299 + { 1300 + "status": "dependency_failed", 1301 + "name": "atp-lexicon-standard-site.dev", 1302 + "sha": "", 1303 + "layer": "025fada5602c251d083a20586e17e4df", 1304 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1305 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1306 + }, 1307 + { 1308 + "status": "dependency_failed", 1309 + "name": "atp-lexicon-tangled.dev", 1310 + "sha": "", 1311 + "layer": "025fada5602c251d083a20586e17e4df", 1312 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1313 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1314 + }, 1315 + { 1316 + "status": "no_solution", 1317 + "name": "atp-xrpc.dev", 1318 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1319 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1320 + }, 1321 + { 1322 + "status": "failure", 1323 + "name": "atp.dev", 1324 + "sha": "", 1325 + "layer": "025fada5602c251d083a20586e17e4df", 1326 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1327 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1328 + }, 1329 + { 1330 + "status": "no_solution", 1331 + "name": "bsky.dev", 1332 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1333 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1334 + }, 1335 + { 1336 + "status": "no_solution", 1337 + "name": "bushel.dev", 1338 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1339 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1340 + }, 1341 + { 1342 + "status": "success", 1343 + "name": "bytesrw-eio.dev", 1344 + "sha": "", 1345 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 1346 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 1347 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1348 + }, 1349 + { 1350 + "status": "success", 1351 + "name": "cbort.dev", 1352 + "sha": "", 1353 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 1354 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1355 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1356 + }, 1357 + { 1358 + "status": "success", 1359 + "name": "cff.dev", 1360 + "sha": "", 1361 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 1362 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 1363 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1364 + }, 1365 + { 1366 + "status": "failure", 1367 + "name": "claude.dev", 1368 + "sha": "", 1369 + "layer": "702d94150b31ca1887c445541829069e", 1370 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 1371 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1372 + }, 1373 + { 1374 + "status": "success", 1375 + "name": "conpool.dev", 1376 + "sha": "", 1377 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 1378 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1379 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1380 + }, 1381 + { 1382 + "status": "no_solution", 1383 + "name": "cookeio.dev", 1384 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1385 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1386 + }, 1387 + { 1388 + "status": "success", 1389 + "name": "crockford.dev", 1390 + "sha": "", 1391 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 1392 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 1393 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 1394 + }, 1395 + { 1396 + "status": "dependency_failed", 1397 + "name": "frontmatter-eio.dev", 1398 + "sha": "", 1399 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 1400 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 1401 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1402 + }, 1403 + { 1404 + "status": "failure", 1405 + "name": "frontmatter.dev", 1406 + "sha": "", 1407 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 1408 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 1409 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1410 + }, 1411 + { 1412 + "status": "dependency_failed", 1413 + "name": "hermest-cli.dev", 1414 + "sha": "", 1415 + "layer": "036f6658c8528613dcd54d67f44aa45c", 1416 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 1417 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1418 + }, 1419 + { 1420 + "status": "failure", 1421 + "name": "hermest.dev", 1422 + "sha": "", 1423 + "layer": "036f6658c8528613dcd54d67f44aa45c", 1424 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 1425 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1426 + }, 1427 + { 1428 + "status": "failure", 1429 + "name": "html5rw.dev", 1430 + "sha": "", 1431 + "layer": "d7d194b875991f41abf86f008f600a41", 1432 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 1433 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1434 + }, 1435 + { 1436 + "status": "no_solution", 1437 + "name": "imapd.dev", 1438 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1439 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 1440 + }, 1441 + { 1442 + "status": "failure", 1443 + "name": "init.dev", 1444 + "sha": "", 1445 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 1446 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 1447 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 1448 + }, 1449 + { 1450 + "status": "no_solution", 1451 + "name": "jmap.dev", 1452 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1453 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 1454 + }, 1455 + { 1456 + "status": "success", 1457 + "name": "json-pointer.dev", 1458 + "sha": "", 1459 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 1460 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 1461 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1462 + }, 1463 + { 1464 + "status": "success", 1465 + "name": "jsonwt.dev", 1466 + "sha": "", 1467 + "layer": "6e458034bb9e49551940d407cb36ec3c", 1468 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1469 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1470 + }, 1471 + { 1472 + "status": "no_solution", 1473 + "name": "karakeep.dev", 1474 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1475 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1476 + }, 1477 + { 1478 + "status": "failure", 1479 + "name": "langdetect.dev", 1480 + "sha": "", 1481 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 1482 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 1483 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1484 + }, 1485 + { 1486 + "status": "success", 1487 + "name": "mail-flag.dev", 1488 + "sha": "", 1489 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 1490 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 1491 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1492 + }, 1493 + { 1494 + "status": "no_solution", 1495 + "name": "matrix.dev", 1496 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1497 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1498 + }, 1499 + { 1500 + "status": "no_solution", 1501 + "name": "monopam.dev", 1502 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1503 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 menhir.20250912 menhirCST.20250912\n menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 opam-file-format.2.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 tangled.dev thread-table.1.0.0 tls.2.0.3\n tls-eio.2.0.3 tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14 ocaml&monopam\n ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- monopam -> monopam.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1504 + }, 1505 + { 1506 + "status": "failure", 1507 + "name": "mqtte.dev", 1508 + "sha": "", 1509 + "layer": "5791b14efa238892d474e9f0828a924c", 1510 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 1511 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1512 + }, 1513 + { 1514 + "status": "dependency_failed", 1515 + "name": "odoc-xo.dev", 1516 + "sha": "", 1517 + "layer": "813f6c718d66929bf81f1feb4d135d97", 1518 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 1519 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1520 + }, 1521 + { 1522 + "status": "no_solution", 1523 + "name": "owntracks-cli.dev", 1524 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1525 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1526 + }, 1527 + { 1528 + "status": "failure", 1529 + "name": "owntracks.dev", 1530 + "sha": "", 1531 + "layer": "9de0a19185741e33e85e1513441103db", 1532 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 1533 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1534 + }, 1535 + { 1536 + "status": "no_solution", 1537 + "name": "peertube.dev", 1538 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1539 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1540 + }, 1541 + { 1542 + "status": "no_solution", 1543 + "name": "poe.dev", 1544 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1545 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1546 + }, 1547 + { 1548 + "status": "no_solution", 1549 + "name": "publicsuffix.dev", 1550 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1551 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1552 + }, 1553 + { 1554 + "status": "no_solution", 1555 + "name": "punycode.dev", 1556 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1557 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1558 + }, 1559 + { 1560 + "status": "no_solution", 1561 + "name": "requests.dev", 1562 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1563 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 1564 + }, 1565 + { 1566 + "status": "success", 1567 + "name": "srcsetter-cmd.dev", 1568 + "sha": "", 1569 + "layer": "2096127048a7edfc326006e01d359a90", 1570 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 1571 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1572 + }, 1573 + { 1574 + "status": "success", 1575 + "name": "srcsetter.dev", 1576 + "sha": "", 1577 + "layer": "dc7188b9522138b60d495cacd602018b", 1578 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 1579 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1580 + }, 1581 + { 1582 + "status": "no_solution", 1583 + "name": "standard-site.dev", 1584 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1585 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 1586 + }, 1587 + { 1588 + "status": "no_solution", 1589 + "name": "tangled.dev", 1590 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1591 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 1592 + }, 1593 + { 1594 + "status": "success", 1595 + "name": "tomlt.dev", 1596 + "sha": "", 1597 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 1598 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 1599 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1600 + }, 1601 + { 1602 + "status": "no_solution", 1603 + "name": "typesense.dev", 1604 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1605 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 1606 + }, 1607 + { 1608 + "status": "no_solution", 1609 + "name": "webfinger.dev", 1610 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1611 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 1612 + }, 1613 + { 1614 + "status": "success", 1615 + "name": "xdge.dev", 1616 + "sha": "", 1617 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 1618 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 1619 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 1620 + }, 1621 + { 1622 + "status": "no_solution", 1623 + "name": "xrpc-auth.dev", 1624 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1625 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 1626 + }, 1627 + { 1628 + "status": "success", 1629 + "name": "yamlrw-eio.dev", 1630 + "sha": "", 1631 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 1632 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 1633 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1634 + }, 1635 + { 1636 + "status": "success", 1637 + "name": "yamlrw-unix.dev", 1638 + "sha": "", 1639 + "layer": "8db054b070b14cd059644b727209cbfb", 1640 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 1641 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1642 + }, 1643 + { 1644 + "status": "success", 1645 + "name": "yamlrw.dev", 1646 + "sha": "", 1647 + "layer": "a2956555be7bd691d14244a9f8043429", 1648 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 1649 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1650 + }, 1651 + { 1652 + "status": "success", 1653 + "name": "yamlt.dev", 1654 + "sha": "", 1655 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 1656 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 1657 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1658 + }, 1659 + { 1660 + "status": "no_solution", 1661 + "name": "zotero-translation.dev", 1662 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1663 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 1664 + }, 1665 + { 1666 + "status": "no_solution", 1667 + "name": "zulip.dev", 1668 + "sha": "e32aea2287604b89e57c012dbd57ecb628625daa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1669 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 1670 + } 1671 + ] 1672 + }, 1673 + { 1674 + "commit": "d1443bf23da0b252d8138b7b1cf4f6712f614df5", 1675 + "short_commit": "d1443bf", 1676 + "message": "+claude", 1677 + "packages": [ 1678 + { 1679 + "status": "no_solution", 1680 + "name": "apubt.dev", 1681 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1682 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&apubt ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- apubt -> apubt.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1683 + }, 1684 + { 1685 + "status": "dependency_failed", 1686 + "name": "atp-lexicon-atproto.dev", 1687 + "sha": "", 1688 + "layer": "025fada5602c251d083a20586e17e4df", 1689 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1690 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1691 + }, 1692 + { 1693 + "status": "dependency_failed", 1694 + "name": "atp-lexicon-bsky.dev", 1695 + "sha": "", 1696 + "layer": "025fada5602c251d083a20586e17e4df", 1697 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1698 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1699 + }, 1700 + { 1701 + "status": "dependency_failed", 1702 + "name": "atp-lexicon-standard-site.dev", 1703 + "sha": "", 1704 + "layer": "025fada5602c251d083a20586e17e4df", 1705 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1706 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1707 + }, 1708 + { 1709 + "status": "dependency_failed", 1710 + "name": "atp-lexicon-tangled.dev", 1711 + "sha": "", 1712 + "layer": "025fada5602c251d083a20586e17e4df", 1713 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1714 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1715 + }, 1716 + { 1717 + "status": "no_solution", 1718 + "name": "atp-xrpc.dev", 1719 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1720 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1721 + }, 1722 + { 1723 + "status": "failure", 1724 + "name": "atp.dev", 1725 + "sha": "", 1726 + "layer": "025fada5602c251d083a20586e17e4df", 1727 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 1728 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1729 + }, 1730 + { 1731 + "status": "no_solution", 1732 + "name": "bsky.dev", 1733 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1734 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1735 + }, 1736 + { 1737 + "status": "no_solution", 1738 + "name": "bushel.dev", 1739 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1740 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1741 + }, 1742 + { 1743 + "status": "success", 1744 + "name": "bytesrw-eio.dev", 1745 + "sha": "", 1746 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 1747 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 1748 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1749 + }, 1750 + { 1751 + "status": "success", 1752 + "name": "cbort.dev", 1753 + "sha": "", 1754 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 1755 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1756 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1757 + }, 1758 + { 1759 + "status": "success", 1760 + "name": "cff.dev", 1761 + "sha": "", 1762 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 1763 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 1764 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 1765 + }, 1766 + { 1767 + "status": "failure", 1768 + "name": "claude.dev", 1769 + "sha": "", 1770 + "layer": "702d94150b31ca1887c445541829069e", 1771 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 1772 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1773 + }, 1774 + { 1775 + "status": "success", 1776 + "name": "conpool.dev", 1777 + "sha": "", 1778 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 1779 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1780 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1781 + }, 1782 + { 1783 + "status": "no_solution", 1784 + "name": "cookeio.dev", 1785 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1786 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1787 + }, 1788 + { 1789 + "status": "success", 1790 + "name": "crockford.dev", 1791 + "sha": "", 1792 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 1793 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 1794 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 1795 + }, 1796 + { 1797 + "status": "dependency_failed", 1798 + "name": "frontmatter-eio.dev", 1799 + "sha": "", 1800 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 1801 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 1802 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1803 + }, 1804 + { 1805 + "status": "failure", 1806 + "name": "frontmatter.dev", 1807 + "sha": "", 1808 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 1809 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 1810 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1811 + }, 1812 + { 1813 + "status": "dependency_failed", 1814 + "name": "hermest-cli.dev", 1815 + "sha": "", 1816 + "layer": "036f6658c8528613dcd54d67f44aa45c", 1817 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 1818 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1819 + }, 1820 + { 1821 + "status": "failure", 1822 + "name": "hermest.dev", 1823 + "sha": "", 1824 + "layer": "036f6658c8528613dcd54d67f44aa45c", 1825 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 1826 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1827 + }, 1828 + { 1829 + "status": "failure", 1830 + "name": "html5rw.dev", 1831 + "sha": "", 1832 + "layer": "d7d194b875991f41abf86f008f600a41", 1833 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 1834 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1835 + }, 1836 + { 1837 + "status": "no_solution", 1838 + "name": "imapd.dev", 1839 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1840 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 1841 + }, 1842 + { 1843 + "status": "failure", 1844 + "name": "init.dev", 1845 + "sha": "", 1846 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 1847 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 1848 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 1849 + }, 1850 + { 1851 + "status": "no_solution", 1852 + "name": "jmap.dev", 1853 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1854 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 1855 + }, 1856 + { 1857 + "status": "success", 1858 + "name": "json-pointer.dev", 1859 + "sha": "", 1860 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 1861 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 1862 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1863 + }, 1864 + { 1865 + "status": "success", 1866 + "name": "jsonwt.dev", 1867 + "sha": "", 1868 + "layer": "6e458034bb9e49551940d407cb36ec3c", 1869 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 1870 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1871 + }, 1872 + { 1873 + "status": "no_solution", 1874 + "name": "karakeep.dev", 1875 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1876 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1877 + }, 1878 + { 1879 + "status": "failure", 1880 + "name": "langdetect.dev", 1881 + "sha": "", 1882 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 1883 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 1884 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1885 + }, 1886 + { 1887 + "status": "success", 1888 + "name": "mail-flag.dev", 1889 + "sha": "", 1890 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 1891 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 1892 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1893 + }, 1894 + { 1895 + "status": "no_solution", 1896 + "name": "matrix.dev", 1897 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1898 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1899 + }, 1900 + { 1901 + "status": "dependency_failed", 1902 + "name": "monopam.dev", 1903 + "sha": "", 1904 + "layer": "5bfef88e6602d919c6e5166ade44eb8c", 1905 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 22-30:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^\n- Error: Library \"eio_main\" not found.\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 1906 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhir.20250912\" -> {\"dune.3.21.0\" \"menhirCST.20250912\" \"menhirLib.20250912\" \"menhirSdk.20250912\" \"ocaml.5.3.0\"}\n \"menhirCST.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirLib.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirSdk.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"monopam.dev\" -> {\"claude.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"opam-file-format.2.2.0\" \"tomlt.dev\" \"uri.4.4.0\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"opam-file-format.2.2.0\" -> {\"dune.3.21.0\" \"menhir.20250912\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 1907 + }, 1908 + { 1909 + "status": "failure", 1910 + "name": "mqtte.dev", 1911 + "sha": "", 1912 + "layer": "5791b14efa238892d474e9f0828a924c", 1913 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 1914 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 1915 + }, 1916 + { 1917 + "status": "dependency_failed", 1918 + "name": "odoc-xo.dev", 1919 + "sha": "", 1920 + "layer": "813f6c718d66929bf81f1feb4d135d97", 1921 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 1922 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 1923 + }, 1924 + { 1925 + "status": "no_solution", 1926 + "name": "owntracks-cli.dev", 1927 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1928 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1929 + }, 1930 + { 1931 + "status": "failure", 1932 + "name": "owntracks.dev", 1933 + "sha": "", 1934 + "layer": "9de0a19185741e33e85e1513441103db", 1935 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 1936 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1937 + }, 1938 + { 1939 + "status": "no_solution", 1940 + "name": "peertube.dev", 1941 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1942 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1943 + }, 1944 + { 1945 + "status": "no_solution", 1946 + "name": "poe.dev", 1947 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1948 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1949 + }, 1950 + { 1951 + "status": "no_solution", 1952 + "name": "publicsuffix.dev", 1953 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1954 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1955 + }, 1956 + { 1957 + "status": "no_solution", 1958 + "name": "punycode.dev", 1959 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1960 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 1961 + }, 1962 + { 1963 + "status": "no_solution", 1964 + "name": "requests.dev", 1965 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1966 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 1967 + }, 1968 + { 1969 + "status": "success", 1970 + "name": "srcsetter-cmd.dev", 1971 + "sha": "", 1972 + "layer": "2096127048a7edfc326006e01d359a90", 1973 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 1974 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 1975 + }, 1976 + { 1977 + "status": "success", 1978 + "name": "srcsetter.dev", 1979 + "sha": "", 1980 + "layer": "dc7188b9522138b60d495cacd602018b", 1981 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 1982 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 1983 + }, 1984 + { 1985 + "status": "no_solution", 1986 + "name": "standard-site.dev", 1987 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1988 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 1989 + }, 1990 + { 1991 + "status": "no_solution", 1992 + "name": "tangled.dev", 1993 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 1994 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 1995 + }, 1996 + { 1997 + "status": "success", 1998 + "name": "tomlt.dev", 1999 + "sha": "", 2000 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 2001 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 2002 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2003 + }, 2004 + { 2005 + "status": "no_solution", 2006 + "name": "typesense.dev", 2007 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2008 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 2009 + }, 2010 + { 2011 + "status": "no_solution", 2012 + "name": "webfinger.dev", 2013 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2014 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 2015 + }, 2016 + { 2017 + "status": "success", 2018 + "name": "xdge.dev", 2019 + "sha": "", 2020 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 2021 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 2022 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 2023 + }, 2024 + { 2025 + "status": "no_solution", 2026 + "name": "xrpc-auth.dev", 2027 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2028 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 2029 + }, 2030 + { 2031 + "status": "success", 2032 + "name": "yamlrw-eio.dev", 2033 + "sha": "", 2034 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 2035 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 2036 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2037 + }, 2038 + { 2039 + "status": "success", 2040 + "name": "yamlrw-unix.dev", 2041 + "sha": "", 2042 + "layer": "8db054b070b14cd059644b727209cbfb", 2043 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 2044 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2045 + }, 2046 + { 2047 + "status": "success", 2048 + "name": "yamlrw.dev", 2049 + "sha": "", 2050 + "layer": "a2956555be7bd691d14244a9f8043429", 2051 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 2052 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2053 + }, 2054 + { 2055 + "status": "success", 2056 + "name": "yamlt.dev", 2057 + "sha": "", 2058 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 2059 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 2060 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2061 + }, 2062 + { 2063 + "status": "no_solution", 2064 + "name": "zotero-translation.dev", 2065 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2066 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 2067 + }, 2068 + { 2069 + "status": "no_solution", 2070 + "name": "zulip.dev", 2071 + "sha": "d1443bf23da0b252d8138b7b1cf4f6712f614df531c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2072 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 2073 + } 2074 + ] 2075 + }, 2076 + { 2077 + "commit": "32898245e4f7e95e2122f6aa8106c2680c4daffa", 2078 + "short_commit": "3289824", 2079 + "message": "activitypub", 2080 + "packages": [ 2081 + { 2082 + "status": "no_solution", 2083 + "name": "apubt.dev", 2084 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2085 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&apubt ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- apubt -> apubt.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2086 + }, 2087 + { 2088 + "status": "dependency_failed", 2089 + "name": "atp-lexicon-atproto.dev", 2090 + "sha": "", 2091 + "layer": "025fada5602c251d083a20586e17e4df", 2092 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2093 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2094 + }, 2095 + { 2096 + "status": "dependency_failed", 2097 + "name": "atp-lexicon-bsky.dev", 2098 + "sha": "", 2099 + "layer": "025fada5602c251d083a20586e17e4df", 2100 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2101 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2102 + }, 2103 + { 2104 + "status": "dependency_failed", 2105 + "name": "atp-lexicon-standard-site.dev", 2106 + "sha": "", 2107 + "layer": "025fada5602c251d083a20586e17e4df", 2108 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2109 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2110 + }, 2111 + { 2112 + "status": "dependency_failed", 2113 + "name": "atp-lexicon-tangled.dev", 2114 + "sha": "", 2115 + "layer": "025fada5602c251d083a20586e17e4df", 2116 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2117 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2118 + }, 2119 + { 2120 + "status": "no_solution", 2121 + "name": "atp-xrpc.dev", 2122 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2123 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2124 + }, 2125 + { 2126 + "status": "failure", 2127 + "name": "atp.dev", 2128 + "sha": "", 2129 + "layer": "025fada5602c251d083a20586e17e4df", 2130 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2131 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2132 + }, 2133 + { 2134 + "status": "no_solution", 2135 + "name": "bsky.dev", 2136 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2137 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2138 + }, 2139 + { 2140 + "status": "no_solution", 2141 + "name": "bushel.dev", 2142 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2143 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2144 + }, 2145 + { 2146 + "status": "success", 2147 + "name": "bytesrw-eio.dev", 2148 + "sha": "", 2149 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 2150 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 2151 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2152 + }, 2153 + { 2154 + "status": "success", 2155 + "name": "cbort.dev", 2156 + "sha": "", 2157 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 2158 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2159 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2160 + }, 2161 + { 2162 + "status": "success", 2163 + "name": "cff.dev", 2164 + "sha": "", 2165 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 2166 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 2167 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2168 + }, 2169 + { 2170 + "status": "failure", 2171 + "name": "claude.dev", 2172 + "sha": "", 2173 + "layer": "702d94150b31ca1887c445541829069e", 2174 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 2175 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2176 + }, 2177 + { 2178 + "status": "success", 2179 + "name": "conpool.dev", 2180 + "sha": "", 2181 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 2182 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2183 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2184 + }, 2185 + { 2186 + "status": "no_solution", 2187 + "name": "cookeio.dev", 2188 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2189 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2190 + }, 2191 + { 2192 + "status": "success", 2193 + "name": "crockford.dev", 2194 + "sha": "", 2195 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 2196 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 2197 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 2198 + }, 2199 + { 2200 + "status": "dependency_failed", 2201 + "name": "frontmatter-eio.dev", 2202 + "sha": "", 2203 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 2204 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 2205 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2206 + }, 2207 + { 2208 + "status": "failure", 2209 + "name": "frontmatter.dev", 2210 + "sha": "", 2211 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 2212 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 2213 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2214 + }, 2215 + { 2216 + "status": "dependency_failed", 2217 + "name": "hermest-cli.dev", 2218 + "sha": "", 2219 + "layer": "036f6658c8528613dcd54d67f44aa45c", 2220 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 2221 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2222 + }, 2223 + { 2224 + "status": "failure", 2225 + "name": "hermest.dev", 2226 + "sha": "", 2227 + "layer": "036f6658c8528613dcd54d67f44aa45c", 2228 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 2229 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2230 + }, 2231 + { 2232 + "status": "failure", 2233 + "name": "html5rw.dev", 2234 + "sha": "", 2235 + "layer": "d7d194b875991f41abf86f008f600a41", 2236 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 2237 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2238 + }, 2239 + { 2240 + "status": "no_solution", 2241 + "name": "imapd.dev", 2242 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2243 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 2244 + }, 2245 + { 2246 + "status": "failure", 2247 + "name": "init.dev", 2248 + "sha": "", 2249 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 2250 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 2251 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 2252 + }, 2253 + { 2254 + "status": "no_solution", 2255 + "name": "jmap.dev", 2256 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2257 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 2258 + }, 2259 + { 2260 + "status": "success", 2261 + "name": "json-pointer.dev", 2262 + "sha": "", 2263 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 2264 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 2265 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2266 + }, 2267 + { 2268 + "status": "success", 2269 + "name": "jsonwt.dev", 2270 + "sha": "", 2271 + "layer": "6e458034bb9e49551940d407cb36ec3c", 2272 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2273 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2274 + }, 2275 + { 2276 + "status": "no_solution", 2277 + "name": "karakeep.dev", 2278 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2279 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2280 + }, 2281 + { 2282 + "status": "failure", 2283 + "name": "langdetect.dev", 2284 + "sha": "", 2285 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 2286 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 2287 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2288 + }, 2289 + { 2290 + "status": "success", 2291 + "name": "mail-flag.dev", 2292 + "sha": "", 2293 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 2294 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 2295 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2296 + }, 2297 + { 2298 + "status": "no_solution", 2299 + "name": "matrix.dev", 2300 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2301 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2302 + }, 2303 + { 2304 + "status": "failure", 2305 + "name": "monopam.dev", 2306 + "sha": "", 2307 + "layer": "7eaaef4d4b6eb686075eb82678056773", 2308 + "log": "Processing: [default: loading data]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n-> retrieved monopam.dev (git+https://tangled.org/@anil.recoil.org/monopam.git#main)\n[monopam: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n[monopam: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"monopam\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n- File \"lib/dune\", line 4, characters 86-99:\n- 4 | (libraries eio tomlt tomlt.eio xdge opam-file-format fmt logs uri fpath claude jsont jsont.bytesrw ptime))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"monopam\" in _build/default/lib\n- -> required by _build/default/META.monopam\n- -> required by _build/install/default/lib/monopam/META\n- -> required by _build/default/monopam.install\n- -> required by alias install\n- File \"bin/dune\", line 5, characters 20-28:\n- 5 | (libraries monopam requests eio_main cmdliner fmt.tty fmt.cli logs.fmt logs.cli))\n- ^^^^^^^^\n- Error: Library \"requests\" not found.\n- -> required by _build/default/bin/main.exe\n- -> required by _build/install/default/bin/monopam\n- -> required by _build/default/monopam.install\n- -> required by alias install\n[ERROR] The compilation of monopam.dev failed at \"dune build -p monopam -j 39 @install\".\nbuild failed... \n", 2309 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhir.20250912\" -> {\"dune.3.21.0\" \"menhirCST.20250912\" \"menhirLib.20250912\" \"menhirSdk.20250912\" \"ocaml.5.3.0\"}\n \"menhirCST.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirLib.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirSdk.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"monopam.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"opam-file-format.2.2.0\" \"tomlt.dev\" \"uri.4.4.0\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"opam-file-format.2.2.0\" -> {\"dune.3.21.0\" \"menhir.20250912\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 2310 + }, 2311 + { 2312 + "status": "failure", 2313 + "name": "mqtte.dev", 2314 + "sha": "", 2315 + "layer": "5791b14efa238892d474e9f0828a924c", 2316 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 2317 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2318 + }, 2319 + { 2320 + "status": "dependency_failed", 2321 + "name": "odoc-xo.dev", 2322 + "sha": "", 2323 + "layer": "813f6c718d66929bf81f1feb4d135d97", 2324 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 2325 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2326 + }, 2327 + { 2328 + "status": "no_solution", 2329 + "name": "owntracks-cli.dev", 2330 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2331 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2332 + }, 2333 + { 2334 + "status": "failure", 2335 + "name": "owntracks.dev", 2336 + "sha": "", 2337 + "layer": "9de0a19185741e33e85e1513441103db", 2338 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 2339 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2340 + }, 2341 + { 2342 + "status": "no_solution", 2343 + "name": "peertube.dev", 2344 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2345 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2346 + }, 2347 + { 2348 + "status": "no_solution", 2349 + "name": "poe.dev", 2350 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2351 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2352 + }, 2353 + { 2354 + "status": "no_solution", 2355 + "name": "publicsuffix.dev", 2356 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2357 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2358 + }, 2359 + { 2360 + "status": "no_solution", 2361 + "name": "punycode.dev", 2362 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2363 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2364 + }, 2365 + { 2366 + "status": "no_solution", 2367 + "name": "requests.dev", 2368 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2369 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 2370 + }, 2371 + { 2372 + "status": "success", 2373 + "name": "srcsetter-cmd.dev", 2374 + "sha": "", 2375 + "layer": "2096127048a7edfc326006e01d359a90", 2376 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 2377 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2378 + }, 2379 + { 2380 + "status": "success", 2381 + "name": "srcsetter.dev", 2382 + "sha": "", 2383 + "layer": "dc7188b9522138b60d495cacd602018b", 2384 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 2385 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2386 + }, 2387 + { 2388 + "status": "no_solution", 2389 + "name": "standard-site.dev", 2390 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2391 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 2392 + }, 2393 + { 2394 + "status": "no_solution", 2395 + "name": "tangled.dev", 2396 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2397 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 2398 + }, 2399 + { 2400 + "status": "success", 2401 + "name": "tomlt.dev", 2402 + "sha": "", 2403 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 2404 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 2405 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2406 + }, 2407 + { 2408 + "status": "no_solution", 2409 + "name": "typesense.dev", 2410 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2411 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 2412 + }, 2413 + { 2414 + "status": "no_solution", 2415 + "name": "webfinger.dev", 2416 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2417 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 2418 + }, 2419 + { 2420 + "status": "success", 2421 + "name": "xdge.dev", 2422 + "sha": "", 2423 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 2424 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 2425 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 2426 + }, 2427 + { 2428 + "status": "no_solution", 2429 + "name": "xrpc-auth.dev", 2430 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2431 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 2432 + }, 2433 + { 2434 + "status": "success", 2435 + "name": "yamlrw-eio.dev", 2436 + "sha": "", 2437 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 2438 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 2439 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2440 + }, 2441 + { 2442 + "status": "success", 2443 + "name": "yamlrw-unix.dev", 2444 + "sha": "", 2445 + "layer": "8db054b070b14cd059644b727209cbfb", 2446 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 2447 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2448 + }, 2449 + { 2450 + "status": "success", 2451 + "name": "yamlrw.dev", 2452 + "sha": "", 2453 + "layer": "a2956555be7bd691d14244a9f8043429", 2454 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 2455 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2456 + }, 2457 + { 2458 + "status": "success", 2459 + "name": "yamlt.dev", 2460 + "sha": "", 2461 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 2462 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 2463 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2464 + }, 2465 + { 2466 + "status": "no_solution", 2467 + "name": "zotero-translation.dev", 2468 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2469 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 2470 + }, 2471 + { 2472 + "status": "no_solution", 2473 + "name": "zulip.dev", 2474 + "sha": "32898245e4f7e95e2122f6aa8106c2680c4daffa31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2475 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 2476 + } 2477 + ] 2478 + }, 2479 + { 2480 + "commit": "b92aa39c38a27d35945ba0b64e38ee484429284c", 2481 + "short_commit": "b92aa39", 2482 + "message": "Add webfinger.dev package", 2483 + "packages": [ 2484 + { 2485 + "status": "dependency_failed", 2486 + "name": "atp-lexicon-atproto.dev", 2487 + "sha": "", 2488 + "layer": "025fada5602c251d083a20586e17e4df", 2489 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2490 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2491 + }, 2492 + { 2493 + "status": "dependency_failed", 2494 + "name": "atp-lexicon-bsky.dev", 2495 + "sha": "", 2496 + "layer": "025fada5602c251d083a20586e17e4df", 2497 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2498 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2499 + }, 2500 + { 2501 + "status": "dependency_failed", 2502 + "name": "atp-lexicon-standard-site.dev", 2503 + "sha": "", 2504 + "layer": "025fada5602c251d083a20586e17e4df", 2505 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2506 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2507 + }, 2508 + { 2509 + "status": "dependency_failed", 2510 + "name": "atp-lexicon-tangled.dev", 2511 + "sha": "", 2512 + "layer": "025fada5602c251d083a20586e17e4df", 2513 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2514 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2515 + }, 2516 + { 2517 + "status": "no_solution", 2518 + "name": "atp-xrpc.dev", 2519 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2520 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2521 + }, 2522 + { 2523 + "status": "failure", 2524 + "name": "atp.dev", 2525 + "sha": "", 2526 + "layer": "025fada5602c251d083a20586e17e4df", 2527 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2528 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2529 + }, 2530 + { 2531 + "status": "no_solution", 2532 + "name": "bsky.dev", 2533 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2534 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2535 + }, 2536 + { 2537 + "status": "no_solution", 2538 + "name": "bushel.dev", 2539 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2540 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2541 + }, 2542 + { 2543 + "status": "success", 2544 + "name": "bytesrw-eio.dev", 2545 + "sha": "", 2546 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 2547 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 2548 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2549 + }, 2550 + { 2551 + "status": "success", 2552 + "name": "cbort.dev", 2553 + "sha": "", 2554 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 2555 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2556 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2557 + }, 2558 + { 2559 + "status": "success", 2560 + "name": "cff.dev", 2561 + "sha": "", 2562 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 2563 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 2564 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2565 + }, 2566 + { 2567 + "status": "failure", 2568 + "name": "claude.dev", 2569 + "sha": "", 2570 + "layer": "702d94150b31ca1887c445541829069e", 2571 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 2572 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2573 + }, 2574 + { 2575 + "status": "success", 2576 + "name": "conpool.dev", 2577 + "sha": "", 2578 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 2579 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2580 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2581 + }, 2582 + { 2583 + "status": "no_solution", 2584 + "name": "cookeio.dev", 2585 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2586 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2587 + }, 2588 + { 2589 + "status": "success", 2590 + "name": "crockford.dev", 2591 + "sha": "", 2592 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 2593 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 2594 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 2595 + }, 2596 + { 2597 + "status": "dependency_failed", 2598 + "name": "frontmatter-eio.dev", 2599 + "sha": "", 2600 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 2601 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 2602 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2603 + }, 2604 + { 2605 + "status": "failure", 2606 + "name": "frontmatter.dev", 2607 + "sha": "", 2608 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 2609 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 2610 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2611 + }, 2612 + { 2613 + "status": "dependency_failed", 2614 + "name": "hermest-cli.dev", 2615 + "sha": "", 2616 + "layer": "036f6658c8528613dcd54d67f44aa45c", 2617 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 2618 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2619 + }, 2620 + { 2621 + "status": "failure", 2622 + "name": "hermest.dev", 2623 + "sha": "", 2624 + "layer": "036f6658c8528613dcd54d67f44aa45c", 2625 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 2626 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2627 + }, 2628 + { 2629 + "status": "failure", 2630 + "name": "html5rw.dev", 2631 + "sha": "", 2632 + "layer": "d7d194b875991f41abf86f008f600a41", 2633 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 2634 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2635 + }, 2636 + { 2637 + "status": "no_solution", 2638 + "name": "imapd.dev", 2639 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2640 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 2641 + }, 2642 + { 2643 + "status": "failure", 2644 + "name": "init.dev", 2645 + "sha": "", 2646 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 2647 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 2648 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 2649 + }, 2650 + { 2651 + "status": "no_solution", 2652 + "name": "jmap.dev", 2653 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2654 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 2655 + }, 2656 + { 2657 + "status": "success", 2658 + "name": "json-pointer.dev", 2659 + "sha": "", 2660 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 2661 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 2662 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2663 + }, 2664 + { 2665 + "status": "success", 2666 + "name": "jsonwt.dev", 2667 + "sha": "", 2668 + "layer": "6e458034bb9e49551940d407cb36ec3c", 2669 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2670 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2671 + }, 2672 + { 2673 + "status": "no_solution", 2674 + "name": "karakeep.dev", 2675 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2676 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2677 + }, 2678 + { 2679 + "status": "failure", 2680 + "name": "langdetect.dev", 2681 + "sha": "", 2682 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 2683 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 2684 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2685 + }, 2686 + { 2687 + "status": "success", 2688 + "name": "mail-flag.dev", 2689 + "sha": "", 2690 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 2691 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 2692 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2693 + }, 2694 + { 2695 + "status": "no_solution", 2696 + "name": "matrix.dev", 2697 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2698 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2699 + }, 2700 + { 2701 + "status": "failure", 2702 + "name": "monopam.dev", 2703 + "sha": "", 2704 + "layer": "7eaaef4d4b6eb686075eb82678056773", 2705 + "log": "Processing: [default: loading data]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n-> retrieved monopam.dev (git+https://tangled.org/@anil.recoil.org/monopam.git#main)\n[monopam: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n[monopam: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"monopam\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n- File \"lib/dune\", line 4, characters 86-99:\n- 4 | (libraries eio tomlt tomlt.eio xdge opam-file-format fmt logs uri fpath claude jsont jsont.bytesrw ptime))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"monopam\" in _build/default/lib\n- -> required by _build/default/META.monopam\n- -> required by _build/install/default/lib/monopam/META\n- -> required by _build/default/monopam.install\n- -> required by alias install\n- File \"bin/dune\", line 5, characters 20-28:\n- 5 | (libraries monopam requests eio_main cmdliner fmt.tty fmt.cli logs.fmt logs.cli))\n- ^^^^^^^^\n- Error: Library \"requests\" not found.\n- -> required by _build/default/bin/main.exe\n- -> required by _build/install/default/bin/monopam\n- -> required by _build/default/monopam.install\n- -> required by alias install\n[ERROR] The compilation of monopam.dev failed at \"dune build -p monopam -j 39 @install\".\nbuild failed... \n", 2706 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhir.20250912\" -> {\"dune.3.21.0\" \"menhirCST.20250912\" \"menhirLib.20250912\" \"menhirSdk.20250912\" \"ocaml.5.3.0\"}\n \"menhirCST.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirLib.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirSdk.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"monopam.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"opam-file-format.2.2.0\" \"tomlt.dev\" \"uri.4.4.0\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"opam-file-format.2.2.0\" -> {\"dune.3.21.0\" \"menhir.20250912\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 2707 + }, 2708 + { 2709 + "status": "failure", 2710 + "name": "mqtte.dev", 2711 + "sha": "", 2712 + "layer": "5791b14efa238892d474e9f0828a924c", 2713 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 2714 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2715 + }, 2716 + { 2717 + "status": "dependency_failed", 2718 + "name": "odoc-xo.dev", 2719 + "sha": "", 2720 + "layer": "813f6c718d66929bf81f1feb4d135d97", 2721 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 2722 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2723 + }, 2724 + { 2725 + "status": "no_solution", 2726 + "name": "owntracks-cli.dev", 2727 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2728 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2729 + }, 2730 + { 2731 + "status": "failure", 2732 + "name": "owntracks.dev", 2733 + "sha": "", 2734 + "layer": "9de0a19185741e33e85e1513441103db", 2735 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 2736 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2737 + }, 2738 + { 2739 + "status": "no_solution", 2740 + "name": "peertube.dev", 2741 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2742 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2743 + }, 2744 + { 2745 + "status": "no_solution", 2746 + "name": "poe.dev", 2747 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2748 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2749 + }, 2750 + { 2751 + "status": "no_solution", 2752 + "name": "publicsuffix.dev", 2753 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2754 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2755 + }, 2756 + { 2757 + "status": "no_solution", 2758 + "name": "punycode.dev", 2759 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2760 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2761 + }, 2762 + { 2763 + "status": "no_solution", 2764 + "name": "requests.dev", 2765 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2766 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 2767 + }, 2768 + { 2769 + "status": "success", 2770 + "name": "srcsetter-cmd.dev", 2771 + "sha": "", 2772 + "layer": "2096127048a7edfc326006e01d359a90", 2773 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 2774 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2775 + }, 2776 + { 2777 + "status": "success", 2778 + "name": "srcsetter.dev", 2779 + "sha": "", 2780 + "layer": "dc7188b9522138b60d495cacd602018b", 2781 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 2782 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2783 + }, 2784 + { 2785 + "status": "no_solution", 2786 + "name": "standard-site.dev", 2787 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2788 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 2789 + }, 2790 + { 2791 + "status": "no_solution", 2792 + "name": "tangled.dev", 2793 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2794 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 2795 + }, 2796 + { 2797 + "status": "success", 2798 + "name": "tomlt.dev", 2799 + "sha": "", 2800 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 2801 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 2802 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 2803 + }, 2804 + { 2805 + "status": "no_solution", 2806 + "name": "typesense.dev", 2807 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2808 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 2809 + }, 2810 + { 2811 + "status": "no_solution", 2812 + "name": "webfinger.dev", 2813 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2814 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&webfinger ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- webfinger -> webfinger.dev\n User requested = dev" 2815 + }, 2816 + { 2817 + "status": "success", 2818 + "name": "xdge.dev", 2819 + "sha": "", 2820 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 2821 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 2822 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 2823 + }, 2824 + { 2825 + "status": "no_solution", 2826 + "name": "xrpc-auth.dev", 2827 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2828 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 2829 + }, 2830 + { 2831 + "status": "success", 2832 + "name": "yamlrw-eio.dev", 2833 + "sha": "", 2834 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 2835 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 2836 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2837 + }, 2838 + { 2839 + "status": "success", 2840 + "name": "yamlrw-unix.dev", 2841 + "sha": "", 2842 + "layer": "8db054b070b14cd059644b727209cbfb", 2843 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 2844 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2845 + }, 2846 + { 2847 + "status": "success", 2848 + "name": "yamlrw.dev", 2849 + "sha": "", 2850 + "layer": "a2956555be7bd691d14244a9f8043429", 2851 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 2852 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 2853 + }, 2854 + { 2855 + "status": "success", 2856 + "name": "yamlt.dev", 2857 + "sha": "", 2858 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 2859 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 2860 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2861 + }, 2862 + { 2863 + "status": "no_solution", 2864 + "name": "zotero-translation.dev", 2865 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2866 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 2867 + }, 2868 + { 2869 + "status": "no_solution", 2870 + "name": "zulip.dev", 2871 + "sha": "b92aa39c38a27d35945ba0b64e38ee484429284c31c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2872 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 2873 + } 2874 + ] 2875 + }, 2876 + { 2877 + "commit": "23453240ab9b5add00dc6ee07eab8f37a0650369", 2878 + "short_commit": "2345324", 2879 + "message": "mailflag", 2880 + "packages": [ 2881 + { 2882 + "status": "dependency_failed", 2883 + "name": "atp-lexicon-atproto.dev", 2884 + "sha": "", 2885 + "layer": "025fada5602c251d083a20586e17e4df", 2886 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2887 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2888 + }, 2889 + { 2890 + "status": "dependency_failed", 2891 + "name": "atp-lexicon-bsky.dev", 2892 + "sha": "", 2893 + "layer": "025fada5602c251d083a20586e17e4df", 2894 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2895 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2896 + }, 2897 + { 2898 + "status": "dependency_failed", 2899 + "name": "atp-lexicon-standard-site.dev", 2900 + "sha": "", 2901 + "layer": "025fada5602c251d083a20586e17e4df", 2902 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2903 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2904 + }, 2905 + { 2906 + "status": "dependency_failed", 2907 + "name": "atp-lexicon-tangled.dev", 2908 + "sha": "", 2909 + "layer": "025fada5602c251d083a20586e17e4df", 2910 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2911 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2912 + }, 2913 + { 2914 + "status": "no_solution", 2915 + "name": "atp-xrpc.dev", 2916 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2917 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2918 + }, 2919 + { 2920 + "status": "failure", 2921 + "name": "atp.dev", 2922 + "sha": "", 2923 + "layer": "025fada5602c251d083a20586e17e4df", 2924 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 2925 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2926 + }, 2927 + { 2928 + "status": "no_solution", 2929 + "name": "bsky.dev", 2930 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2931 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2932 + }, 2933 + { 2934 + "status": "no_solution", 2935 + "name": "bushel.dev", 2936 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2937 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2938 + }, 2939 + { 2940 + "status": "success", 2941 + "name": "bytesrw-eio.dev", 2942 + "sha": "", 2943 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 2944 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 2945 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2946 + }, 2947 + { 2948 + "status": "success", 2949 + "name": "cbort.dev", 2950 + "sha": "", 2951 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 2952 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2953 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2954 + }, 2955 + { 2956 + "status": "success", 2957 + "name": "cff.dev", 2958 + "sha": "", 2959 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 2960 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 2961 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 2962 + }, 2963 + { 2964 + "status": "failure", 2965 + "name": "claude.dev", 2966 + "sha": "", 2967 + "layer": "702d94150b31ca1887c445541829069e", 2968 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 2969 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 2970 + }, 2971 + { 2972 + "status": "success", 2973 + "name": "conpool.dev", 2974 + "sha": "", 2975 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 2976 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 2977 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 2978 + }, 2979 + { 2980 + "status": "no_solution", 2981 + "name": "cookeio.dev", 2982 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 2983 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 2984 + }, 2985 + { 2986 + "status": "success", 2987 + "name": "crockford.dev", 2988 + "sha": "", 2989 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 2990 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 2991 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 2992 + }, 2993 + { 2994 + "status": "dependency_failed", 2995 + "name": "frontmatter-eio.dev", 2996 + "sha": "", 2997 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 2998 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 2999 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3000 + }, 3001 + { 3002 + "status": "failure", 3003 + "name": "frontmatter.dev", 3004 + "sha": "", 3005 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 3006 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 3007 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3008 + }, 3009 + { 3010 + "status": "dependency_failed", 3011 + "name": "hermest-cli.dev", 3012 + "sha": "", 3013 + "layer": "036f6658c8528613dcd54d67f44aa45c", 3014 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 3015 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3016 + }, 3017 + { 3018 + "status": "failure", 3019 + "name": "hermest.dev", 3020 + "sha": "", 3021 + "layer": "036f6658c8528613dcd54d67f44aa45c", 3022 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 3023 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3024 + }, 3025 + { 3026 + "status": "failure", 3027 + "name": "html5rw.dev", 3028 + "sha": "", 3029 + "layer": "d7d194b875991f41abf86f008f600a41", 3030 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 3031 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3032 + }, 3033 + { 3034 + "status": "no_solution", 3035 + "name": "imapd.dev", 3036 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3037 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 3038 + }, 3039 + { 3040 + "status": "failure", 3041 + "name": "init.dev", 3042 + "sha": "", 3043 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 3044 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 3045 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 3046 + }, 3047 + { 3048 + "status": "no_solution", 3049 + "name": "jmap.dev", 3050 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3051 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 3052 + }, 3053 + { 3054 + "status": "success", 3055 + "name": "json-pointer.dev", 3056 + "sha": "", 3057 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 3058 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 3059 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3060 + }, 3061 + { 3062 + "status": "success", 3063 + "name": "jsonwt.dev", 3064 + "sha": "", 3065 + "layer": "6e458034bb9e49551940d407cb36ec3c", 3066 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3067 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3068 + }, 3069 + { 3070 + "status": "no_solution", 3071 + "name": "karakeep.dev", 3072 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3073 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3074 + }, 3075 + { 3076 + "status": "failure", 3077 + "name": "langdetect.dev", 3078 + "sha": "", 3079 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 3080 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 3081 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3082 + }, 3083 + { 3084 + "status": "success", 3085 + "name": "mail-flag.dev", 3086 + "sha": "", 3087 + "layer": "2a4b308d228c6b3c96483a4dd8f8c3ac", 3088 + "log": "Processing: [default: loading data]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n[mail-flag.dev: git]\n-> retrieved mail-flag.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mail-flag.git#main)\n[mail-flag: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n[mail-flag: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mail-flag\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mail-flag.dev)\n-> compiled mail-flag.dev\n-> installed mail-flag.dev\n", 3089 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mail-flag.dev\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3090 + }, 3091 + { 3092 + "status": "no_solution", 3093 + "name": "matrix.dev", 3094 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3095 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3096 + }, 3097 + { 3098 + "status": "failure", 3099 + "name": "monopam.dev", 3100 + "sha": "", 3101 + "layer": "7eaaef4d4b6eb686075eb82678056773", 3102 + "log": "Processing: [default: loading data]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n-> retrieved monopam.dev (git+https://tangled.org/@anil.recoil.org/monopam.git#main)\n[monopam: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n[monopam: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"monopam\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n- File \"lib/dune\", line 4, characters 86-99:\n- 4 | (libraries eio tomlt tomlt.eio xdge opam-file-format fmt logs uri fpath claude jsont jsont.bytesrw ptime))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"monopam\" in _build/default/lib\n- -> required by _build/default/META.monopam\n- -> required by _build/install/default/lib/monopam/META\n- -> required by _build/default/monopam.install\n- -> required by alias install\n- File \"bin/dune\", line 5, characters 20-28:\n- 5 | (libraries monopam requests eio_main cmdliner fmt.tty fmt.cli logs.fmt logs.cli))\n- ^^^^^^^^\n- Error: Library \"requests\" not found.\n- -> required by _build/default/bin/main.exe\n- -> required by _build/install/default/bin/monopam\n- -> required by _build/default/monopam.install\n- -> required by alias install\n[ERROR] The compilation of monopam.dev failed at \"dune build -p monopam -j 39 @install\".\nbuild failed... \n", 3103 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhir.20250912\" -> {\"dune.3.21.0\" \"menhirCST.20250912\" \"menhirLib.20250912\" \"menhirSdk.20250912\" \"ocaml.5.3.0\"}\n \"menhirCST.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirLib.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirSdk.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"monopam.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"opam-file-format.2.2.0\" \"tomlt.dev\" \"uri.4.4.0\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"opam-file-format.2.2.0\" -> {\"dune.3.21.0\" \"menhir.20250912\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 3104 + }, 3105 + { 3106 + "status": "failure", 3107 + "name": "mqtte.dev", 3108 + "sha": "", 3109 + "layer": "5791b14efa238892d474e9f0828a924c", 3110 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 3111 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3112 + }, 3113 + { 3114 + "status": "dependency_failed", 3115 + "name": "odoc-xo.dev", 3116 + "sha": "", 3117 + "layer": "813f6c718d66929bf81f1feb4d135d97", 3118 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 3119 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3120 + }, 3121 + { 3122 + "status": "no_solution", 3123 + "name": "owntracks-cli.dev", 3124 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3125 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3126 + }, 3127 + { 3128 + "status": "failure", 3129 + "name": "owntracks.dev", 3130 + "sha": "", 3131 + "layer": "9de0a19185741e33e85e1513441103db", 3132 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 3133 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3134 + }, 3135 + { 3136 + "status": "no_solution", 3137 + "name": "peertube.dev", 3138 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3139 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3140 + }, 3141 + { 3142 + "status": "no_solution", 3143 + "name": "poe.dev", 3144 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3145 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3146 + }, 3147 + { 3148 + "status": "no_solution", 3149 + "name": "publicsuffix.dev", 3150 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3151 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3152 + }, 3153 + { 3154 + "status": "no_solution", 3155 + "name": "punycode.dev", 3156 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3157 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3158 + }, 3159 + { 3160 + "status": "no_solution", 3161 + "name": "requests.dev", 3162 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3163 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 3164 + }, 3165 + { 3166 + "status": "success", 3167 + "name": "srcsetter-cmd.dev", 3168 + "sha": "", 3169 + "layer": "2096127048a7edfc326006e01d359a90", 3170 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 3171 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3172 + }, 3173 + { 3174 + "status": "success", 3175 + "name": "srcsetter.dev", 3176 + "sha": "", 3177 + "layer": "dc7188b9522138b60d495cacd602018b", 3178 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 3179 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3180 + }, 3181 + { 3182 + "status": "no_solution", 3183 + "name": "standard-site.dev", 3184 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3185 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 3186 + }, 3187 + { 3188 + "status": "no_solution", 3189 + "name": "tangled.dev", 3190 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3191 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 3192 + }, 3193 + { 3194 + "status": "success", 3195 + "name": "tomlt.dev", 3196 + "sha": "", 3197 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 3198 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 3199 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3200 + }, 3201 + { 3202 + "status": "no_solution", 3203 + "name": "typesense.dev", 3204 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3205 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 3206 + }, 3207 + { 3208 + "status": "success", 3209 + "name": "xdge.dev", 3210 + "sha": "", 3211 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 3212 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 3213 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 3214 + }, 3215 + { 3216 + "status": "no_solution", 3217 + "name": "xrpc-auth.dev", 3218 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3219 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 3220 + }, 3221 + { 3222 + "status": "success", 3223 + "name": "yamlrw-eio.dev", 3224 + "sha": "", 3225 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 3226 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 3227 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3228 + }, 3229 + { 3230 + "status": "success", 3231 + "name": "yamlrw-unix.dev", 3232 + "sha": "", 3233 + "layer": "8db054b070b14cd059644b727209cbfb", 3234 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 3235 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3236 + }, 3237 + { 3238 + "status": "success", 3239 + "name": "yamlrw.dev", 3240 + "sha": "", 3241 + "layer": "a2956555be7bd691d14244a9f8043429", 3242 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 3243 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3244 + }, 3245 + { 3246 + "status": "success", 3247 + "name": "yamlt.dev", 3248 + "sha": "", 3249 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 3250 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 3251 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3252 + }, 3253 + { 3254 + "status": "no_solution", 3255 + "name": "zotero-translation.dev", 3256 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3257 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 3258 + }, 3259 + { 3260 + "status": "no_solution", 3261 + "name": "zulip.dev", 3262 + "sha": "23453240ab9b5add00dc6ee07eab8f37a065036931c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3263 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 3264 + } 3265 + ] 3266 + }, 3267 + { 3268 + "commit": "2f148b15946c06f750563254f81a197abd79e957", 3269 + "short_commit": "2f148b1", 3270 + "message": "more", 3271 + "packages": [ 3272 + { 3273 + "status": "dependency_failed", 3274 + "name": "atp-lexicon-atproto.dev", 3275 + "sha": "", 3276 + "layer": "025fada5602c251d083a20586e17e4df", 3277 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3278 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3279 + }, 3280 + { 3281 + "status": "dependency_failed", 3282 + "name": "atp-lexicon-bsky.dev", 3283 + "sha": "", 3284 + "layer": "025fada5602c251d083a20586e17e4df", 3285 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3286 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3287 + }, 3288 + { 3289 + "status": "dependency_failed", 3290 + "name": "atp-lexicon-standard-site.dev", 3291 + "sha": "", 3292 + "layer": "025fada5602c251d083a20586e17e4df", 3293 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3294 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3295 + }, 3296 + { 3297 + "status": "dependency_failed", 3298 + "name": "atp-lexicon-tangled.dev", 3299 + "sha": "", 3300 + "layer": "025fada5602c251d083a20586e17e4df", 3301 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3302 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3303 + }, 3304 + { 3305 + "status": "no_solution", 3306 + "name": "atp-xrpc.dev", 3307 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3308 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3309 + }, 3310 + { 3311 + "status": "failure", 3312 + "name": "atp.dev", 3313 + "sha": "", 3314 + "layer": "025fada5602c251d083a20586e17e4df", 3315 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3316 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3317 + }, 3318 + { 3319 + "status": "no_solution", 3320 + "name": "bsky.dev", 3321 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3322 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3323 + }, 3324 + { 3325 + "status": "no_solution", 3326 + "name": "bushel.dev", 3327 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3328 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3329 + }, 3330 + { 3331 + "status": "success", 3332 + "name": "bytesrw-eio.dev", 3333 + "sha": "", 3334 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 3335 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 3336 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3337 + }, 3338 + { 3339 + "status": "success", 3340 + "name": "cbort.dev", 3341 + "sha": "", 3342 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 3343 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3344 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3345 + }, 3346 + { 3347 + "status": "success", 3348 + "name": "cff.dev", 3349 + "sha": "", 3350 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 3351 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 3352 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3353 + }, 3354 + { 3355 + "status": "failure", 3356 + "name": "claude.dev", 3357 + "sha": "", 3358 + "layer": "702d94150b31ca1887c445541829069e", 3359 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 3360 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3361 + }, 3362 + { 3363 + "status": "success", 3364 + "name": "conpool.dev", 3365 + "sha": "", 3366 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 3367 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3368 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3369 + }, 3370 + { 3371 + "status": "no_solution", 3372 + "name": "cookeio.dev", 3373 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3374 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3375 + }, 3376 + { 3377 + "status": "success", 3378 + "name": "crockford.dev", 3379 + "sha": "", 3380 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 3381 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 3382 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 3383 + }, 3384 + { 3385 + "status": "dependency_failed", 3386 + "name": "frontmatter-eio.dev", 3387 + "sha": "", 3388 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 3389 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 3390 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3391 + }, 3392 + { 3393 + "status": "failure", 3394 + "name": "frontmatter.dev", 3395 + "sha": "", 3396 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 3397 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 3398 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3399 + }, 3400 + { 3401 + "status": "dependency_failed", 3402 + "name": "hermest-cli.dev", 3403 + "sha": "", 3404 + "layer": "036f6658c8528613dcd54d67f44aa45c", 3405 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 3406 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3407 + }, 3408 + { 3409 + "status": "failure", 3410 + "name": "hermest.dev", 3411 + "sha": "", 3412 + "layer": "036f6658c8528613dcd54d67f44aa45c", 3413 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 3414 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3415 + }, 3416 + { 3417 + "status": "failure", 3418 + "name": "html5rw.dev", 3419 + "sha": "", 3420 + "layer": "d7d194b875991f41abf86f008f600a41", 3421 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 3422 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3423 + }, 3424 + { 3425 + "status": "no_solution", 3426 + "name": "imapd.dev", 3427 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3428 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 3429 + }, 3430 + { 3431 + "status": "failure", 3432 + "name": "init.dev", 3433 + "sha": "", 3434 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 3435 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 3436 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 3437 + }, 3438 + { 3439 + "status": "no_solution", 3440 + "name": "jmap.dev", 3441 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3442 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 3443 + }, 3444 + { 3445 + "status": "success", 3446 + "name": "json-pointer.dev", 3447 + "sha": "", 3448 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 3449 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 3450 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3451 + }, 3452 + { 3453 + "status": "success", 3454 + "name": "jsonwt.dev", 3455 + "sha": "", 3456 + "layer": "6e458034bb9e49551940d407cb36ec3c", 3457 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3458 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3459 + }, 3460 + { 3461 + "status": "no_solution", 3462 + "name": "karakeep.dev", 3463 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3464 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3465 + }, 3466 + { 3467 + "status": "failure", 3468 + "name": "langdetect.dev", 3469 + "sha": "", 3470 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 3471 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 3472 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3473 + }, 3474 + { 3475 + "status": "no_solution", 3476 + "name": "matrix.dev", 3477 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3478 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&matrix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- matrix -> matrix.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3479 + }, 3480 + { 3481 + "status": "failure", 3482 + "name": "monopam.dev", 3483 + "sha": "", 3484 + "layer": "7eaaef4d4b6eb686075eb82678056773", 3485 + "log": "Processing: [default: loading data]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n-> retrieved monopam.dev (git+https://tangled.org/@anil.recoil.org/monopam.git#main)\n[monopam: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n[monopam: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"monopam\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n- File \"lib/dune\", line 4, characters 86-99:\n- 4 | (libraries eio tomlt tomlt.eio xdge opam-file-format fmt logs uri fpath claude jsont jsont.bytesrw ptime))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"monopam\" in _build/default/lib\n- -> required by _build/default/META.monopam\n- -> required by _build/install/default/lib/monopam/META\n- -> required by _build/default/monopam.install\n- -> required by alias install\n- File \"bin/dune\", line 5, characters 20-28:\n- 5 | (libraries monopam requests eio_main cmdliner fmt.tty fmt.cli logs.fmt logs.cli))\n- ^^^^^^^^\n- Error: Library \"requests\" not found.\n- -> required by _build/default/bin/main.exe\n- -> required by _build/install/default/bin/monopam\n- -> required by _build/default/monopam.install\n- -> required by alias install\n[ERROR] The compilation of monopam.dev failed at \"dune build -p monopam -j 39 @install\".\nbuild failed... \n", 3486 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhir.20250912\" -> {\"dune.3.21.0\" \"menhirCST.20250912\" \"menhirLib.20250912\" \"menhirSdk.20250912\" \"ocaml.5.3.0\"}\n \"menhirCST.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirLib.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirSdk.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"monopam.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"opam-file-format.2.2.0\" \"tomlt.dev\" \"uri.4.4.0\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"opam-file-format.2.2.0\" -> {\"dune.3.21.0\" \"menhir.20250912\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 3487 + }, 3488 + { 3489 + "status": "failure", 3490 + "name": "mqtte.dev", 3491 + "sha": "", 3492 + "layer": "5791b14efa238892d474e9f0828a924c", 3493 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 3494 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3495 + }, 3496 + { 3497 + "status": "dependency_failed", 3498 + "name": "odoc-xo.dev", 3499 + "sha": "", 3500 + "layer": "813f6c718d66929bf81f1feb4d135d97", 3501 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 3502 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3503 + }, 3504 + { 3505 + "status": "no_solution", 3506 + "name": "owntracks-cli.dev", 3507 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3508 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3509 + }, 3510 + { 3511 + "status": "failure", 3512 + "name": "owntracks.dev", 3513 + "sha": "", 3514 + "layer": "9de0a19185741e33e85e1513441103db", 3515 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 3516 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3517 + }, 3518 + { 3519 + "status": "no_solution", 3520 + "name": "peertube.dev", 3521 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3522 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3523 + }, 3524 + { 3525 + "status": "no_solution", 3526 + "name": "poe.dev", 3527 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3528 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3529 + }, 3530 + { 3531 + "status": "no_solution", 3532 + "name": "publicsuffix.dev", 3533 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3534 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3535 + }, 3536 + { 3537 + "status": "no_solution", 3538 + "name": "punycode.dev", 3539 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3540 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3541 + }, 3542 + { 3543 + "status": "no_solution", 3544 + "name": "requests.dev", 3545 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3546 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 3547 + }, 3548 + { 3549 + "status": "success", 3550 + "name": "srcsetter-cmd.dev", 3551 + "sha": "", 3552 + "layer": "2096127048a7edfc326006e01d359a90", 3553 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 3554 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3555 + }, 3556 + { 3557 + "status": "success", 3558 + "name": "srcsetter.dev", 3559 + "sha": "", 3560 + "layer": "dc7188b9522138b60d495cacd602018b", 3561 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 3562 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3563 + }, 3564 + { 3565 + "status": "no_solution", 3566 + "name": "standard-site.dev", 3567 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3568 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 3569 + }, 3570 + { 3571 + "status": "no_solution", 3572 + "name": "tangled.dev", 3573 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3574 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 3575 + }, 3576 + { 3577 + "status": "success", 3578 + "name": "tomlt.dev", 3579 + "sha": "", 3580 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 3581 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 3582 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3583 + }, 3584 + { 3585 + "status": "no_solution", 3586 + "name": "typesense.dev", 3587 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3588 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 3589 + }, 3590 + { 3591 + "status": "success", 3592 + "name": "xdge.dev", 3593 + "sha": "", 3594 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 3595 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 3596 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 3597 + }, 3598 + { 3599 + "status": "no_solution", 3600 + "name": "xrpc-auth.dev", 3601 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3602 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 3603 + }, 3604 + { 3605 + "status": "success", 3606 + "name": "yamlrw-eio.dev", 3607 + "sha": "", 3608 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 3609 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 3610 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3611 + }, 3612 + { 3613 + "status": "success", 3614 + "name": "yamlrw-unix.dev", 3615 + "sha": "", 3616 + "layer": "8db054b070b14cd059644b727209cbfb", 3617 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 3618 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3619 + }, 3620 + { 3621 + "status": "success", 3622 + "name": "yamlrw.dev", 3623 + "sha": "", 3624 + "layer": "a2956555be7bd691d14244a9f8043429", 3625 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 3626 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3627 + }, 3628 + { 3629 + "status": "success", 3630 + "name": "yamlt.dev", 3631 + "sha": "", 3632 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 3633 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 3634 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3635 + }, 3636 + { 3637 + "status": "no_solution", 3638 + "name": "zotero-translation.dev", 3639 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3640 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 3641 + }, 3642 + { 3643 + "status": "no_solution", 3644 + "name": "zulip.dev", 3645 + "sha": "2f148b15946c06f750563254f81a197abd79e95731c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3646 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 3647 + } 3648 + ] 3649 + }, 3650 + { 3651 + "commit": "301ed6378f379d5ce386022c3df1cc32c3fd2504", 3652 + "short_commit": "301ed63", 3653 + "message": "more", 3654 + "packages": [ 3655 + { 3656 + "status": "dependency_failed", 3657 + "name": "atp-lexicon-atproto.dev", 3658 + "sha": "", 3659 + "layer": "025fada5602c251d083a20586e17e4df", 3660 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3661 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-atproto.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3662 + }, 3663 + { 3664 + "status": "dependency_failed", 3665 + "name": "atp-lexicon-bsky.dev", 3666 + "sha": "", 3667 + "layer": "025fada5602c251d083a20586e17e4df", 3668 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3669 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-bsky.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3670 + }, 3671 + { 3672 + "status": "dependency_failed", 3673 + "name": "atp-lexicon-standard-site.dev", 3674 + "sha": "", 3675 + "layer": "025fada5602c251d083a20586e17e4df", 3676 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3677 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-standard-site.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3678 + }, 3679 + { 3680 + "status": "dependency_failed", 3681 + "name": "atp-lexicon-tangled.dev", 3682 + "sha": "", 3683 + "layer": "025fada5602c251d083a20586e17e4df", 3684 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3685 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"atp-lexicon-tangled.dev\" -> {\"atp.dev\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3686 + }, 3687 + { 3688 + "status": "no_solution", 3689 + "name": "atp-xrpc.dev", 3690 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3691 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&atp-xrpc ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- atp-xrpc -> atp-xrpc.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3692 + }, 3693 + { 3694 + "status": "failure", 3695 + "name": "atp.dev", 3696 + "sha": "", 3697 + "layer": "025fada5602c251d083a20586e17e4df", 3698 + "log": "Processing: [default: loading data]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n[atp.dev: git]\n-> retrieved atp.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[atp: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n[atp: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"atp\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/atp.dev)\n- File \"atp/lib/dune\", line 13, characters 2-4:\n- 13 | re\n- ^^\n- Error: Library \"re\" not found.\n- -> required by library \"atp\" in _build/default/atp/lib\n- -> required by _build/default/META.atp\n- -> required by _build/install/default/lib/atp/META\n- -> required by _build/default/atp.install\n- -> required by alias install\n[ERROR] The compilation of atp.dev failed at \"dune build -p atp -j 39 @install\".\nbuild failed... \n", 3699 + "solution": "digraph opam {\n \"atp.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"multibase.0.1.0\" \"ocaml.5.3.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"multibase.0.1.0\" -> {\"base64.3.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3700 + }, 3701 + { 3702 + "status": "no_solution", 3703 + "name": "bsky.dev", 3704 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3705 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-bsky.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n re.1.14.0 requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&bsky ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- bsky -> bsky.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3706 + }, 3707 + { 3708 + "status": "no_solution", 3709 + "name": "bushel.dev", 3710 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3711 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmarkit.0.4.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n frontmatter.dev frontmatter-eio.dev gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev re.1.14.0 requests.dev rresult.0.7.0\n seq.base stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 typesense.dev uri.4.4.0 uring.2.7.0\n uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev yamlrw.dev zarith.1.14\n ocaml&bushel ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- bushel -> bushel.dev\n User requested = dev\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3712 + }, 3713 + { 3714 + "status": "success", 3715 + "name": "bytesrw-eio.dev", 3716 + "sha": "", 3717 + "layer": "96ff91c09a0e5f007e0b1b6fda2a8582", 3718 + "log": "Processing: [default: loading data]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n[bytesrw-eio.dev: git]\n-> retrieved bytesrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-bytesrw-eio.git#main)\n[bytesrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n[bytesrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"bytesrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/bytesrw-eio.dev)\n-> compiled bytesrw-eio.dev\n-> installed bytesrw-eio.dev\n", 3719 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3720 + }, 3721 + { 3722 + "status": "success", 3723 + "name": "cbort.dev", 3724 + "sha": "", 3725 + "layer": "d41bb6c70aa39c972b04922bb5d9be03", 3726 + "log": "Processing: [default: loading data]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n[cbort.dev: git]\n-> retrieved cbort.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cbort.git#main)\n[cbort: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n[cbort: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cbort\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cbort.dev)\n-> compiled cbort.dev\n-> installed cbort.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3727 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3728 + }, 3729 + { 3730 + "status": "success", 3731 + "name": "cff.dev", 3732 + "sha": "", 3733 + "layer": "5abc3b8184b34cda2e3d9feb943e70f3", 3734 + "log": "Processing: [default: loading data]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n[cff.dev: git]\n-> retrieved cff.dev (git+https://tangled.org/@anil.recoil.org/ocaml-cff.git#main)\n[cff: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n[cff: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"cff\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/cff.dev)\n-> compiled cff.dev\n-> installed cff.dev\n", 3735 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cff.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ISO3166.0.1.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"spdx_licenses.1.4.0\" \"yamlt.dev\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ISO3166.0.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"spdx_licenses.1.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3736 + }, 3737 + { 3738 + "status": "failure", 3739 + "name": "claude.dev", 3740 + "sha": "", 3741 + "layer": "702d94150b31ca1887c445541829069e", 3742 + "log": "Processing: [default: loading data]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n[claude.dev: git]\n-> retrieved claude.dev (git+https://tangled.org/@anil.recoil.org/ocaml-claudeio.git#main)\n[claude: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n[claude: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"claude\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/claude.dev)\n- File \"lib/dune\", line 4, characters 46-59:\n- 4 | (libraries proto eio eio_main fmt logs jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" in /home/opam/.opam/default/lib/jsont/bytesrw\n- is hidden (unsatisfied 'exists_if').\n- -> required by library \"claude\" in _build/default/lib\n- -> required by _build/default/META.claude\n- -> required by _build/install/default/lib/claude/META\n- -> required by _build/default/claude.install\n- -> required by alias install\n[ERROR] The compilation of claude.dev failed at \"dune build -p claude -j 39 @install\".\nbuild failed... \n", 3743 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"claude.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"jsont.0.2.0\" \"logs.0.10.0\" \"ocaml.5.3.0\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3744 + }, 3745 + { 3746 + "status": "success", 3747 + "name": "conpool.dev", 3748 + "sha": "", 3749 + "layer": "a5dfee2565be025a042b9f4ebaed750d", 3750 + "log": "Processing: [default: loading data]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n[conpool.dev: git]\n-> retrieved conpool.dev (git+https://tangled.org/@anil.recoil.org/ocaml-conpool.git#main)\n[conpool: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n[conpool: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"conpool\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/conpool.dev)\n-> compiled conpool.dev\n-> installed conpool.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3751 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3752 + }, 3753 + { 3754 + "status": "no_solution", 3755 + "name": "cookeio.dev", 3756 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3757 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base bigstringaf.0.10.0 cmdliner.2.1.0\n csexp.1.5.2 cstruct.6.2.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 fmt.0.11.0 hmap.0.8.1\n iomux.0.4 logs.0.10.0 lwt-dllist.1.1.0 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev seq.base thread-table.1.0.0\n topkg.1.1.1 uring.2.7.0 ocaml&cookeio ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- cookeio -> cookeio.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3758 + }, 3759 + { 3760 + "status": "success", 3761 + "name": "crockford.dev", 3762 + "sha": "", 3763 + "layer": "5d0eb87422ab30f61222795c7f0e60c1", 3764 + "log": "Processing: [default: loading data]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n[crockford.dev: git]\n-> retrieved crockford.dev (git+https://tangled.org/@anil.recoil.org/ocaml-crockford.git#main)\n[crockford: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n[crockford: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"crockford\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/crockford.dev)\n-> compiled crockford.dev\n-> installed crockford.dev\n", 3765 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"crockford.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 3766 + }, 3767 + { 3768 + "status": "dependency_failed", 3769 + "name": "frontmatter-eio.dev", 3770 + "sha": "", 3771 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 3772 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 3773 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"frontmatter-eio.dev\" -> {\"dune.3.21.0\" \"eio.1.3\" \"frontmatter.dev\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3774 + }, 3775 + { 3776 + "status": "failure", 3777 + "name": "frontmatter.dev", 3778 + "sha": "", 3779 + "layer": "ca632b6ba036c0b394b45ed6e75eaf51", 3780 + "log": "Processing: [default: loading data]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n[frontmatter.dev: git]\n-> retrieved frontmatter.dev (git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main)\n[frontmatter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n[frontmatter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"frontmatter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/frontmatter.dev)\n- File \"lib/dune\", line 4, characters 19-24:\n- 4 | (libraries yamlrw yamlt ptime))\n- ^^^^^\n- Error: Library \"yamlt\" not found.\n- -> required by library \"frontmatter\" in _build/default/lib\n- -> required by _build/default/META.frontmatter\n- -> required by _build/install/default/lib/frontmatter/META\n- -> required by _build/default/frontmatter.install\n- -> required by alias install\n[ERROR] The compilation of frontmatter.dev failed at \"dune build -p frontmatter -j 39 @install\".\nbuild failed... \n", 3781 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"frontmatter.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"yamlrw.dev\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3782 + }, 3783 + { 3784 + "status": "dependency_failed", 3785 + "name": "hermest-cli.dev", 3786 + "sha": "", 3787 + "layer": "036f6658c8528613dcd54d67f44aa45c", 3788 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 3789 + "solution": "digraph opam {\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"hermest-cli.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"hermest.dev\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3790 + }, 3791 + { 3792 + "status": "failure", 3793 + "name": "hermest.dev", 3794 + "sha": "", 3795 + "layer": "036f6658c8528613dcd54d67f44aa45c", 3796 + "log": "Processing: [default: loading data]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n[hermest.dev: git]\n-> retrieved hermest.dev (git+https://tangled.org/@anil.recoil.org/ocaml-atp.git#main)\n[hermest: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n[hermest: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"hermest\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/hermest.dev)\n- File \"hermest/lib/dune\", line 4, characters 18-31:\n- 4 | (libraries jsont jsont.bytesrw))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"hermest\" in _build/default/hermest/lib\n- -> required by _build/default/META.hermest\n- -> required by _build/install/default/lib/hermest/META\n- -> required by _build/default/hermest.install\n- -> required by alias install\n[ERROR] The compilation of hermest.dev failed at \"dune build -p hermest -j 39 @install\".\nbuild failed... \n", 3797 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"hermest.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"yojson.3.0.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"yojson.3.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3798 + }, 3799 + { 3800 + "status": "failure", 3801 + "name": "html5rw.dev", 3802 + "sha": "", 3803 + "layer": "d7d194b875991f41abf86f008f600a41", 3804 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"bin/dune\", line 5, characters 41-49:\n- 5 | (libraries htmlrw_check html5rw bytesrw cmdliner unix))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 3805 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3806 + }, 3807 + { 3808 + "status": "no_solution", 3809 + "name": "imapd.dev", 3810 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3811 + "solution": "Can't find all required versions.\nSelected: asn1-combinators.0.3.2 base-threads.base base-unix.base\n base64.3.5.2 bigstringaf.0.10.0 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 csexp.1.5.2 cstruct.6.2.0\n digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0\n dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 eio.1.3\n eio_linux.1.3 eio_main.1.3 eio_posix.1.3 eqaf.0.10 faraday.0.8.2\n fmt.0.11.0 gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 kdf.1.0.0\n logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1 menhir.20250912\n menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912\n mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n seq.base thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1\n uring.2.7.0 x509.1.0.6 zarith.1.14 ocaml&imapd ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- conf-libpam -> (problem)\n No known implementations at all\n- imapd -> imapd.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 3812 + }, 3813 + { 3814 + "status": "failure", 3815 + "name": "init.dev", 3816 + "sha": "", 3817 + "layer": "4726a67e84bef4eb59d9dfcdc48866c4", 3818 + "log": "Processing: [default: loading data]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n[init.dev: git]\n-> retrieved init.dev (git+https://tangled.org/@anil.recoil.org/ocaml-init.git#main)\n[init: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n[init: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"init\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/init.dev)\n- File \"src/bytesrw/dune\", line 4, characters 17-24:\n- 4 | (libraries init bytesrw))\n- ^^^^^^^\n- Error: Library \"bytesrw\" not found.\n- -> required by library \"init.bytesrw\" in _build/default/src/bytesrw\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n- File \"src/eio/dune\", line 4, characters 34-45:\n- 4 | (libraries init init_bytesrw eio bytesrw-eio))\n- ^^^^^^^^^^^\n- Error: Library \"bytesrw-eio\" not found.\n- -> required by library \"init.eio\" in _build/default/src/eio\n- -> required by _build/default/META.init\n- -> required by _build/install/default/lib/init/META\n- -> required by _build/default/init.install\n- -> required by alias install\n[ERROR] The compilation of init.dev failed at \"dune build -p init -j 39 @install\".\nbuild failed... \n", 3819 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"init.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n}\n" 3820 + }, 3821 + { 3822 + "status": "no_solution", 3823 + "name": "jmap.dev", 3824 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3825 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&jmap ocaml-variants ocaml-base-compiler ocaml-base-compiler\n- jmap -> (problem)\n User requested = dev\n Rejected candidates:\n jmap.dev: Requires ocaml >= 5.4.0\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ..." 3826 + }, 3827 + { 3828 + "status": "success", 3829 + "name": "json-pointer.dev", 3830 + "sha": "", 3831 + "layer": "e9be5fbe2ac5740cb9c1b8eed6696ccc", 3832 + "log": "Processing: [default: loading data]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n[json-pointer.dev: git]\n-> retrieved json-pointer.dev (git+https://tangled.org/@anil.recoil.org/ocaml-json-pointer.git#main)\n[json-pointer: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n[json-pointer: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"json-pointer\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/json-pointer.dev)\n-> compiled json-pointer.dev\n-> installed json-pointer.dev\n", 3833 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"json-pointer.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3834 + }, 3835 + { 3836 + "status": "success", 3837 + "name": "jsonwt.dev", 3838 + "sha": "", 3839 + "layer": "6e458034bb9e49551940d407cb36ec3c", 3840 + "log": "Processing: [default: loading data]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n[jsonwt.dev: git]\n-> retrieved jsonwt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main)\n[jsonwt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n[jsonwt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"jsonwt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/jsonwt.dev)\n-> compiled jsonwt.dev\n-> installed jsonwt.dev\n[WARNING] Opam package conf-gmp.5 depends on the following system package that can no longer be found: libgmp-dev\n", 3841 + "solution": "digraph opam {\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cbort.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"jsonwt.dev\" -> {\"base64.3.5.2\" \"bytesrw.0.3.0\" \"cbort.dev\" \"cstruct.6.2.0\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"jsont.0.2.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3842 + }, 3843 + { 3844 + "status": "no_solution", 3845 + "name": "karakeep.dev", 3846 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3847 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&karakeep ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- karakeep -> karakeep.dev\n User requested = dev\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3848 + }, 3849 + { 3850 + "status": "failure", 3851 + "name": "langdetect.dev", 3852 + "sha": "", 3853 + "layer": "0bfa176827e9a7c043bbf48b1dab48a4", 3854 + "log": "Processing: [default: loading data]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n[langdetect.dev: git]\n-> retrieved langdetect.dev (git+https://tangled.org/@anil.recoil.org/ocaml-langdetect.git#main)\n[langdetect: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n[langdetect: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"langdetect\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/langdetect.dev)\n- File \"bin/dune\", line 5, characters 23-31:\n- 5 | (libraries langdetect cmdliner))\n- ^^^^^^^^\n- Error: Library \"cmdliner\" not found.\n- -> required by _build/default/bin/langdetect_cli.exe\n- -> required by _build/install/default/bin/langdetect\n- -> required by _build/default/langdetect.install\n- -> required by alias install\n- (cd _build/default/lib && ../gen/gen_profiles.exe profiles.sm .)\n- Total unique n-grams: 172675\n- Total languages: 47\n- Total int array size: 662460 elements\n- N-gram table: 20 chunks of max 9000 elements\n- Profile data: 74 chunks of max 9000 elements\n- Generated ./profiles_packed.ml\n[ERROR] The compilation of langdetect.dev failed at \"dune build -p langdetect -j 39 @install\".\nbuild failed... \n", 3855 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"langdetect.dev\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3856 + }, 3857 + { 3858 + "status": "failure", 3859 + "name": "monopam.dev", 3860 + "sha": "", 3861 + "layer": "7eaaef4d4b6eb686075eb82678056773", 3862 + "log": "Processing: [default: loading data]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n[monopam.dev: git]\n-> retrieved monopam.dev (git+https://tangled.org/@anil.recoil.org/monopam.git#main)\n[monopam: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n[monopam: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"monopam\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/monopam.dev)\n- File \"lib/dune\", line 4, characters 86-99:\n- 4 | (libraries eio tomlt tomlt.eio xdge opam-file-format fmt logs uri fpath claude jsont jsont.bytesrw ptime))\n- ^^^^^^^^^^^^^\n- Error: Library \"jsont.bytesrw\" not found.\n- -> required by library \"monopam\" in _build/default/lib\n- -> required by _build/default/META.monopam\n- -> required by _build/install/default/lib/monopam/META\n- -> required by _build/default/monopam.install\n- -> required by alias install\n- File \"bin/dune\", line 5, characters 20-28:\n- 5 | (libraries monopam requests eio_main cmdliner fmt.tty fmt.cli logs.fmt logs.cli))\n- ^^^^^^^^\n- Error: Library \"requests\" not found.\n- -> required by _build/default/bin/main.exe\n- -> required by _build/install/default/bin/monopam\n- -> required by _build/default/monopam.install\n- -> required by alias install\n[ERROR] The compilation of monopam.dev failed at \"dune build -p monopam -j 39 @install\".\nbuild failed... \n", 3863 + "solution": "digraph opam {\n \"angstrom.0.16.1\" -> {\"bigstringaf.0.10.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ocaml-syntax-shims.1.0.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhir.20250912\" -> {\"dune.3.21.0\" \"menhirCST.20250912\" \"menhirLib.20250912\" \"menhirSdk.20250912\" \"ocaml.5.3.0\"}\n \"menhirCST.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirLib.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"menhirSdk.20250912\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"monopam.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"opam-file-format.2.2.0\" \"tomlt.dev\" \"uri.4.4.0\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocaml-syntax-shims.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"opam-file-format.2.2.0\" -> {\"dune.3.21.0\" \"menhir.20250912\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"stringext.1.6.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uri.4.4.0\" -> {\"angstrom.0.16.1\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"stringext.1.6.0\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 3864 + }, 3865 + { 3866 + "status": "failure", 3867 + "name": "mqtte.dev", 3868 + "sha": "", 3869 + "layer": "5791b14efa238892d474e9f0828a924c", 3870 + "log": "Processing: [default: loading data]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n[mqtte.dev: git]\n-> retrieved mqtte.dev (git+https://tangled.org/@anil.recoil.org/ocaml-mqtte.git#main)\n[mqtte: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n[mqtte: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"mqtte\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/mqtte.dev)\n- File \"lib/cmd/dune\", line 4, characters 39-48:\n- 4 | (libraries mqtte mqtte_eio xdge tomlt tomlt.eio eio conpool ca-certs tls cmdliner logs fmt))\n- ^^^^^^^^^\n- Error: Library \"tomlt.eio\" not found.\n- -> required by library \"mqtte.cmd\" in _build/default/lib/cmd\n- -> required by _build/default/META.mqtte\n- -> required by _build/install/default/lib/mqtte/META\n- -> required by _build/default/mqtte.install\n- -> required by alias install\n[ERROR] The compilation of mqtte.dev failed at \"dune build -p mqtte -j 39 @install\".\nbuild failed... \n", 3871 + "solution": "digraph opam {\n \"asn1-combinators.0.3.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\"}\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"base64.3.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bos.0.2.1\" -> {\"astring.0.8.5\" \"base-unix.base\" \"fmt.0.11.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"rresult.0.7.0\" \"topkg.1.1.1\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"ca-certs.1.0.1\" -> {\"bos.0.2.1\" \"digestif.1.3.0\" \"dune.3.21.0\" \"fpath.0.7.3\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"conf-gmp-powm-sec.4\" -> \"conf-gmp.5\";\n \"conpool.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls-eio.2.0.3\"}\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"digestif.1.3.0\" -> {\"dune.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"domain-name.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"duration.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"eqaf.0.10\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"gmap.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"ipaddr.5.6.1\" -> {\"domain-name.0.5.0\" \"dune.3.21.0\" \"macaddr.5.6.1\" \"ocaml.5.3.0\"}\n \"kdf.1.0.0\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"macaddr.5.6.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mirage-crypto.2.0.2\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"ocaml.5.3.0\"}\n \"mirage-crypto-ec.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"eqaf.0.10\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\"}\n \"mirage-crypto-pk.2.0.2\" -> {\"conf-gmp-powm-sec.4\" \"digestif.1.3.0\" \"dune.3.21.0\" \"eqaf.0.10\" \"mirage-crypto.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"zarith.1.14\"}\n \"mirage-crypto-rng.2.0.2\" -> {\"digestif.1.3.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"duration.0.2.1\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"ocaml.5.3.0\"}\n \"mqtte.dev\" -> {\"bytesrw.0.3.0\" \"bytesrw-eio.dev\" \"ca-certs.1.0.1\" \"cmdliner.2.1.0\" \"conpool.dev\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fmt.0.11.0\" \"logs.0.10.0\" \"ocaml.5.3.0\" \"tls.2.0.3\" \"xdge.dev\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ohex.0.2.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"rresult.0.7.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"tls.2.0.3\" -> {\"digestif.1.3.0\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\" \"x509.1.0.6\"}\n \"tls-eio.2.0.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"tls.2.0.3\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"x509.1.0.6\" -> {\"asn1-combinators.0.3.2\" \"base64.3.5.2\" \"domain-name.0.5.0\" \"dune.3.21.0\" \"fmt.0.11.0\" \"gmap.0.3.0\" \"ipaddr.5.6.1\" \"kdf.1.0.0\" \"logs.0.10.0\" \"mirage-crypto.2.0.2\" \"mirage-crypto-ec.2.0.2\" \"mirage-crypto-pk.2.0.2\" \"mirage-crypto-rng.2.0.2\" \"ocaml.5.3.0\" \"ohex.0.2.0\" \"ptime.1.2.0\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n \"zarith.1.14\" -> {\"conf-gmp.5\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlfind.1.9.8\"}\n}\n" 3872 + }, 3873 + { 3874 + "status": "dependency_failed", 3875 + "name": "odoc-xo.dev", 3876 + "sha": "", 3877 + "layer": "813f6c718d66929bf81f1feb4d135d97", 3878 + "log": "Processing: [default: loading data]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n[html5rw.dev: git]\n-> retrieved html5rw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-html5rw.git#main)\n[html5rw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n[html5rw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"html5rw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/html5rw.dev)\n- File \"lib/check/dune\", line 6, characters 67-77:\n- 6 | (libraries html5rw jsont jsont.bytesrw astring str uunf uutf xmlm langdetect))\n- ^^^^^^^^^^\n- Error: Library \"langdetect\" not found.\n- -> required by library \"html5rw.check\" in _build/default/lib/check\n- -> required by executable html5check in bin/dune:2\n- -> required by _build/default/bin/html5check.exe\n- -> required by _build/install/default/bin/html5check\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- File \"lib/js/dune\", line 11, characters 3-6:\n- 11 | brr)\n- ^^^\n- Error: Library \"brr\" not found.\n- -> required by library \"html5rw.js\" in _build/default/lib/js\n- -> required by _build/default/META.html5rw\n- -> required by _build/install/default/lib/html5rw/META\n- -> required by _build/default/html5rw.install\n- -> required by alias install\n- (cd _build/default/lib/html5rw/entities && ../../../gen/gen_entities.exe ../../../data/entities.json entities_entity_table.ml)\n- Generated entities_entity_table.ml with 2231 entities (106 legacy)\n[ERROR] The compilation of html5rw.dev failed at \"dune build -p html5rw -j 39 @install\".\nbuild failed... \n", 3879 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"html5rw.dev\" -> {\"astring.0.8.5\" \"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"uutf.1.0.4\" \"uuuu.0.4.0\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"odoc-xo.dev\" -> {\"bytesrw-eio.dev\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"html5rw.dev\" \"ocaml.5.3.0\"}\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uuuu.0.4.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 3880 + }, 3881 + { 3882 + "status": "no_solution", 3883 + "name": "owntracks-cli.dev", 3884 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3885 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mqtte.dev mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 owntracks.dev psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n tomlt.dev topkg.1.1.1 uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6\n xdg.3.21.0 xdge.dev zarith.1.14 ocaml&owntracks-cli ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- owntracks-cli -> owntracks-cli.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3886 + }, 3887 + { 3888 + "status": "failure", 3889 + "name": "owntracks.dev", 3890 + "sha": "", 3891 + "layer": "9de0a19185741e33e85e1513441103db", 3892 + "log": "Processing: [default: loading data]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n[owntracks.dev: git]\n-> retrieved owntracks.dev (git+https://tangled.org/@anil.recoil.org/ocaml-owntracks.git#main)\n[owntracks: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n[owntracks: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"owntracks\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/owntracks.dev)\n- File \"lib/dune\", line 4, characters 32-39:\n- 4 | (libraries jsont jsont.bytesrw geojson unix))\n- ^^^^^^^\n- Error: Library \"geojson\" not found.\n- -> required by library \"owntracks\" in _build/default/lib\n- -> required by _build/default/META.owntracks\n- -> required by _build/install/default/lib/owntracks/META\n- -> required by _build/default/owntracks.install\n- -> required by alias install\n[ERROR] The compilation of owntracks.dev failed at \"dune build -p owntracks -j 39 @install\".\nbuild failed... \n", 3893 + "solution": "digraph opam {\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"owntracks.dev\" -> {\"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3894 + }, 3895 + { 3896 + "status": "no_solution", 3897 + "name": "peertube.dev", 3898 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3899 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&peertube ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- peertube -> peertube.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3900 + }, 3901 + { 3902 + "status": "no_solution", 3903 + "name": "poe.dev", 3904 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3905 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 claude.dev cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 init.dev iomux.0.4 ipaddr.5.6.1 jsont.0.2.0\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 zulip.dev ocaml&poe ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- poe -> poe.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3906 + }, 3907 + { 3908 + "status": "no_solution", 3909 + "name": "publicsuffix.dev", 3910 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3911 + "solution": "Can't find all required versions.\nSelected: base-threads.base base-unix.base cmdliner.2.1.0 domain-name.0.5.0\n dune.3.21.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml&publicsuffix ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- publicsuffix -> publicsuffix.dev\n User requested = dev\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3912 + }, 3913 + { 3914 + "status": "no_solution", 3915 + "name": "punycode.dev", 3916 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3917 + "solution": "Can't find all required versions.\nSelected: ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml&punycode ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n User requested = dev\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0" 3918 + }, 3919 + { 3920 + "status": "no_solution", 3921 + "name": "requests.dev", 3922 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3923 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&requests ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- requests -> requests.dev\n User requested = dev" 3924 + }, 3925 + { 3926 + "status": "success", 3927 + "name": "srcsetter-cmd.dev", 3928 + "sha": "", 3929 + "layer": "2096127048a7edfc326006e01d359a90", 3930 + "log": "Processing: [default: loading data]\n\nThe following system packages will first need to be installed:\n imagemagick\n\n<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>\n\n+ /usr/bin/sudo \"apt-get\" \"install\" \"-qq\" \"-yy\" \"imagemagick\"\n- Preconfiguring packages ...\n- Selecting previously unselected package libdbus-1-3:amd64.\r\n- (Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r\n- (Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 20146 files and directories currently installed.)\r\n- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...\r\n- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-bin.\r\n- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-bin (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-session-bus-common.\r\n- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-session-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-daemon.\r\n- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus-daemon (1.16.2-2) ...\r\n- Selecting previously unselected package dbus-system-bus-common.\r\n- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...\r\n- Unpacking dbus-system-bus-common (1.16.2-2) ...\r\n- Selecting previously unselected package dbus.\r\n- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...\r\n- Unpacking dbus (1.16.2-2) ...\r\n- Selecting previously unselected package libfftw3-double3:amd64.\r\n- Preparing to unpack .../06-libfftw3-double3_3.3.10-2+b1_amd64.deb ...\r\n- Unpacking libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Selecting previously unselected package libpng16-16t64:amd64.\r\n- Preparing to unpack .../07-libpng16-16t64_1.6.48-1+deb13u1_amd64.deb ...\r\n- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Selecting previously unselected package libfreetype6:amd64.\r\n- Preparing to unpack .../08-libfreetype6_2.13.3+dfsg-1_amd64.deb ...\r\n- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Selecting previously unselected package fonts-dejavu-mono.\r\n- Preparing to unpack .../09-fonts-dejavu-mono_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-mono (2.37-8) ...\r\n- Selecting previously unselected package fonts-dejavu-core.\r\n- Preparing to unpack .../10-fonts-dejavu-core_2.37-8_all.deb ...\r\n- Unpacking fonts-dejavu-core (2.37-8) ...\r\n- Selecting previously unselected package libfontenc1:amd64.\r\n- Preparing to unpack .../11-libfontenc1_1%3a1.1.8-1+b2_amd64.deb ...\r\n- Unpacking libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Selecting previously unselected package x11-common.\r\n- Preparing to unpack .../12-x11-common_1%3a7.7+24+deb13u1_all.deb ...\r\n- Unpacking x11-common (1:7.7+24+deb13u1) ...\r\n- Selecting previously unselected package xfonts-encodings.\r\n- Preparing to unpack .../13-xfonts-encodings_1%3a1.0.4-2.2_all.deb ...\r\n- Unpacking xfonts-encodings (1:1.0.4-2.2) ...\r\n- Selecting previously unselected package xfonts-utils.\r\n- Preparing to unpack .../14-xfonts-utils_1%3a7.7+7_amd64.deb ...\r\n- Unpacking xfonts-utils (1:7.7+7) ...\r\n- Selecting previously unselected package fonts-urw-base35.\r\n- Preparing to unpack .../15-fonts-urw-base35_20200910-8_all.deb ...\r\n- Unpacking fonts-urw-base35 (20200910-8) ...\r\n- Selecting previously unselected package fontconfig-config.\r\n- Preparing to unpack .../16-fontconfig-config_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig-config (2.15.0-2.3) ...\r\n- Selecting previously unselected package libfontconfig1:amd64.\r\n- Preparing to unpack .../17-libfontconfig1_2.15.0-2.3_amd64.deb ...\r\n- Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Selecting previously unselected package libsharpyuv0:amd64.\r\n- Preparing to unpack .../18-libsharpyuv0_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libdav1d7:amd64.\r\n- Preparing to unpack .../19-libdav1d7_1.5.1-1_amd64.deb ...\r\n- Unpacking libdav1d7:amd64 (1.5.1-1) ...\r\n- Selecting previously unselected package libheif-plugin-dav1d:amd64.\r\n- Preparing to unpack .../20-libheif-plugin-dav1d_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libde265-0:amd64.\r\n- Preparing to unpack .../21-libde265-0_1.0.15-1+b3_amd64.deb ...\r\n- Unpacking libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Selecting previously unselected package libheif-plugin-libde265:amd64.\r\n- Preparing to unpack .../22-libheif-plugin-libde265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libheif1:amd64.\r\n- Preparing to unpack .../23-libheif1_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif1:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libjbig0:amd64.\r\n- Preparing to unpack .../24-libjbig0_2.1-6.1+b2_amd64.deb ...\r\n- Unpacking libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Selecting previously unselected package libjpeg62-turbo:amd64.\r\n- Preparing to unpack .../25-libjpeg62-turbo_1%3a2.1.5-4_amd64.deb ...\r\n- Unpacking libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Selecting previously unselected package liblcms2-2:amd64.\r\n- Preparing to unpack .../26-liblcms2-2_2.16-2_amd64.deb ...\r\n- Unpacking liblcms2-2:amd64 (2.16-2) ...\r\n- Selecting previously unselected package libglib2.0-0t64:amd64.\r\n- Preparing to unpack .../27-libglib2.0-0t64_2.84.4-3~deb13u2_amd64.deb ...\r\n- Unpacking libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package liblqr-1-0:amd64.\r\n- Preparing to unpack .../28-liblqr-1-0_0.4.2-2.1+b2_amd64.deb ...\r\n- Unpacking liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Selecting previously unselected package libltdl7:amd64.\r\n- Preparing to unpack .../29-libltdl7_2.5.4-4_amd64.deb ...\r\n- Unpacking libltdl7:amd64 (2.5.4-4) ...\r\n- Selecting previously unselected package libopenjp2-7:amd64.\r\n- Preparing to unpack .../30-libopenjp2-7_2.5.3-2.1~deb13u1_amd64.deb ...\r\n- Unpacking libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Selecting previously unselected package libraw23t64:amd64.\r\n- Preparing to unpack .../31-libraw23t64_0.21.4-2_amd64.deb ...\r\n- Unpacking libraw23t64:amd64 (0.21.4-2) ...\r\n- Selecting previously unselected package libdeflate0:amd64.\r\n- Preparing to unpack .../32-libdeflate0_1.23-2_amd64.deb ...\r\n- Unpacking libdeflate0:amd64 (1.23-2) ...\r\n- Selecting previously unselected package liblerc4:amd64.\r\n- Preparing to unpack .../33-liblerc4_4.0.0+ds-5_amd64.deb ...\r\n- Unpacking liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Selecting previously unselected package libwebp7:amd64.\r\n- Preparing to unpack .../34-libwebp7_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebp7:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libtiff6:amd64.\r\n- Preparing to unpack .../35-libtiff6_4.7.0-3+deb13u1_amd64.deb ...\r\n- Unpacking libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Selecting previously unselected package libwebpdemux2:amd64.\r\n- Preparing to unpack .../36-libwebpdemux2_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libwebpmux3:amd64.\r\n- Preparing to unpack .../37-libwebpmux3_1.5.0-0.1_amd64.deb ...\r\n- Unpacking libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Selecting previously unselected package libxml2:amd64.\r\n- Preparing to unpack .../38-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...\r\n- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Selecting previously unselected package imagemagick-7-common.\r\n- Preparing to unpack .../39-imagemagick-7-common_8%3a7.1.1.43+dfsg1-1+deb13u4_all.deb ...\r\n- Unpacking imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10:amd64.\r\n- Preparing to unpack .../40-libmagickcore-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libmagickwand-7.q16-10:amd64.\r\n- Preparing to unpack .../41-libmagickwand-7.q16-10_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package poppler-data.\r\n- Preparing to unpack .../42-poppler-data_0.4.12-1_all.deb ...\r\n- Unpacking poppler-data (0.4.12-1) ...\r\n- Selecting previously unselected package sensible-utils.\r\n- Preparing to unpack .../43-sensible-utils_0.0.25_all.deb ...\r\n- Unpacking sensible-utils (0.0.25) ...\r\n- Selecting previously unselected package fontconfig.\r\n- Preparing to unpack .../44-fontconfig_2.15.0-2.3_amd64.deb ...\r\n- Unpacking fontconfig (2.15.0-2.3) ...\r\n- Selecting previously unselected package fonts-droid-fallback.\r\n- Preparing to unpack .../45-fonts-droid-fallback_1%3a8.1.0r7-1~1.gbp36536b_all.deb ...\r\n- Unpacking fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Selecting previously unselected package fonts-noto-mono.\r\n- Preparing to unpack .../46-fonts-noto-mono_20201225-2_all.deb ...\r\n- Unpacking fonts-noto-mono (20201225-2) ...\r\n- Selecting previously unselected package libgs-common.\r\n- Preparing to unpack .../47-libgs-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libgs10-common.\r\n- Preparing to unpack .../48-libgs10-common_10.05.1~dfsg-1+deb13u1_all.deb ...\r\n- Unpacking libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package libavahi-common-data:amd64.\r\n- Preparing to unpack .../49-libavahi-common-data_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common-data:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-common3:amd64.\r\n- Preparing to unpack .../50-libavahi-common3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-common3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libavahi-client3:amd64.\r\n- Preparing to unpack .../51-libavahi-client3_0.8-16_amd64.deb ...\r\n- Unpacking libavahi-client3:amd64 (0.8-16) ...\r\n- Selecting previously unselected package libcups2t64:amd64.\r\n- Preparing to unpack .../52-libcups2t64_2.4.10-3+deb13u2_amd64.deb ...\r\n- Unpacking libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Selecting previously unselected package libidn12:amd64.\r\n- Preparing to unpack .../53-libidn12_1.43-1_amd64.deb ...\r\n- Unpacking libidn12:amd64 (1.43-1) ...\r\n- Selecting previously unselected package libijs-0.35:amd64.\r\n- Preparing to unpack .../54-libijs-0.35_0.35-15.2_amd64.deb ...\r\n- Unpacking libijs-0.35:amd64 (0.35-15.2) ...\r\n- Selecting previously unselected package libjbig2dec0:amd64.\r\n- Preparing to unpack .../55-libjbig2dec0_0.20-1+b3_amd64.deb ...\r\n- Unpacking libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Selecting previously unselected package libpaper2:amd64.\r\n- Preparing to unpack .../56-libpaper2_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package libice6:amd64.\r\n- Preparing to unpack .../57-libice6_2%3a1.1.1-1_amd64.deb ...\r\n- Unpacking libice6:amd64 (2:1.1.1-1) ...\r\n- Selecting previously unselected package libsm6:amd64.\r\n- Preparing to unpack .../58-libsm6_2%3a1.2.6-1_amd64.deb ...\r\n- Unpacking libsm6:amd64 (2:1.2.6-1) ...\r\n- Selecting previously unselected package libxt6t64:amd64.\r\n- Preparing to unpack .../59-libxt6t64_1%3a1.2.1-1.2+b2_amd64.deb ...\r\n- Unpacking libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Selecting previously unselected package libgs10:amd64.\r\n- Preparing to unpack .../60-libgs10_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package ghostscript.\r\n- Preparing to unpack .../61-ghostscript_10.05.1~dfsg-1+deb13u1_amd64.deb ...\r\n- Unpacking ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Selecting previously unselected package hicolor-icon-theme.\r\n- Preparing to unpack .../62-hicolor-icon-theme_0.18-2_all.deb ...\r\n- Unpacking hicolor-icon-theme (0.18-2) ...\r\n- Selecting previously unselected package imagemagick-7.q16.\r\n- Preparing to unpack .../63-imagemagick-7.q16_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package imagemagick.\r\n- Preparing to unpack .../64-imagemagick_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libaom3:amd64.\r\n- Preparing to unpack .../65-libaom3_3.12.1-1_amd64.deb ...\r\n- Unpacking libaom3:amd64 (3.12.1-1) ...\r\n- Selecting previously unselected package libpixman-1-0:amd64.\r\n- Preparing to unpack .../66-libpixman-1-0_0.44.0-3_amd64.deb ...\r\n- Unpacking libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Selecting previously unselected package libxcb-render0:amd64.\r\n- Preparing to unpack .../67-libxcb-render0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxcb-shm0:amd64.\r\n- Preparing to unpack .../68-libxcb-shm0_1.17.0-2+b1_amd64.deb ...\r\n- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Selecting previously unselected package libxrender1:amd64.\r\n- Preparing to unpack .../69-libxrender1_1%3a0.9.12-1_amd64.deb ...\r\n- Unpacking libxrender1:amd64 (1:0.9.12-1) ...\r\n- Selecting previously unselected package libcairo2:amd64.\r\n- Preparing to unpack .../70-libcairo2_1.18.4-1+b1_amd64.deb ...\r\n- Unpacking libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Selecting previously unselected package libdatrie1:amd64.\r\n- Preparing to unpack .../71-libdatrie1_0.2.13-3+b1_amd64.deb ...\r\n- Unpacking libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Selecting previously unselected package libdjvulibre-text.\r\n- Preparing to unpack .../72-libdjvulibre-text_3.5.28-2.2_all.deb ...\r\n- Unpacking libdjvulibre-text (3.5.28-2.2) ...\r\n- Selecting previously unselected package libdjvulibre21:amd64.\r\n- Preparing to unpack .../73-libdjvulibre21_3.5.28-2.2_amd64.deb ...\r\n- Unpacking libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Selecting previously unselected package libfribidi0:amd64.\r\n- Preparing to unpack .../74-libfribidi0_1.0.16-1_amd64.deb ...\r\n- Unpacking libfribidi0:amd64 (1.0.16-1) ...\r\n- Selecting previously unselected package libglib2.0-data.\r\n- Preparing to unpack .../75-libglib2.0-data_2.84.4-3~deb13u2_all.deb ...\r\n- Unpacking libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Selecting previously unselected package libgraphite2-3:amd64.\r\n- Preparing to unpack .../76-libgraphite2-3_1.3.14-2+b1_amd64.deb ...\r\n- Unpacking libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Selecting previously unselected package libharfbuzz0b:amd64.\r\n- Preparing to unpack .../77-libharfbuzz0b_10.2.0-1+b1_amd64.deb ...\r\n- Unpacking libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Selecting previously unselected package libheif-plugin-aomenc:amd64.\r\n- Preparing to unpack .../78-libheif-plugin-aomenc_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libnuma1:amd64.\r\n- Preparing to unpack .../79-libnuma1_2.0.19-1_amd64.deb ...\r\n- Unpacking libnuma1:amd64 (2.0.19-1) ...\r\n- Selecting previously unselected package libx265-215:amd64.\r\n- Preparing to unpack .../80-libx265-215_4.1-2_amd64.deb ...\r\n- Unpacking libx265-215:amd64 (4.1-2) ...\r\n- Selecting previously unselected package libheif-plugin-x265:amd64.\r\n- Preparing to unpack .../81-libheif-plugin-x265_1.19.8-1_amd64.deb ...\r\n- Unpacking libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Selecting previously unselected package libimath-3-1-29t64:amd64.\r\n- Preparing to unpack .../82-libimath-3-1-29t64_3.1.12-1+b3_amd64.deb ...\r\n- Unpacking libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Selecting previously unselected package libjxr0t64:amd64.\r\n- Preparing to unpack .../83-libjxr0t64_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libjxr-tools.\r\n- Preparing to unpack .../84-libjxr-tools_1.2~git20170615.f752187-5.3_amd64.deb ...\r\n- Unpacking libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Selecting previously unselected package libopenexr-3-1-30:amd64.\r\n- Preparing to unpack .../85-libopenexr-3-1-30_3.1.13-2_amd64.deb ...\r\n- Unpacking libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Selecting previously unselected package libthai-data.\r\n- Preparing to unpack .../86-libthai-data_0.1.29-2_all.deb ...\r\n- Unpacking libthai-data (0.1.29-2) ...\r\n- Selecting previously unselected package libthai0:amd64.\r\n- Preparing to unpack .../87-libthai0_0.1.29-2+b1_amd64.deb ...\r\n- Unpacking libthai0:amd64 (0.1.29-2+b1) ...\r\n- Selecting previously unselected package libpango-1.0-0:amd64.\r\n- Preparing to unpack .../88-libpango-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangoft2-1.0-0:amd64.\r\n- Preparing to unpack .../89-libpangoft2-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libpangocairo-1.0-0:amd64.\r\n- Preparing to unpack .../90-libpangocairo-1.0-0_1.56.3-1_amd64.deb ...\r\n- Unpacking libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Selecting previously unselected package libwmflite-0.2-7:amd64.\r\n- Preparing to unpack .../91-libwmflite-0.2-7_0.2.13-1.1+b3_amd64.deb ...\r\n- Unpacking libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Selecting previously unselected package libmagickcore-7.q16-10-extra:amd64.\r\n- Preparing to unpack .../92-libmagickcore-7.q16-10-extra_8%3a7.1.1.43+dfsg1-1+deb13u4_amd64.deb ...\r\n- Unpacking libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Selecting previously unselected package libnetpbm11t64:amd64.\r\n- Preparing to unpack .../93-libnetpbm11t64_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Selecting previously unselected package libpaper-utils.\r\n- Preparing to unpack .../94-libpaper-utils_2.2.5-0.3+b2_amd64.deb ...\r\n- Unpacking libpaper-utils (2.2.5-0.3+b2) ...\r\n- Selecting previously unselected package netpbm.\r\n- Preparing to unpack .../95-netpbm_2%3a11.10.02-1_amd64.deb ...\r\n- Unpacking netpbm (2:11.10.02-1) ...\r\n- Selecting previously unselected package shared-mime-info.\r\n- Preparing to unpack .../96-shared-mime-info_2.4-5+b2_amd64.deb ...\r\n- Unpacking shared-mime-info (2.4-5+b2) ...\r\n- Selecting previously unselected package xdg-user-dirs.\r\n- Preparing to unpack .../97-xdg-user-dirs_0.18-2_amd64.deb ...\r\n- Unpacking xdg-user-dirs (0.18-2) ...\r\n- Setting up libgraphite2-3:amd64 (1.3.14-2+b1) ...\r\n- Setting up liblcms2-2:amd64 (2.16-2) ...\r\n- Setting up libpixman-1-0:amd64 (0.44.0-3) ...\r\n- Setting up libsharpyuv0:amd64 (1.5.0-0.1) ...\r\n- Setting up libaom3:amd64 (3.12.1-1) ...\r\n- Setting up liblerc4:amd64 (4.0.0+ds-5) ...\r\n- Setting up fonts-noto-mono (20201225-2) ...\r\n- Setting up hicolor-icon-theme (0.18-2) ...\r\n- Setting up libwmflite-0.2-7:amd64 (0.2.13-1.1+b3) ...\r\n- Setting up libxrender1:amd64 (1:0.9.12-1) ...\r\n- Setting up libdatrie1:amd64 (0.2.13-3+b1) ...\r\n- Setting up xdg-user-dirs (0.18-2) ...\r\n- Setting up libxcb-render0:amd64 (1.17.0-2+b1) ...\r\n- Setting up imagemagick-7-common (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libijs-0.35:amd64 (0.35-15.2) ...\r\n- Setting up libgs-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up x11-common (1:7.7+24+deb13u1) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libdeflate0:amd64 (1.23-2) ...\r\n- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...\r\n- Setting up libjbig0:amd64 (2.1-6.1+b2) ...\r\n- Setting up libnetpbm11t64:amd64 (2:11.10.02-1) ...\r\n- Setting up poppler-data (0.4.12-1) ...\r\n- Setting up libfontenc1:amd64 (1:1.1.8-1+b2) ...\r\n- Setting up libglib2.0-0t64:amd64 (2.84.4-3~deb13u2) ...\r\n- No schema files found: doing nothing.\r\n- Setting up libglib2.0-data (2.84.4-3~deb13u2) ...\r\n- Setting up libjpeg62-turbo:amd64 (1:2.1.5-4) ...\r\n- Setting up libjxr0t64:amd64 (1.2~git20170615.f752187-5.3) ...\r\n- Setting up libjbig2dec0:amd64 (0.20-1+b3) ...\r\n- Setting up libavahi-common-data:amd64 (0.8-16) ...\r\n- Setting up libdbus-1-3:amd64 (1.16.2-2) ...\r\n- Setting up xfonts-encodings (1:1.0.4-2.2) ...\r\n- Setting up libfribidi0:amd64 (1.0.16-1) ...\r\n- Setting up fonts-dejavu-mono (2.37-8) ...\r\n- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u1) ...\r\n- Setting up libimath-3-1-29t64:amd64 (3.1.12-1+b3) ...\r\n- Setting up libidn12:amd64 (1.43-1) ...\r\n- Setting up fonts-dejavu-core (2.37-8) ...\r\n- Setting up libltdl7:amd64 (2.5.4-4) ...\r\n- Setting up libfftw3-double3:amd64 (3.3.10-2+b1) ...\r\n- Setting up libraw23t64:amd64 (0.21.4-2) ...\r\n- Setting up libwebp7:amd64 (1.5.0-0.1) ...\r\n- Setting up libnuma1:amd64 (2.0.19-1) ...\r\n- Setting up libdav1d7:amd64 (1.5.1-1) ...\r\n- Setting up liblqr-1-0:amd64 (0.4.2-2.1+b2) ...\r\n- Setting up sensible-utils (0.0.25) ...\r\n- Setting up libtiff6:amd64 (4.7.0-3+deb13u1) ...\r\n- Setting up dbus-session-bus-common (1.16.2-2) ...\r\n- Setting up libopenjp2-7:amd64 (2.5.3-2.1~deb13u1) ...\r\n- Setting up libthai-data (0.1.29-2) ...\r\n- Setting up fonts-droid-fallback (1:8.1.0r7-1~1.gbp36536b) ...\r\n- Setting up libpaper2:amd64 (2.2.5-0.3+b2) ...\r\n- Setting up libdjvulibre-text (3.5.28-2.2) ...\r\n- Setting up dbus-system-bus-common (1.16.2-2) ...\r\n- Setting up libde265-0:amd64 (1.0.15-1+b3) ...\r\n- Setting up libx265-215:amd64 (4.1-2) ...\r\n- Setting up libwebpmux3:amd64 (1.5.0-0.1) ...\r\n- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...\r\n- Setting up dbus-bin (1.16.2-2) ...\r\n- Setting up libice6:amd64 (2:1.1.1-1) ...\r\n- Setting up libjxr-tools (1.2~git20170615.f752187-5.3) ...\r\n- Setting up fontconfig-config (2.15.0-2.3) ...\r\n- Setting up libwebpdemux2:amd64 (1.5.0-0.1) ...\r\n- Setting up libdjvulibre21:amd64 (3.5.28-2.2) ...\r\n- Setting up libavahi-common3:amd64 (0.8-16) ...\r\n- Setting up dbus-daemon (1.16.2-2) ...\r\n- Setting up libpaper-utils (2.2.5-0.3+b2) ...\r\n- Setting up libthai0:amd64 (0.1.29-2+b1) ...\r\n- Setting up libfreetype6:amd64 (2.13.3+dfsg-1) ...\r\n- Setting up dbus (1.16.2-2) ...\r\n- invoke-rc.d: could not determine current runlevel\r\n- invoke-rc.d: policy-rc.d denied execution of start.\r\n- Setting up libopenexr-3-1-30:amd64 (3.1.13-2) ...\r\n- Setting up shared-mime-info (2.4-5+b2) ...\r\n- Setting up netpbm (2:11.10.02-1) ...\r\n- Setting up libharfbuzz0b:amd64 (10.2.0-1+b1) ...\r\n- Setting up libfontconfig1:amd64 (2.15.0-2.3) ...\r\n- Setting up libsm6:amd64 (2:1.2.6-1) ...\r\n- Setting up libavahi-client3:amd64 (0.8-16) ...\r\n- Setting up fontconfig (2.15.0-2.3) ...\r\n- Regenerating fonts cache... \n- done.\r\n- Setting up libpango-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up xfonts-utils (1:7.7+7) ...\r\n- Setting up libcairo2:amd64 (1.18.4-1+b1) ...\r\n- Setting up libxt6t64:amd64 (1:1.2.1-1.2+b2) ...\r\n- Setting up libpangoft2-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up libcups2t64:amd64 (2.4.10-3+deb13u2) ...\r\n- Setting up libpangocairo-1.0-0:amd64 (1.56.3-1) ...\r\n- Setting up fonts-urw-base35 (20200910-8) ...\r\n- Setting up libgs10-common (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libgs10:amd64 (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up ghostscript (10.05.1~dfsg-1+deb13u1) ...\r\n- Setting up libheif-plugin-dav1d:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-libde265:amd64 (1.19.8-1) ...\r\n- Setting up libheif1:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libmagickwand-7.q16-10:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up libheif-plugin-x265:amd64 (1.19.8-1) ...\r\n- Setting up libheif-plugin-aomenc:amd64 (1.19.8-1) ...\r\n- Setting up libmagickcore-7.q16-10-extra:amd64 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Setting up imagemagick-7.q16 (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare (compare) in auto mode\r\n- update-alternatives: using /usr/bin/compare-im7.q16 to provide /usr/bin/compare-im7 (compare-im7) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate (animate) in auto mode\r\n- update-alternatives: using /usr/bin/animate-im7.q16 to provide /usr/bin/animate-im7 (animate-im7) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert (convert) in auto mode\r\n- update-alternatives: using /usr/bin/convert-im7.q16 to provide /usr/bin/convert-im7 (convert-im7) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite (composite) in auto mode\r\n- update-alternatives: using /usr/bin/composite-im7.q16 to provide /usr/bin/composite-im7 (composite-im7) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure (conjure) in auto mode\r\n- update-alternatives: using /usr/bin/conjure-im7.q16 to provide /usr/bin/conjure-im7 (conjure-im7) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import (import) in auto mode\r\n- update-alternatives: using /usr/bin/import-im7.q16 to provide /usr/bin/import-im7 (import-im7) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify (identify) in auto mode\r\n- update-alternatives: using /usr/bin/identify-im7.q16 to provide /usr/bin/identify-im7 (identify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream (stream) in auto mode\r\n- update-alternatives: using /usr/bin/stream-im7.q16 to provide /usr/bin/stream-im7 (stream-im7) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display (display) in auto mode\r\n- update-alternatives: using /usr/bin/display-im7.q16 to provide /usr/bin/display-im7 (display-im7) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage (montage) in auto mode\r\n- update-alternatives: using /usr/bin/montage-im7.q16 to provide /usr/bin/montage-im7 (montage-im7) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify (mogrify) in auto mode\r\n- update-alternatives: using /usr/bin/mogrify-im7.q16 to provide /usr/bin/mogrify-im7 (mogrify-im7) in auto mode\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick (magick) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-im7.q16 to provide /usr/bin/magick-im7 (magick-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-im7.1.gz because associated file /usr/share/man/man1/magick-im7.q16.1.gz (of link group magick-im7) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script (magick-script) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script) doesn't exist\r\n- update-alternatives: using /usr/bin/magick-script-im7.q16 to provide /usr/bin/magick-script-im7 (magick-script-im7) in auto mode\r\n- update-alternatives: warning: skip creation of /usr/share/man/man1/magick-script-im7.1.gz because associated file /usr/share/man/man1/magick-script-im7.q16.1.gz (of link group magick-script-im7) doesn't exist\r\n- Setting up imagemagick (8:7.1.1.43+dfsg1-1+deb13u4) ...\r\n- Processing triggers for libc-bin (2.41-12+deb13u1) ...\r\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n[srcsetter-cmd.dev: git]\n-> retrieved srcsetter-cmd.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter-cmd: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n[srcsetter-cmd: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter-cmd\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter-cmd.dev)\n-> compiled srcsetter-cmd.dev\n-> installed srcsetter-cmd.dev\n", 3931 + "solution": "digraph opam {\n \"astring.0.8.5\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"eio_linux.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"uring.2.7.0\"}\n \"eio_main.1.3\" -> {\"dune.3.21.0\" \"eio_linux.1.3\" \"eio_posix.1.3\"}\n \"eio_posix.1.3\" -> {\"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"iomux.0.4\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"fpath.0.7.3\" -> {\"astring.0.8.5\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"iomux.0.4\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"logs.0.10.0\" -> {\"base-threads.base\" \"cmdliner.2.1.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"progress.0.5.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"logs.0.10.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"terminal.0.5.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"srcsetter-cmd.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"eio_main.1.3\" \"fpath.0.7.3\" \"ocaml.5.3.0\" \"progress.0.5.0\" \"srcsetter.dev\"}\n \"stdlib-shims.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"terminal.0.5.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"stdlib-shims.0.3.0\" \"uucp.17.0.0\" \"uutf.1.0.4\"}\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uring.2.7.0\" -> {\"cstruct.6.2.0\" \"dune.3.21.0\" \"dune-configurator.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"optint.0.3.0\"}\n \"uucp.17.0.0\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"uutf.1.0.4\" -> {\"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3932 + }, 3933 + { 3934 + "status": "success", 3935 + "name": "srcsetter.dev", 3936 + "sha": "", 3937 + "layer": "dc7188b9522138b60d495cacd602018b", 3938 + "log": "Processing: [default: loading data]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n[srcsetter.dev: git]\n-> retrieved srcsetter.dev (git+https://tangled.org/@anil.recoil.org/srcsetter.git#main)\n[srcsetter: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n[srcsetter: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"srcsetter\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/srcsetter.dev)\n-> compiled srcsetter.dev\n-> installed srcsetter.dev\n", 3939 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"srcsetter.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n}\n" 3940 + }, 3941 + { 3942 + "status": "no_solution", 3943 + "name": "standard-site.dev", 3944 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3945 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-atproto.dev atp-lexicon-standard-site.dev atp-xrpc.dev\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 topkg.1.1.1 uri.4.4.0\n uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev zarith.1.14\n ocaml&standard-site ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- standard-site -> standard-site.dev\n User requested = dev" 3946 + }, 3947 + { 3948 + "status": "no_solution", 3949 + "name": "tangled.dev", 3950 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3951 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-lexicon-tangled.dev atp-xrpc.dev base-threads.base\n base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1\n bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1 cbort.dev\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 multibase.0.1.0\n ocaml-base-compiler.5.4.0 ocaml-config.3 ocaml-options-vanilla.1\n ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8\n ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0 publicsuffix.dev\n requests.dev rresult.0.7.0 seq.base stringext.1.6.0\n thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3 tomlt.dev topkg.1.1.1\n uri.4.4.0 uring.2.7.0 uutf.1.0.4 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&tangled ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- tangled -> tangled.dev\n User requested = dev" 3952 + }, 3953 + { 3954 + "status": "success", 3955 + "name": "tomlt.dev", 3956 + "sha": "", 3957 + "layer": "4f6f12f2cb32c18576bf7b7b2dfce314", 3958 + "log": "Processing: [default: loading data]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n[tomlt.dev: git]\n-> retrieved tomlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-tomlt.git#main)\n[tomlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n[tomlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"tomlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/tomlt.dev)\n-> compiled tomlt.dev\n-> installed tomlt.dev\n", 3959 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"ptime.1.2.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"tomlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"ptime.1.2.0\" \"uutf.1.0.4\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"uutf.1.0.4\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n}\n" 3960 + }, 3961 + { 3962 + "status": "no_solution", 3963 + "name": "typesense.dev", 3964 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3965 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&typesense ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- jsont-bytesrw -> (problem)\n No known implementations at all\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- typesense -> typesense.dev\n User requested = dev" 3966 + }, 3967 + { 3968 + "status": "success", 3969 + "name": "xdge.dev", 3970 + "sha": "", 3971 + "layer": "8a2c3364a5a5409f28575f96c0b921b5", 3972 + "log": "Processing: [default: loading data]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n[xdge.dev: git]\n-> retrieved xdge.dev (git+https://tangled.org/anil.recoil.org/xdge.git#main)\n[xdge: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n[xdge: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"xdge\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/xdge.dev)\n-> compiled xdge.dev\n-> installed xdge.dev\n", 3973 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"xdg.3.21.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"xdge.dev\" -> {\"cmdliner.2.1.0\" \"dune.3.21.0\" \"eio.1.3\" \"fmt.0.11.0\" \"ocaml.5.3.0\" \"xdg.3.21.0\"}\n}\n" 3974 + }, 3975 + { 3976 + "status": "no_solution", 3977 + "name": "xrpc-auth.dev", 3978 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 3979 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 atp.dev\n atp-xrpc.dev base-threads.base base-unix.base base64.3.5.2\n bigstringaf.0.10.0 bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev\n ca-certs.1.0.1 cbort.dev checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5\n conf-gmp-powm-sec.4 conf-pkg-config.4 conpool.dev cookeio.dev\n csexp.1.5.2 cstruct.6.2.0 decompress.1.5.3 digestif.1.3.0\n domain-local-await.1.0.1 domain-name.0.5.0 dune.3.21.0\n dune-configurator.3.21.0 duration.0.2.1 eio.1.3 eio_linux.1.3\n eio_main.1.3 eio_posix.1.3 eqaf.0.10 fmt.0.11.0 fpath.0.7.3\n gmap.0.3.0 hmap.0.8.1 iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 jsonwt.dev\n kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0 macaddr.5.6.1\n magic-mime.1.3.1 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2\n mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0\n multibase.0.1.0 ocaml-base-compiler.5.4.0 ocaml-config.3\n ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1\n ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1 ptime.1.2.0\n publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&xrpc-auth ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- xrpc-auth -> xrpc-auth.dev\n User requested = dev" 3980 + }, 3981 + { 3982 + "status": "success", 3983 + "name": "yamlrw-eio.dev", 3984 + "sha": "", 3985 + "layer": "3c07ee123b4d2850447ef24dae88a49b", 3986 + "log": "Processing: [default: loading data]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n[yamlrw-eio.dev: git]\n-> retrieved yamlrw-eio.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-eio: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n[yamlrw-eio: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-eio\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-eio.dev)\n-> compiled yamlrw-eio.dev\n-> installed yamlrw-eio.dev\n", 3987 + "solution": "digraph opam {\n \"bigstringaf.0.10.0\" -> {\"dune.3.21.0\" \"dune-configurator.3.21.0\" \"ocaml.5.3.0\"}\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"bytesrw-eio.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"csexp.1.5.2\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"cstruct.6.2.0\" -> {\"dune.3.21.0\" \"fmt.0.11.0\" \"ocaml.5.3.0\"}\n \"domain-local-await.1.0.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"thread-table.1.0.0\"}\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"dune-configurator.3.21.0\" -> {\"base-unix.base\" \"csexp.1.5.2\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"eio.1.3\" -> {\"bigstringaf.0.10.0\" \"cstruct.6.2.0\" \"domain-local-await.1.0.1\" \"dune.3.21.0\" \"fmt.0.11.0\" \"hmap.0.8.1\" \"lwt-dllist.1.1.0\" \"mtime.2.1.0\" \"ocaml.5.3.0\" \"optint.0.3.0\" \"psq.0.2.1\"}\n \"fmt.0.11.0\" -> {\"base-unix.base\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"hmap.0.8.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"lwt-dllist.1.1.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"mtime.2.1.0\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"optint.0.3.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"psq.0.2.1\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\" \"seq.base\"}\n \"seq.base\" -> \"ocaml.5.3.0\";\n \"thread-table.1.0.0\" -> {\"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-eio.dev\" -> {\"bytesrw-eio.dev\" \"dune.3.21.0\" \"eio.1.3\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3988 + }, 3989 + { 3990 + "status": "success", 3991 + "name": "yamlrw-unix.dev", 3992 + "sha": "", 3993 + "layer": "8db054b070b14cd059644b727209cbfb", 3994 + "log": "Processing: [default: loading data]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n[yamlrw-unix.dev: git]\n-> retrieved yamlrw-unix.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw-unix: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n[yamlrw-unix: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw-unix\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw-unix.dev)\n-> compiled yamlrw-unix.dev\n-> installed yamlrw-unix.dev\n", 3995 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlrw-unix.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 3996 + }, 3997 + { 3998 + "status": "success", 3999 + "name": "yamlrw.dev", 4000 + "sha": "", 4001 + "layer": "a2956555be7bd691d14244a9f8043429", 4002 + "log": "Processing: [default: loading data]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n[yamlrw.dev: git]\n-> retrieved yamlrw.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlrw.git#main)\n[yamlrw: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n[yamlrw: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlrw\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlrw.dev)\n-> compiled yamlrw.dev\n-> installed yamlrw.dev\n", 4003 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n}\n" 4004 + }, 4005 + { 4006 + "status": "success", 4007 + "name": "yamlt.dev", 4008 + "sha": "", 4009 + "layer": "a90259cce0e4c1fa1a949df0ae1eb9df", 4010 + "log": "Processing: [default: loading data]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n[yamlt.dev: git]\n-> retrieved yamlt.dev (git+https://tangled.org/@anil.recoil.org/ocaml-yamlt.git#main)\n[yamlt: dune subst]\n+ /home/opam/.opam/default/bin/dune \"subst\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n[yamlt: dune build]\n+ /home/opam/.opam/default/bin/dune \"build\" \"-p\" \"yamlt\" \"-j\" \"39\" \"@install\" (CWD=/home/opam/.opam/default/.opam-switch/build/yamlt.dev)\n-> compiled yamlt.dev\n-> installed yamlt.dev\n", 4011 + "solution": "digraph opam {\n \"bytesrw.0.3.0\" -> {\"cmdliner.2.1.0\" \"conf-pkg-config.4\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"cmdliner.2.1.0\" -> \"ocaml.5.3.0\";\n \"dune.3.21.0\" -> {\"base-threads.base\" \"base-unix.base\" \"ocaml.5.3.0\"}\n \"jsont.0.2.0\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\" \"topkg.1.1.1\"}\n \"ocaml.5.3.0\" -> {\"ocaml-base-compiler.5.3.0\" \"ocaml-config.3\"}\n \"ocaml-base-compiler.5.3.0\" -> \"ocaml-compiler.5.3.0\";\n \"ocaml-config.3\" -> \"ocaml-base-compiler.5.3.0\";\n \"ocamlbuild.0.16.1\" -> \"ocaml.5.3.0\";\n \"ocamlfind.1.9.8\" -> \"ocaml.5.3.0\";\n \"topkg.1.1.1\" -> {\"ocaml.5.3.0\" \"ocamlbuild.0.16.1\" \"ocamlfind.1.9.8\"}\n \"yamlrw.dev\" -> {\"bytesrw.0.3.0\" \"cmdliner.2.1.0\" \"dune.3.21.0\" \"ocaml.5.3.0\"}\n \"yamlt.dev\" -> {\"bytesrw.0.3.0\" \"dune.3.21.0\" \"jsont.0.2.0\" \"ocaml.5.3.0\" \"yamlrw.dev\"}\n}\n" 4012 + }, 4013 + { 4014 + "status": "no_solution", 4015 + "name": "zotero-translation.dev", 4016 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 4017 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 iomux.0.4\n ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0 lwt-dllist.1.1.0\n macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zotero-translation ocaml-variants\n ocaml-base-compiler ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zotero-translation -> zotero-translation.dev\n User requested = dev" 4018 + }, 4019 + { 4020 + "status": "no_solution", 4021 + "name": "zulip.dev", 4022 + "sha": "301ed6378f379d5ce386022c3df1cc32c3fd250431c3ce4c9b0cb8d8a4d168be305761eb20433c38", 4023 + "solution": "Can't find all required versions.\nSelected: angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5\n base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0\n bos.0.2.1 bytesrw.0.3.0 bytesrw-eio.dev ca-certs.1.0.1\n checkseum.0.5.2 cmdliner.2.1.0 conf-gmp.5 conf-gmp-powm-sec.4\n conf-pkg-config.4 conpool.dev cookeio.dev csexp.1.5.2 cstruct.6.2.0\n decompress.1.5.3 digestif.1.3.0 domain-local-await.1.0.1\n domain-name.0.5.0 dune.3.21.0 dune-configurator.3.21.0\n duration.0.2.1 eio.1.3 eio_linux.1.3 eio_main.1.3 eio_posix.1.3\n eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gmap.0.3.0 hmap.0.8.1 init.dev\n iomux.0.4 ipaddr.5.6.1 jsont.0.2.0 kdf.1.0.0 logs.0.10.0\n lwt-dllist.1.1.0 macaddr.5.6.1 magic-mime.1.3.1 mirage-crypto.2.0.2\n mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2\n mirage-crypto-rng.2.0.2 mtime.2.1.0 ocaml-base-compiler.5.4.0\n ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0\n ocamlbuild.0.16.1 ocamlfind.1.9.8 ohex.0.2.0 optint.0.3.0 psq.0.2.1\n ptime.1.2.0 publicsuffix.dev requests.dev rresult.0.7.0 seq.base\n stringext.1.6.0 thread-table.1.0.0 tls.2.0.3 tls-eio.2.0.3\n topkg.1.1.1 uri.4.4.0 uring.2.7.0 x509.1.0.6 xdg.3.21.0 xdge.dev\n zarith.1.14 ocaml&zulip ocaml-variants ocaml-base-compiler\n ocaml-base-compiler\n- ocaml -> ocaml.5.3.0\n User requested = 5.3.0\n- ocaml-compiler -> (problem)\n ocaml-base-compiler 5.4.0 requires = 5.4.0\n Rejected candidates:\n ocaml-compiler.5.5: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0: Requires ocaml = 5.4.0\n ocaml-compiler.5.4.0~rc1: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta2: Incompatible with restriction: = 5.4.0\n ocaml-compiler.5.4.0~beta1: Incompatible with restriction: = 5.4.0\n ...\n- ocaml-variants -> (problem)\n Rejected candidates:\n ocaml-variants.5.5.0+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.1+trunk: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~rc1+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ocaml-variants.5.4.0~beta2+options: In same conflict class (ocaml-core-compiler) as ocaml-base-compiler\n ...\n- punycode -> (problem)\n Rejected candidates:\n punycode.dev: Requires ocaml >= 5.4.0\n- zulip -> zulip.dev\n User requested = dev" 4024 + } 4025 + ] 4026 + } 4027 + ], 4028 + "mode": "history", 4029 + "overlay_repos": [] 4030 + }
+7 -4
lib/rpc_client.ml
··· 22 22 Params.os_distribution_set params os_distribution; 23 23 Params.os_version_set params os_version; 24 24 let response = Capnp_rpc.Capability.call_for_value_exn service method_id request in 25 - Results.manifest_json_get response 25 + let result = Results.manifest_json_get response in 26 + Capnp_rpc.Capability.dec_ref service; 27 + result 26 28 27 29 (** Run merge test on a remote server *) 28 - let merge_test_remote ~sw ~net ~cap_file ~repo_urls ~dry_run ~fork_jobs 30 + let merge_test_remote ~sw ~net ~cap_file ~repo_urls ~fork_jobs 29 31 ~os ~os_family ~os_distribution ~os_version = 30 32 let service = connect ~sw ~net cap_file in 31 33 let open Api.Client.BraidService.MergeTest in 32 34 let request, params = Capnp_rpc.Capability.Request.create Params.init_pointer in 33 35 let _ = Params.repo_urls_set_list params repo_urls in 34 - Params.dry_run_set params dry_run; 35 36 Params.fork_jobs_set params (Stdint.Uint32.of_int fork_jobs); 36 37 Params.os_set params os; 37 38 Params.os_family_set params os_family; 38 39 Params.os_distribution_set params os_distribution; 39 40 Params.os_version_set params os_version; 40 41 let response = Capnp_rpc.Capability.call_for_value_exn service method_id request in 41 - Results.manifest_json_get response 42 + let result = Results.manifest_json_get response in 43 + Capnp_rpc.Capability.dec_ref service; 44 + result
-1
lib/rpc_schema.capnp
··· 17 17 # Merge test on stacked repositories 18 18 mergeTest @1 ( 19 19 repoUrls :List(Text), 20 - dryRun :Bool, 21 20 forkJobs :UInt32, 22 21 os :Text, 23 22 osFamily :Text,
+21 -2
lib/rpc_service.ml
··· 26 26 let _ = Unix.close_process_in ic in 27 27 temp_dir 28 28 29 + (** Get current working directory *) 30 + let get_cwd () = 31 + Unix.getcwd () 32 + 33 + (** Restore working directory *) 34 + let restore_cwd cwd = 35 + try Unix.chdir cwd with _ -> () 36 + 29 37 (** Create the local BraidService implementation *) 30 38 let local ~opam_repo_path ~cache_dir = 31 39 let module Service = Api.Service.BraidService in ··· 43 51 let os_distribution = Params.os_distribution_get params in 44 52 let os_version = Params.os_version_get params in 45 53 54 + (* Save current working directory - Runner.run changes it *) 55 + let saved_cwd = get_cwd () in 56 + 46 57 (* Create unique temp directory for each request *) 47 58 let temp_dir = make_temp_dir () in 48 59 ··· 61 72 | Error (`Msg msg) -> Error msg 62 73 in 63 74 75 + (* Restore working directory before cleanup *) 76 + restore_cwd saved_cwd; 77 + 64 78 (* Clean up temp directory *) 65 79 let _ = Unix.system (Printf.sprintf "rm -rf %s" temp_dir) in 66 80 ··· 74 88 let open Service.MergeTest in 75 89 release_param_caps (); 76 90 let repo_urls = Params.repo_urls_get_list params in 77 - let dry_run = Params.dry_run_get params in 78 91 let fork_jobs = Params.fork_jobs_get params |> Stdint.Uint32.to_int in 79 92 let os = Params.os_get params in 80 93 let os_family = Params.os_family_get params in 81 94 let os_distribution = Params.os_distribution_get params in 82 95 let os_version = Params.os_version_get params in 96 + 97 + (* Save current working directory *) 98 + let saved_cwd = get_cwd () in 83 99 84 100 (* Create unique temp directory for each request *) 85 101 let temp_dir = make_temp_dir () in ··· 100 116 let output_dir = Filename.concat temp_dir "results" in 101 117 (try Unix.mkdir output_dir 0o755 with Unix.Unix_error (Unix.EEXIST, _, _) -> ()); 102 118 match Runner.merge_test ~overlay_repos ~opam_repo_path ~cache_dir ~output_dir 103 - ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~dry_run with 119 + ~os ~os_family ~os_distribution ~os_version ~fork_jobs with 104 120 | Ok manifest -> 105 121 let json = Json.manifest_to_json manifest in 106 122 Ok (Yojson.Basic.to_string json) 107 123 | Error (`Msg msg) -> Error msg 108 124 in 125 + 126 + (* Restore working directory before cleanup *) 127 + restore_cwd saved_cwd; 109 128 110 129 (* Clean up temp directory *) 111 130 let _ = Unix.system (Printf.sprintf "rm -rf %s" temp_dir) in
+95 -73
lib/runner.ml
··· 55 55 let args = ["git"; "checkout"; "-q"; commit] in 56 56 run_cmd_quiet args 57 57 58 - (** Run day10 health-check with --dry-run and --json *) 58 + (** Parse results from a results directory *) 59 + let parse_results results_dir = 60 + let* entries = Bos.OS.Dir.contents (Fpath.v results_dir) in 61 + let results = List.filter_map (fun path -> 62 + if Fpath.has_ext "json" path then 63 + match Bos.OS.File.read path with 64 + | Ok content -> 65 + (try 66 + let json = Yojson.Basic.from_string content in 67 + Some (Json.parse_day10_result json) 68 + with _ -> None) 69 + | Error _ -> None 70 + else None 71 + ) entries in 72 + Ok results 73 + 74 + (** Run day10 health-check with two-stage approach (solve then build) *) 59 75 let health_check ~repo_path ~opam_repo_path ~cache_dir ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~output_dir ~packages = 60 76 (* Create packages JSON file *) 61 77 let packages_file = Filename.concat output_dir "packages.json" in ··· 67 83 let results_dir = Filename.concat output_dir "results" in 68 84 let* _ = Bos.OS.Dir.create (Fpath.v results_dir) in 69 85 70 - let args = [ 86 + (* Stage 1: dry-run with high parallelism to solve dependencies *) 87 + let args_stage1 = [ 71 88 "day10"; "health-check"; 72 89 "--opam-repository"; repo_path; 73 90 "--opam-repository"; opam_repo_path; ··· 81 98 "--json"; results_dir; 82 99 "@" ^ packages_file; 83 100 ] in 84 - let* _ = run_cmd args in 101 + let* _ = run_cmd args_stage1 in 102 + 103 + (* Parse stage 1 results *) 104 + let* results_stage1 = parse_results results_dir in 105 + 106 + (* Stage 2: find packages with status "solution" and actually build them *) 107 + let solution_packages = results_stage1 108 + |> List.filter (fun r -> r.status = Solution) 109 + |> List.map (fun r -> r.name) 110 + in 111 + 112 + if solution_packages = [] then 113 + (* No packages need building *) 114 + Ok results_stage1 115 + else begin 116 + Logs.info (fun m -> m "Stage 2: building %d packages" (List.length solution_packages)); 117 + 118 + (* Create packages file for stage 2 *) 119 + let packages_file2 = Filename.concat output_dir "packages_stage2.json" in 120 + let packages_json2 = Printf.sprintf {|{"packages":[%s]}|} 121 + (String.concat "," (List.map (Printf.sprintf {|"%s"|}) solution_packages)) 122 + in 123 + let* () = Bos.OS.File.write (Fpath.v packages_file2) packages_json2 in 85 124 86 - (* Parse result files *) 87 - let* entries = Bos.OS.Dir.contents (Fpath.v results_dir) in 88 - let results = List.filter_map (fun path -> 89 - if Fpath.has_ext "json" path then 90 - match Bos.OS.File.read path with 91 - | Ok content -> 92 - (try 93 - let json = Yojson.Basic.from_string content in 94 - Some (Json.parse_day10_result json) 95 - with _ -> None) 96 - | Error _ -> None 97 - else None 98 - ) entries in 99 - Ok results 125 + (* Stage 2: no --dry-run, no --fork (sequential builds) *) 126 + let args_stage2 = [ 127 + "day10"; "health-check"; 128 + "--opam-repository"; repo_path; 129 + "--opam-repository"; opam_repo_path; 130 + "--cache-dir"; cache_dir; 131 + "--os"; os; 132 + "--os-family"; os_family; 133 + "--os-distribution"; os_distribution; 134 + "--os-version"; os_version; 135 + "--json"; results_dir; 136 + "@" ^ packages_file2; 137 + ] in 138 + let* _ = run_cmd args_stage2 in 139 + 140 + (* Parse final results (stage 2 overwrites stage 1 results for built packages) *) 141 + parse_results results_dir 142 + end 100 143 101 144 (** Process a single commit *) 102 145 let process_commit ~repo_path ~opam_repo_path ~cache_dir ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~temp_dir commit = ··· 215 258 in 216 259 Ok packages 217 260 218 - (** Parse results from a directory of JSON files *) 219 - let parse_results_dir results_dir = 220 - let* entries = Bos.OS.Dir.contents (Fpath.v results_dir) in 221 - let results = List.filter_map (fun path -> 222 - if Fpath.has_ext "json" path then 223 - match Bos.OS.File.read path with 224 - | Ok content -> 225 - (try 226 - let json = Yojson.Basic.from_string content in 227 - Some (Json.parse_day10_result json) 228 - with _ -> None) 229 - | Error _ -> None 230 - else None 231 - ) entries in 232 - Ok results 233 - 234 261 (** Run day10 health-check with multiple overlay repos (two-stage: solve then build) *) 235 - let health_check_multi ~overlay_repos ~opam_repo_path ~cache_dir ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~dry_run ~output_dir ~packages = 262 + let health_check_multi ~overlay_repos ~opam_repo_path ~cache_dir ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~output_dir ~packages = 236 263 (* Create packages JSON file *) 237 264 let packages_file = Filename.concat output_dir "packages.json" in 238 265 let packages_json = Printf.sprintf {|{"packages":[%s]}|} ··· 266 293 let* _ = run_cmd args_stage1 in 267 294 268 295 (* Parse stage 1 results *) 269 - let* results_stage1 = parse_results_dir results_dir in 296 + let* results_stage1 = parse_results results_dir in 270 297 271 - if dry_run then 272 - (* If --dry-run, we're done after stage 1 *) 298 + (* Stage 2: find packages with status "solution" and actually build them *) 299 + let solution_packages = results_stage1 300 + |> List.filter (fun r -> r.status = Solution) 301 + |> List.map (fun r -> r.name) 302 + in 303 + 304 + if solution_packages = [] then 305 + (* No packages need building *) 273 306 Ok results_stage1 274 307 else begin 275 - (* Stage 2: find packages with status "solution" and actually build them *) 276 - let solution_packages = results_stage1 277 - |> List.filter (fun r -> r.status = Solution) 278 - |> List.map (fun r -> r.name) 279 - in 308 + Logs.info (fun m -> m "Stage 2: building %d packages" (List.length solution_packages)); 280 309 281 - if solution_packages = [] then 282 - (* No packages need building *) 283 - Ok results_stage1 284 - else begin 285 - Logs.info (fun m -> m "Stage 2: building %d packages" (List.length solution_packages)); 286 - 287 - (* Create packages file for stage 2 *) 288 - let packages_file2 = Filename.concat output_dir "packages_stage2.json" in 289 - let packages_json2 = Printf.sprintf {|{"packages":[%s]}|} 290 - (String.concat "," (List.map (Printf.sprintf {|"%s"|}) solution_packages)) 291 - in 292 - let* () = Bos.OS.File.write (Fpath.v packages_file2) packages_json2 in 310 + (* Create packages file for stage 2 *) 311 + let packages_file2 = Filename.concat output_dir "packages_stage2.json" in 312 + let packages_json2 = Printf.sprintf {|{"packages":[%s]}|} 313 + (String.concat "," (List.map (Printf.sprintf {|"%s"|}) solution_packages)) 314 + in 315 + let* () = Bos.OS.File.write (Fpath.v packages_file2) packages_json2 in 293 316 294 - (* Stage 2: no --dry-run, no --fork (sequential builds) *) 295 - let args_stage2 = [ 296 - "day10"; "health-check"; 297 - ] @ repo_args @ [ 298 - "--opam-repository"; opam_repo_path; 299 - "--cache-dir"; cache_dir; 300 - "--os"; os; 301 - "--os-family"; os_family; 302 - "--os-distribution"; os_distribution; 303 - "--os-version"; os_version; 304 - "--json"; results_dir; 305 - "@" ^ packages_file2; 306 - ] in 307 - let* _ = run_cmd args_stage2 in 317 + (* Stage 2: no --dry-run, no --fork (sequential builds) *) 318 + let args_stage2 = [ 319 + "day10"; "health-check"; 320 + ] @ repo_args @ [ 321 + "--opam-repository"; opam_repo_path; 322 + "--cache-dir"; cache_dir; 323 + "--os"; os; 324 + "--os-family"; os_family; 325 + "--os-distribution"; os_distribution; 326 + "--os-version"; os_version; 327 + "--json"; results_dir; 328 + "@" ^ packages_file2; 329 + ] in 330 + let* _ = run_cmd args_stage2 in 308 331 309 - (* Parse final results (stage 2 overwrites stage 1 results for built packages) *) 310 - parse_results_dir results_dir 311 - end 332 + (* Parse final results (stage 2 overwrites stage 1 results for built packages) *) 333 + parse_results results_dir 312 334 end 313 335 314 336 (** Run merge test on stacked repositories *) 315 337 let merge_test ~overlay_repos ~opam_repo_path ~cache_dir ~output_dir 316 - ~os ~os_family ~os_distribution ~os_version ~fork_jobs ~dry_run = 338 + ~os ~os_family ~os_distribution ~os_version ~fork_jobs = 317 339 318 340 (* List packages from overlay repos only (not opam-repository) *) 319 341 let* packages = list_packages_multi ~repo_paths:overlay_repos ~os ~os_family ~os_distribution ~os_version in ··· 353 375 let* results = health_check_multi 354 376 ~overlay_repos ~opam_repo_path ~cache_dir 355 377 ~os ~os_family ~os_distribution ~os_version 356 - ~fork_jobs ~dry_run ~output_dir ~packages 378 + ~fork_jobs ~output_dir ~packages 357 379 in 358 380 359 381 (* Sort results by package name *)