(for PR #21050)
2022-04-07 16:32.18: New job: test rankers.1.0.0 with conf-python-3.9.0.0, using opam 2.1 from https://github.com/ocaml/opam-repository.git#refs/pull/21050/head (408cb884f1855ff33d5c4b904ad54843ed97f9c6) on debian-11-ocaml-4.14/amd64 To reproduce locally: git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/21050/head" && git reset --hard 408cb884 git fetch origin master git merge c66b6a131c3f85d4bb738e6005eb60bb24383030 cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-11-ocaml-4.14@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f USER 1000:1000 WORKDIR /home/opam RUN for pkg in $(opam pin list --short); do opam pin remove "$pkg"; done RUN opam repository remove -a multicore || true RUN sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam RUN opam init --reinit -ni ENV OPAMDOWNLOADJOBS="1" ENV OPAMERRLOGLEN="0" ENV OPAMSOLVERTIMEOUT="500" ENV OPAMPRECISETRACKING="1" RUN rm -rf opam-repository/ COPY --chown=1000:1000 . opam-repository/ RUN opam repository set-url --strict default opam-repository/ RUN opam pin add -k version -yn conf-python-3.9.0.0 9.0.0 RUN opam update --depexts RUN opam remove conf-python-3.9.0.0 && opam install --deps-only conf-python-3.9.0.0 && opam install -v conf-python-3.9.0.0; \ res=$?; \ test "$res" != 31 && exit "$res"; \ export OPAMCLI=2.0; \ build_dir=$(opam var prefix)/.opam-switch/build; \ failed=$(ls "$build_dir"); \ for pkg in $failed; do \ if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-11\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ done; \ exit 1 RUN opam update --depexts RUN opam remove rankers.1.0.0 && opam install --deps-only rankers.1.0.0 && opam install -v rankers.1.0.0; \ res=$?; \ test "$res" != 31 && exit "$res"; \ export OPAMCLI=2.0; \ build_dir=$(opam var prefix)/.opam-switch/build; \ failed=$(ls "$build_dir"); \ for pkg in $failed; do \ if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-11\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ done; \ exit 1 RUN opam update --depexts RUN opam remove rankers.1.0.0 && opam install --deps-only --with-test rankers.1.0.0 && opam install -v --with-test rankers.1.0.0; \ res=$?; \ test "$res" != 31 && exit "$res"; \ export OPAMCLI=2.0; \ build_dir=$(opam var prefix)/.opam-switch/build; \ failed=$(ls "$build_dir"); \ for pkg in $failed; do \ if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-11\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ done; \ exit 1 END-OF-DOCKERFILE docker build -f ../Dockerfile . 2022-04-07 16:32.18: Using cache hint "ocaml/opam:debian-11-ocaml-4.14@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f-conf-python-3.9.0.0-rankers.1.0.0-408cb884f1855ff33d5c4b904ad54843ed97f9c6" 2022-04-07 16:32.18: Using OBuilder spec: ((from ocaml/opam:debian-11-ocaml-4.14@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f) (user (uid 1000) (gid 1000)) (workdir /home/opam) (run (shell "for pkg in $(opam pin list --short); do opam pin remove \"$pkg\"; done")) (run (shell "opam repository remove -a multicore || true")) (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam")) (run (shell "opam init --reinit --config .opamrc-sandbox -ni")) (env OPAMDOWNLOADJOBS 1) (env OPAMERRLOGLEN 0) (env OPAMSOLVERTIMEOUT 500) (env OPAMPRECISETRACKING 1) (run (shell "rm -rf opam-repository/")) (copy (src .) (dst opam-repository/)) (run (shell "opam repository set-url --strict default opam-repository/")) (run (shell "opam pin add -k version -yn conf-python-3.9.0.0 9.0.0")) (run (network host) (shell "opam update --depexts")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam remove conf-python-3.9.0.0 && opam install --deps-only conf-python-3.9.0.0 && opam install -v conf-python-3.9.0.0;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-11\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n done;\ \n exit 1")) (run (network host) (shell "opam update --depexts")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam remove rankers.1.0.0 && opam install --deps-only rankers.1.0.0 && opam install -v rankers.1.0.0;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-11\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n done;\ \n exit 1")) (run (network host) (shell "opam update --depexts")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam remove rankers.1.0.0 && opam install --deps-only --with-test rankers.1.0.0 && opam install -v --with-test rankers.1.0.0;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-11\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n done;\ \n exit 1")) ) 2022-04-07 16:32.18: Waiting for resource in pool OCluster 2022-04-07 16:39.26: Waiting for worker... 2022-04-07 16:42.06: Got resource from pool OCluster Building on laodoke.ocamllabs.io All commits already cached Updating files: 16% (4252/25409) Updating files: 17% (4320/25409) Updating files: 18% (4574/25409) Updating files: 19% (4828/25409) Updating files: 20% (5082/25409) Updating files: 21% (5336/25409) Updating files: 22% (5590/25409) Updating files: 23% (5845/25409) Updating files: 24% (6099/25409) Updating files: 25% (6353/25409) Updating files: 26% (6607/25409) Updating files: 27% (6861/25409) Updating files: 28% (7115/25409) Updating files: 29% (7369/25409) Updating files: 30% (7623/25409) Updating files: 31% (7877/25409) Updating files: 32% (8131/25409) Updating files: 33% (8385/25409) Updating files: 34% (8640/25409) Updating files: 35% (8894/25409) Updating files: 35% (8960/25409) Updating files: 36% (9148/25409) Updating files: 37% (9402/25409) Updating files: 38% (9656/25409) Updating files: 39% (9910/25409) Updating files: 40% (10164/25409) Updating files: 41% (10418/25409) Updating files: 42% (10672/25409) Updating files: 43% (10926/25409) Updating files: 44% (11180/25409) Updating files: 45% (11435/25409) Updating files: 46% (11689/25409) Updating files: 47% (11943/25409) Updating files: 48% (12197/25409) Updating files: 49% (12451/25409) Updating files: 50% (12705/25409) Updating files: 50% (12934/25409) Updating files: 51% (12959/25409) Updating files: 52% (13213/25409) Updating files: 53% (13467/25409) Updating files: 54% (13721/25409) Updating files: 55% (13975/25409) Updating files: 56% (14230/25409) Updating files: 57% (14484/25409) Updating files: 58% (14738/25409) Updating files: 59% (14992/25409) Updating files: 60% (15246/25409) Updating files: 61% (15500/25409) Updating files: 62% (15754/25409) Updating files: 63% (16008/25409) Updating files: 63% (16109/25409) Updating files: 64% (16262/25409) Updating files: 65% (16516/25409) Updating files: 66% (16770/25409) Updating files: 67% (17025/25409) Updating files: 68% (17279/25409) Updating files: 69% (17533/25409) Updating files: 70% (17787/25409) Updating files: 71% (18041/25409) Updating files: 72% (18295/25409) Updating files: 73% (18549/25409) Updating files: 74% (18803/25409) Updating files: 75% (19057/25409) Updating files: 76% (19311/25409) Updating files: 77% (19565/25409) Updating files: 78% (19820/25409) Updating files: 79% (20074/25409) Updating files: 79% (20261/25409) Updating files: 80% (20328/25409) Updating files: 81% (20582/25409) Updating files: 82% (20836/25409) Updating files: 83% (21090/25409) Updating files: 84% (21344/25409) Updating files: 85% (21598/25409) Updating files: 86% (21852/25409) Updating files: 87% (22106/25409) Updating files: 88% (22360/25409) Updating files: 89% (22615/25409) Updating files: 89% (22819/25409) Updating files: 90% (22869/25409) Updating files: 91% (23123/25409) Updating files: 92% (23377/25409) Updating files: 93% (23631/25409) Updating files: 94% (23885/25409) Updating files: 95% (24139/25409) Updating files: 96% (24393/25409) Updating files: 97% (24647/25409) Updating files: 98% (24901/25409) Updating files: 99% (25155/25409) Updating files: 100% (25409/25409) Updating files: 100% (25409/25409), done. HEAD is now at c66b6a131c Merge pull request #21135 from kit-ty-kate/jst-v15-unlock Merge made by the 'recursive' strategy. .../conf-python-3.9.0.0/files/test.py | 1 + packages/conf-python-3/conf-python-3.9.0.0/opam | 33 ++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 packages/conf-python-3/conf-python-3.9.0.0/files/test.py create mode 100644 packages/conf-python-3/conf-python-3.9.0.0/opam (from ocaml/opam:debian-11-ocaml-4.14@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f) Unable to find image 'ocaml/opam:debian-11-ocaml-4.14@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f' locally docker.io/ocaml/opam@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f: Pulling from ocaml/opam dbba69284b27: Already exists d5625030247c: Already exists f45a8a06e9f1: Pulling fs layer f45a8a06e9f1: Download complete f45a8a06e9f1: Pull complete Digest: sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f Status: Downloaded newer image for ocaml/opam@sha256:939c3a7774ef033240450a41691a21c40fbf2dd5efef200d8e31839e7ce55d2f 2022-04-07 16:42.54 ---> using "f5c2edee3210c7026d8f9c4d405fd408152fa5c0e3cae41cd0e1e93630dfb3ce" from cache /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "for pkg in $(opam pin list --short); do opam pin remove \"$pkg\"; done")) Ok, ocaml-base-compiler is no longer pinned to https://github.com/ocaml/ocaml/archive/4.14.0.tar.gz (version 4.14.0) Already up-to-date. Nothing to do. # Run eval $(opam env) to update the current shell environment 2022-04-07 16:42.54 ---> using "c319625cdb3b99390fd54482edceace8bde8899671ef81c92c1503963072dd08" from cache /home/opam: (run (shell "opam repository remove -a multicore || true")) [WARNING] No configured repositories by these names found: multicore 2022-04-07 16:42.54 ---> using "b9b7cc593f8fcb58626ea48eb27f64ab34f73f3259ca2d7d7d75b3b7c31ecfa0" from cache /home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam")) 2022-04-07 16:42.54 ---> using "ecf7903648823f2dda51b8d12a71a91ae08a0a1094dbef1b808300620c69ee0f" from cache /home/opam: (run (shell "opam init --reinit --config .opamrc-sandbox -ni")) Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults. Checking for available remotes: rsync and local, git. - you won't be able to use mercurial repositories unless you install the hg command on your system. - you won't be able to use darcs repositories unless you install the darcs command on your system. This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.1, which can't be reverted. You may want to back it up before going further. Continue? [Y/n] y Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from file:///home/opam/opam-repository 2022-04-07 16:42.54 ---> using "87462000ba3b5e431e2362fe3cd788e13e44da3a0c9fec8af9d5e5ab33d11e8d" from cache /home/opam: (env OPAMDOWNLOADJOBS 1) /home/opam: (env OPAMERRLOGLEN 0) /home/opam: (env OPAMSOLVERTIMEOUT 500) /home/opam: (env OPAMPRECISETRACKING 1) /home/opam: (run (shell "rm -rf opam-repository/")) 2022-04-07 16:42.54 ---> using "4c5cef59babee8fcbad5e4aba1a5deedb36f3f9dfbecd083ad8e2c2e2842e5d2" from cache /home/opam: (copy (src .) (dst opam-repository/)) 2022-04-07 16:42.58 ---> saved as "547693c843d2b7da08471cc8ec6177c2001db73b88d5ca1d593eaf9686088809" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2022-04-07 16:43.24 ---> saved as "c3c2700725c46f295d646bfd43bf3c5b4228b7295cfbd849b7ad267bb1ac9531" /home/opam: (run (shell "opam pin add -k version -yn conf-python-3.9.0.0 9.0.0")) conf-python-3 is now pinned to version 9.0.0 2022-04-07 16:43.25 ---> saved as "edb7a5b4e9049970d1205e51e8cd291c843fdc8c45e9cd115af9d1a100422534" /home/opam: (run (network host) (shell "opam update --depexts")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bullseye InRelease - Get:2 http://deb.debian.org/debian bullseye-updates InRelease [39.4 kB] - Get:3 http://security.debian.org/debian-security bullseye-security InRelease [44.1 kB] - Get:4 http://security.debian.org/debian-security bullseye-security/main amd64 Packages [124 kB] - Fetched 207 kB in 0s (458 kB/s) - Reading package lists... - 2022-04-07 16:43.30 ---> saved as "0fa77c338d11c43312bc86182b4b5992ed123810397d600afcde2858eeda9e01" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam remove conf-python-3.9.0.0 && opam install --deps-only conf-python-3.9.0.0 && opam install -v conf-python-3.9.0.0;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-11\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n done;\ \n exit 1")) Nothing to do. [NOTE] conf-python-3.9.0.0 is not installed. Nothing to do. # Run eval $(opam env) to update the current shell environment The following actions will be performed: - install conf-python-3 9.0.0* The following system packages will first need to be installed: python3 <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> Let opam run your package manager to install the required system packages? (answer 'n' for other options) [Y/n] y + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "python3" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libpython3.9-minimal:amd64. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18283 files and directories currently installed.) - Preparing to unpack .../libpython3.9-minimal_3.9.2-1_amd64.deb ... - Unpacking libpython3.9-minimal:amd64 (3.9.2-1) ... - Selecting previously unselected package python3.9-minimal. - Preparing to unpack .../python3.9-minimal_3.9.2-1_amd64.deb ... - Unpacking python3.9-minimal (3.9.2-1) ... - Setting up libpython3.9-minimal:amd64 (3.9.2-1) ... - Setting up python3.9-minimal (3.9.2-1) ... - Selecting previously unselected package python3-minimal. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18568 files and directories currently installed.) - Preparing to unpack .../0-python3-minimal_3.9.2-3_amd64.deb ... - Unpacking python3-minimal (3.9.2-3) ... - Selecting previously unselected package media-types. - Preparing to unpack .../1-media-types_4.0.0_all.deb ... - Unpacking media-types (4.0.0) ... - Selecting previously unselected package libmpdec3:amd64. - Preparing to unpack .../2-libmpdec3_2.5.1-1_amd64.deb ... - Unpacking libmpdec3:amd64 (2.5.1-1) ... - Selecting previously unselected package libpython3.9-stdlib:amd64. - Preparing to unpack .../3-libpython3.9-stdlib_3.9.2-1_amd64.deb ... - Unpacking libpython3.9-stdlib:amd64 (3.9.2-1) ... - Selecting previously unselected package python3.9. - Preparing to unpack .../4-python3.9_3.9.2-1_amd64.deb ... - Unpacking python3.9 (3.9.2-1) ... - Selecting previously unselected package libpython3-stdlib:amd64. - Preparing to unpack .../5-libpython3-stdlib_3.9.2-3_amd64.deb ... - Unpacking libpython3-stdlib:amd64 (3.9.2-3) ... - Setting up python3-minimal (3.9.2-3) ... - Selecting previously unselected package python3. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18965 files and directories currently installed.) - Preparing to unpack .../python3_3.9.2-3_amd64.deb ... - Unpacking python3 (3.9.2-3) ... - Setting up media-types (4.0.0) ... - Setting up libmpdec3:amd64 (2.5.1-1) ... - Setting up libpython3.9-stdlib:amd64 (3.9.2-1) ... - Setting up libpython3-stdlib:amd64 (3.9.2-3) ... - Setting up python3.9 (3.9.2-1) ... - Setting up python3 (3.9.2-3) ... - running python rtupdate hooks for python3.9... - running python post-rtupdate hooks for python3.9... - Processing triggers for libc-bin (2.31-13+deb11u3) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 2/3: [conf-python-3: python3 test.py] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "python3" "test.py" (CWD=/home/opam/.opam/4.14/.opam-switch/build/conf-python-3.9.0.0) - python-3 OK -> compiled conf-python-3.9.0.0 -> installed conf-python-3.9.0.0 Done. # Run eval $(opam env) to update the current shell environment 2022-04-07 16:43.58 ---> saved as "ebb83a9a2f98ce870951b06987525f4bb5fd7feff51d419db17c7d7d0e99cc58" /home/opam: (run (network host) (shell "opam update --depexts")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://security.debian.org/debian-security bullseye-security InRelease - Hit:2 http://deb.debian.org/debian bullseye InRelease - Hit:3 http://deb.debian.org/debian bullseye-updates InRelease - Reading package lists... - 2022-04-07 16:44.03 ---> saved as "758a3814c7574fdc9c2e7bddbf12c5fc88a804632145f32cef3a56875d850709" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam remove rankers.1.0.0 && opam install --deps-only rankers.1.0.0 && opam install -v rankers.1.0.0;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-11\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n done;\ \n exit 1")) Nothing to do. [NOTE] rankers.1.0.0 is not installed. The following actions will be performed: - install conf-rdkit 1 - install ocamlbuild 0.14.1 - install conf-pkg-config 2 - install dune 2.9.3 - install conf-which 1 - install ocamlfind 1.9.3 - install conf-gnuplot 0.1 - install conf-nlopt 1 - install stdlib-shims 0.3.0 - install sexplib0 v0.15.0 - install result 1.5 - install ppx_derivers 1.2.1 - install ocaml-compiler-libs v0.12.4 - install minicli 5.0.2 - install dolog 4.0.0 - install csexp 1.5.1 - install conf-autoconf 0.1 - install ocamlmod 0.0.9 - install ocamlify 0.0.1 - install num 1.4 - install base-bytes base - install ppxlib 0.26.0 - install dune-configurator 2.9.3 - install cpu 2.0.0 - install oasis 0.4.11 - install batteries 3.5.1 - install ocamlnet 4.1.9-2 - install parmap 1.2.4 - install extunix 0.4.0 - install nlopt-ocaml 0.5.1 - install cpm 12.0.0 - install bst 7.0.0 - install parany 9.0.0 - install dokeysto 4.0.0 - install molenc 8.0.2 ===== 35 to install ===== The following system packages will first need to be installed: autoconf gnuplot-x11 libnlopt-dev librdkit-dev pkg-config python3-rdkit <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> Let opam run your package manager to install the required system packages? (answer 'n' for other options) [Y/n] y + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "autoconf" "gnuplot-x11" "libnlopt-dev" "librdkit-dev" "pkg-config" "python3-rdkit" - debconf: delaying package configuration, since apt-utils is not installed - Selecting previously unselected package libapparmor1:amd64. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 18985 files and directories currently installed.) - Preparing to unpack .../0-libapparmor1_2.13.6-10_amd64.deb ... - Unpacking libapparmor1:amd64 (2.13.6-10) ... - Selecting previously unselected package libargon2-1:amd64. - Preparing to unpack .../1-libargon2-1_0~20171227-0.2_amd64.deb ... - Unpacking libargon2-1:amd64 (0~20171227-0.2) ... - Selecting previously unselected package dmsetup. - Preparing to unpack .../2-dmsetup_2%3a1.02.175-2.1_amd64.deb ... - Unpacking dmsetup (2:1.02.175-2.1) ... - Selecting previously unselected package libdevmapper1.02.1:amd64. - Preparing to unpack .../3-libdevmapper1.02.1_2%3a1.02.175-2.1_amd64.deb ... - Unpacking libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... - Selecting previously unselected package libjson-c5:amd64. - Preparing to unpack .../4-libjson-c5_0.15-2_amd64.deb ... - Unpacking libjson-c5:amd64 (0.15-2) ... - Selecting previously unselected package libcryptsetup12:amd64. - Preparing to unpack .../5-libcryptsetup12_2%3a2.3.7-1+deb11u1_amd64.deb ... - Unpacking libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... - Selecting previously unselected package libip4tc2:amd64. - Preparing to unpack .../6-libip4tc2_1.8.7-1_amd64.deb ... - Unpacking libip4tc2:amd64 (1.8.7-1) ... - Selecting previously unselected package libkmod2:amd64. - Preparing to unpack .../7-libkmod2_28-1_amd64.deb ... - Unpacking libkmod2:amd64 (28-1) ... - Selecting previously unselected package systemd. - Preparing to unpack .../8-systemd_247.3-7_amd64.deb ... - Unpacking systemd (247.3-7) ... - Setting up libapparmor1:amd64 (2.13.6-10) ... - Setting up libargon2-1:amd64 (0~20171227-0.2) ... - Setting up libjson-c5:amd64 (0.15-2) ... - Setting up libip4tc2:amd64 (1.8.7-1) ... - Setting up libkmod2:amd64 (28-1) ... - Setting up libdevmapper1.02.1:amd64 (2:1.02.175-2.1) ... - Setting up libcryptsetup12:amd64 (2:2.3.7-1+deb11u1) ... - Setting up systemd (247.3-7) ... - Created symlink /etc/systemd/system/getty.target.wants/getty@tty1.service → /lib/systemd/system/getty@.service. - Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target. - Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service. - Initializing machine ID from random generator. - Setting up dmsetup (2:1.02.175-2.1) ... - Selecting previously unselected package systemd-sysv. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 19828 files and directories currently installed.) - Preparing to unpack .../000-systemd-sysv_247.3-7_amd64.deb ... - Unpacking systemd-sysv (247.3-7) ... - Selecting previously unselected package libdbus-1-3:amd64. - Preparing to unpack .../001-libdbus-1-3_1.12.20-2_amd64.deb ... - Unpacking libdbus-1-3:amd64 (1.12.20-2) ... - Selecting previously unselected package dbus. - Preparing to unpack .../002-dbus_1.12.20-2_amd64.deb ... - Unpacking dbus (1.12.20-2) ... - Selecting previously unselected package libnss-systemd:amd64. - Preparing to unpack .../003-libnss-systemd_247.3-7_amd64.deb ... - Unpacking libnss-systemd:amd64 (247.3-7) ... - Selecting previously unselected package libpam-systemd:amd64. - Preparing to unpack .../004-libpam-systemd_247.3-7_amd64.deb ... - Unpacking libpam-systemd:amd64 (247.3-7) ... - Selecting previously unselected package systemd-timesyncd. - Preparing to unpack .../005-systemd-timesyncd_247.3-7_amd64.deb ... - Unpacking systemd-timesyncd (247.3-7) ... - Selecting previously unselected package hicolor-icon-theme. - Preparing to unpack .../006-hicolor-icon-theme_0.17-2_all.deb ... - Unpacking hicolor-icon-theme (0.17-2) ... - Selecting previously unselected package libgdk-pixbuf2.0-common. - Preparing to unpack .../007-libgdk-pixbuf2.0-common_2.42.2+dfsg-1_all.deb ... - Unpacking libgdk-pixbuf2.0-common (2.42.2+dfsg-1) ... - Selecting previously unselected package libglib2.0-0:amd64. - Preparing to unpack .../008-libglib2.0-0_2.66.8-1_amd64.deb ... - Unpacking libglib2.0-0:amd64 (2.66.8-1) ... - Selecting previously unselected package libicu67:amd64. - Preparing to unpack .../009-libicu67_67.1-7_amd64.deb ... - Unpacking libicu67:amd64 (67.1-7) ... - Selecting previously unselected package libxml2:amd64. - Preparing to unpack .../010-libxml2_2.9.10+dfsg-6.7+deb11u1_amd64.deb ... - Unpacking libxml2:amd64 (2.9.10+dfsg-6.7+deb11u1) ... - Selecting previously unselected package shared-mime-info. - Preparing to unpack .../011-shared-mime-info_2.0-1_amd64.deb ... - Unpacking shared-mime-info (2.0-1) ... - Selecting previously unselected package libgdk-pixbuf-2.0-0:amd64. - Preparing to unpack .../012-libgdk-pixbuf-2.0-0_2.42.2+dfsg-1_amd64.deb ... - Unpacking libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1) ... - Selecting previously unselected package gtk-update-icon-cache. - Preparing to unpack .../013-gtk-update-icon-cache_3.24.24-4+deb11u2_amd64.deb ... - Unpacking gtk-update-icon-cache (3.24.24-4+deb11u2) ... - Selecting previously unselected package adwaita-icon-theme. - Preparing to unpack .../014-adwaita-icon-theme_3.38.0-1_all.deb ... - Unpacking adwaita-icon-theme (3.38.0-1) ... - Selecting previously unselected package aglfn. - Preparing to unpack .../015-aglfn_1.7+git20191031.4036a9c-2_all.deb ... - Unpacking aglfn (1.7+git20191031.4036a9c-2) ... - Selecting previously unselected package libatspi2.0-0:amd64. - Preparing to unpack .../016-libatspi2.0-0_2.38.0-4_amd64.deb ... - Unpacking libatspi2.0-0:amd64 (2.38.0-4) ... - Selecting previously unselected package libxi6:amd64. - Preparing to unpack .../017-libxi6_2%3a1.7.10-1_amd64.deb ... - Unpacking libxi6:amd64 (2:1.7.10-1) ... - Selecting previously unselected package x11-common. - Preparing to unpack .../018-x11-common_1%3a7.7+22_all.deb ... - Unpacking x11-common (1:7.7+22) ... - Selecting previously unselected package libxtst6:amd64. - Preparing to unpack .../019-libxtst6_2%3a1.2.3-1_amd64.deb ... - Unpacking libxtst6:amd64 (2:1.2.3-1) ... - Selecting previously unselected package at-spi2-core. - Preparing to unpack .../020-at-spi2-core_2.38.0-4_amd64.deb ... - Unpacking at-spi2-core (2.38.0-4) ... - Selecting previously unselected package libsigsegv2:amd64. - Preparing to unpack .../021-libsigsegv2_2.13-1_amd64.deb ... - Unpacking libsigsegv2:amd64 (2.13-1) ... - Selecting previously unselected package m4. - Preparing to unpack .../022-m4_1.4.18-5_amd64.deb ... - Unpacking m4 (1.4.18-5) ... - Selecting previously unselected package autoconf. - Preparing to unpack .../023-autoconf_2.69-14_all.deb ... - Unpacking autoconf (2.69-14) ... - Selecting previously unselected package autotools-dev. - Preparing to unpack .../024-autotools-dev_20180224.1+nmu1_all.deb ... - Unpacking autotools-dev (20180224.1+nmu1) ... - Selecting previously unselected package automake. - Preparing to unpack .../025-automake_1%3a1.16.3-2_all.deb ... - Unpacking automake (1:1.16.3-2) ... - Selecting previously unselected package dbus-user-session. - Preparing to unpack .../026-dbus-user-session_1.12.20-2_amd64.deb ... - Unpacking dbus-user-session (1.12.20-2) ... - Selecting previously unselected package libdconf1:amd64. - Preparing to unpack .../027-libdconf1_0.38.0-2_amd64.deb ... - Unpacking libdconf1:amd64 (0.38.0-2) ... - Selecting previously unselected package dconf-service. - Preparing to unpack .../028-dconf-service_0.38.0-2_amd64.deb ... - Unpacking dconf-service (0.38.0-2) ... - Selecting previously unselected package dconf-gsettings-backend:amd64. - Preparing to unpack .../029-dconf-gsettings-backend_0.38.0-2_amd64.deb ... - Unpacking dconf-gsettings-backend:amd64 (0.38.0-2) ... - Selecting previously unselected package fontconfig. - Preparing to unpack .../030-fontconfig_2.13.1-4.2_amd64.deb ... - Unpacking fontconfig (2.13.1-4.2) ... - Selecting previously unselected package fonts-freefont-ttf. - Preparing to unpack .../031-fonts-freefont-ttf_20120503-10_all.deb ... - Unpacking fonts-freefont-ttf (20120503-10) ... - Selecting previously unselected package libproxy1v5:amd64. - Preparing to unpack .../032-libproxy1v5_0.4.17-1_amd64.deb ... - Unpacking libproxy1v5:amd64 (0.4.17-1) ... - Selecting previously unselected package glib-networking-common. - Preparing to unpack .../033-glib-networking-common_2.66.0-2_all.deb ... - Unpacking glib-networking-common (2.66.0-2) ... - Selecting previously unselected package glib-networking-services. - Preparing to unpack .../034-glib-networking-services_2.66.0-2_amd64.deb ... - Unpacking glib-networking-services (2.66.0-2) ... - Selecting previously unselected package gsettings-desktop-schemas. - Preparing to unpack .../035-gsettings-desktop-schemas_3.38.0-2_all.deb ... - Unpacking gsettings-desktop-schemas (3.38.0-2) ... - Selecting previously unselected package glib-networking:amd64. - Preparing to unpack .../036-glib-networking_2.66.0-2_amd64.deb ... - Unpacking glib-networking:amd64 (2.66.0-2) ... - Selecting previously unselected package gnuplot-data. - Preparing to unpack .../037-gnuplot-data_5.4.1+dfsg1-1+deb11u1_all.deb ... - Unpacking gnuplot-data (5.4.1+dfsg1-1+deb11u1) ... - Selecting previously unselected package libpixman-1-0:amd64. - Preparing to unpack .../038-libpixman-1-0_0.40.0-1_amd64.deb ... - Unpacking libpixman-1-0:amd64 (0.40.0-1) ... - Selecting previously unselected package libxcb-render0:amd64. - Preparing to unpack .../039-libxcb-render0_1.14-3_amd64.deb ... - Unpacking libxcb-render0:amd64 (1.14-3) ... - Selecting previously unselected package libxcb-shm0:amd64. - Preparing to unpack .../040-libxcb-shm0_1.14-3_amd64.deb ... - Unpacking libxcb-shm0:amd64 (1.14-3) ... - Selecting previously unselected package libxrender1:amd64. - Preparing to unpack .../041-libxrender1_1%3a0.9.10-1_amd64.deb ... - Unpacking libxrender1:amd64 (1:0.9.10-1) ... - Selecting previously unselected package libcairo2:amd64. - Preparing to unpack .../042-libcairo2_1.16.0-5_amd64.deb ... - Unpacking libcairo2:amd64 (1.16.0-5) ... - Selecting previously unselected package liblua5.4-0:amd64. - Preparing to unpack .../043-liblua5.4-0_5.4.2-2_amd64.deb ... - Unpacking liblua5.4-0:amd64 (5.4.2-2) ... - Selecting previously unselected package libfribidi0:amd64. - Preparing to unpack .../044-libfribidi0_1.0.8-2_amd64.deb ... - Unpacking libfribidi0:amd64 (1.0.8-2) ... - Selecting previously unselected package libgraphite2-3:amd64. - Preparing to unpack .../045-libgraphite2-3_1.3.14-1_amd64.deb ... - Unpacking libgraphite2-3:amd64 (1.3.14-1) ... - Selecting previously unselected package libharfbuzz0b:amd64. - Preparing to unpack .../046-libharfbuzz0b_2.7.4-1_amd64.deb ... - Unpacking libharfbuzz0b:amd64 (2.7.4-1) ... - Selecting previously unselected package libthai-data. - Preparing to unpack .../047-libthai-data_0.1.28-3_all.deb ... - Unpacking libthai-data (0.1.28-3) ... - Selecting previously unselected package libdatrie1:amd64. - Preparing to unpack .../048-libdatrie1_0.2.13-1_amd64.deb ... - Unpacking libdatrie1:amd64 (0.2.13-1) ... - Selecting previously unselected package libthai0:amd64. - Preparing to unpack .../049-libthai0_0.1.28-3_amd64.deb ... - Unpacking libthai0:amd64 (0.1.28-3) ... - Selecting previously unselected package libpango-1.0-0:amd64. - Preparing to unpack .../050-libpango-1.0-0_1.46.2-3_amd64.deb ... - Unpacking libpango-1.0-0:amd64 (1.46.2-3) ... - Selecting previously unselected package libpangoft2-1.0-0:amd64. - Preparing to unpack .../051-libpangoft2-1.0-0_1.46.2-3_amd64.deb ... - Unpacking libpangoft2-1.0-0:amd64 (1.46.2-3) ... - Selecting previously unselected package libpangocairo-1.0-0:amd64. - Preparing to unpack .../052-libpangocairo-1.0-0_1.46.2-3_amd64.deb ... - Unpacking libpangocairo-1.0-0:amd64 (1.46.2-3) ... - Selecting previously unselected package libwxbase3.0-0v5:amd64. - Preparing to unpack .../053-libwxbase3.0-0v5_3.0.5.1+dfsg-2_amd64.deb ... - Unpacking libwxbase3.0-0v5:amd64 (3.0.5.1+dfsg-2) ... - Selecting previously unselected package libgdk-pixbuf-xlib-2.0-0:amd64. - Preparing to unpack .../054-libgdk-pixbuf-xlib-2.0-0_2.40.2-2_amd64.deb ... - Unpacking libgdk-pixbuf-xlib-2.0-0:amd64 (2.40.2-2) ... - Selecting previously unselected package libgdk-pixbuf2.0-0:amd64. - Preparing to unpack .../055-libgdk-pixbuf2.0-0_2.40.2-2_amd64.deb ... - Unpacking libgdk-pixbuf2.0-0:amd64 (2.40.2-2) ... - Selecting previously unselected package libglvnd0:amd64. - Preparing to unpack .../056-libglvnd0_1.3.2-1_amd64.deb ... - Unpacking libglvnd0:amd64 (1.3.2-1) ... - Selecting previously unselected package libdrm-common. - Preparing to unpack .../057-libdrm-common_2.4.104-1_all.deb ... - Unpacking libdrm-common (2.4.104-1) ... - Selecting previously unselected package libdrm2:amd64. - Preparing to unpack .../058-libdrm2_2.4.104-1_amd64.deb ... - Unpacking libdrm2:amd64 (2.4.104-1) ... - Selecting previously unselected package libglapi-mesa:amd64. - Preparing to unpack .../059-libglapi-mesa_20.3.5-1_amd64.deb ... - Unpacking libglapi-mesa:amd64 (20.3.5-1) ... - Selecting previously unselected package libx11-xcb1:amd64. - Preparing to unpack .../060-libx11-xcb1_2%3a1.7.2-1_amd64.deb ... - Unpacking libx11-xcb1:amd64 (2:1.7.2-1) ... - Selecting previously unselected package libxcb-dri2-0:amd64. - Preparing to unpack .../061-libxcb-dri2-0_1.14-3_amd64.deb ... - Unpacking libxcb-dri2-0:amd64 (1.14-3) ... - Selecting previously unselected package libxcb-dri3-0:amd64. - Preparing to unpack .../062-libxcb-dri3-0_1.14-3_amd64.deb ... - Unpacking libxcb-dri3-0:amd64 (1.14-3) ... - Selecting previously unselected package libxcb-glx0:amd64. - Preparing to unpack .../063-libxcb-glx0_1.14-3_amd64.deb ... - Unpacking libxcb-glx0:amd64 (1.14-3) ... - Selecting previously unselected package libxcb-present0:amd64. - Preparing to unpack .../064-libxcb-present0_1.14-3_amd64.deb ... - Unpacking libxcb-present0:amd64 (1.14-3) ... - Selecting previously unselected package libxcb-sync1:amd64. - Preparing to unpack .../065-libxcb-sync1_1.14-3_amd64.deb ... - Unpacking libxcb-sync1:amd64 (1.14-3) ... - Selecting previously unselected package libxcb-xfixes0:amd64. - Preparing to unpack .../066-libxcb-xfixes0_1.14-3_amd64.deb ... - Unpacking libxcb-xfixes0:amd64 (1.14-3) ... - Selecting previously unselected package libxdamage1:amd64. - Preparing to unpack .../067-libxdamage1_1%3a1.1.5-2_amd64.deb ... - Unpacking libxdamage1:amd64 (1:1.1.5-2) ... - Selecting previously unselected package libxfixes3:amd64. - Preparing to unpack .../068-libxfixes3_1%3a5.0.3-2_amd64.deb ... - Unpacking libxfixes3:amd64 (1:5.0.3-2) ... - Selecting previously unselected package libxshmfence1:amd64. - Preparing to unpack .../069-libxshmfence1_1.3-1_amd64.deb ... - Unpacking libxshmfence1:amd64 (1.3-1) ... - Selecting previously unselected package libxxf86vm1:amd64. - Preparing to unpack .../070-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ... - Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ... - Selecting previously unselected package libdrm-amdgpu1:amd64. - Preparing to unpack .../071-libdrm-amdgpu1_2.4.104-1_amd64.deb ... - Unpacking libdrm-amdgpu1:amd64 (2.4.104-1) ... - Selecting previously unselected package libpciaccess0:amd64. - Preparing to unpack .../072-libpciaccess0_0.16-1_amd64.deb ... - Unpacking libpciaccess0:amd64 (0.16-1) ... - Selecting previously unselected package libdrm-intel1:amd64. - Preparing to unpack .../073-libdrm-intel1_2.4.104-1_amd64.deb ... - Unpacking libdrm-intel1:amd64 (2.4.104-1) ... - Selecting previously unselected package libdrm-nouveau2:amd64. - Preparing to unpack .../074-libdrm-nouveau2_2.4.104-1_amd64.deb ... - Unpacking libdrm-nouveau2:amd64 (2.4.104-1) ... - Selecting previously unselected package libdrm-radeon1:amd64. - Preparing to unpack .../075-libdrm-radeon1_2.4.104-1_amd64.deb ... - Unpacking libdrm-radeon1:amd64 (2.4.104-1) ... - Selecting previously unselected package libelf1:amd64. - Preparing to unpack .../076-libelf1_0.183-1_amd64.deb ... - Unpacking libelf1:amd64 (0.183-1) ... - Selecting previously unselected package libz3-4:amd64. - Preparing to unpack .../077-libz3-4_4.8.10-1_amd64.deb ... - Unpacking libz3-4:amd64 (4.8.10-1) ... - Selecting previously unselected package libllvm11:amd64. - Preparing to unpack .../078-libllvm11_1%3a11.0.1-2_amd64.deb ... - Unpacking libllvm11:amd64 (1:11.0.1-2) ... - Selecting previously unselected package libsensors-config. - Preparing to unpack .../079-libsensors-config_1%3a3.6.0-7_all.deb ... - Unpacking libsensors-config (1:3.6.0-7) ... - Selecting previously unselected package libsensors5:amd64. - Preparing to unpack .../080-libsensors5_1%3a3.6.0-7_amd64.deb ... - Unpacking libsensors5:amd64 (1:3.6.0-7) ... - Selecting previously unselected package libvulkan1:amd64. - Preparing to unpack .../081-libvulkan1_1.2.162.0-1_amd64.deb ... - Unpacking libvulkan1:amd64 (1.2.162.0-1) ... - Selecting previously unselected package libgl1-mesa-dri:amd64. - Preparing to unpack .../082-libgl1-mesa-dri_20.3.5-1_amd64.deb ... - Unpacking libgl1-mesa-dri:amd64 (20.3.5-1) ... - Selecting previously unselected package libglx-mesa0:amd64. - Preparing to unpack .../083-libglx-mesa0_20.3.5-1_amd64.deb ... - Unpacking libglx-mesa0:amd64 (20.3.5-1) ... - Selecting previously unselected package libglx0:amd64. - Preparing to unpack .../084-libglx0_1.3.2-1_amd64.deb ... - Unpacking libglx0:amd64 (1.3.2-1) ... - Selecting previously unselected package libgl1:amd64. - Preparing to unpack .../085-libgl1_1.3.2-1_amd64.deb ... - Unpacking libgl1:amd64 (1.3.2-1) ... - Selecting previously unselected package libatk1.0-data. - Preparing to unpack .../086-libatk1.0-data_2.36.0-2_all.deb ... - Unpacking libatk1.0-data (2.36.0-2) ... - Selecting previously unselected package libatk1.0-0:amd64. - Preparing to unpack .../087-libatk1.0-0_2.36.0-2_amd64.deb ... - Unpacking libatk1.0-0:amd64 (2.36.0-2) ... - Selecting previously unselected package libatk-bridge2.0-0:amd64. - Preparing to unpack .../088-libatk-bridge2.0-0_2.38.0-1_amd64.deb ... - Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ... - Selecting previously unselected package libcairo-gobject2:amd64. - Preparing to unpack .../089-libcairo-gobject2_1.16.0-5_amd64.deb ... - Unpacking libcairo-gobject2:amd64 (1.16.0-5) ... - Selecting previously unselected package liblcms2-2:amd64. - Preparing to unpack .../090-liblcms2-2_2.12~rc1-2_amd64.deb ... - Unpacking liblcms2-2:amd64 (2.12~rc1-2) ... - Selecting previously unselected package libcolord2:amd64. - Preparing to unpack .../091-libcolord2_1.4.5-3_amd64.deb ... - Unpacking libcolord2:amd64 (1.4.5-3) ... - Selecting previously unselected package libavahi-common-data:amd64. - Preparing to unpack .../092-libavahi-common-data_0.8-5_amd64.deb ... - Unpacking libavahi-common-data:amd64 (0.8-5) ... - Selecting previously unselected package libavahi-common3:amd64. - Preparing to unpack .../093-libavahi-common3_0.8-5_amd64.deb ... - Unpacking libavahi-common3:amd64 (0.8-5) ... - Selecting previously unselected package libavahi-client3:amd64. - Preparing to unpack .../094-libavahi-client3_0.8-5_amd64.deb ... - Unpacking libavahi-client3:amd64 (0.8-5) ... - Selecting previously unselected package libcups2:amd64. - Preparing to unpack .../095-libcups2_2.3.3op2-3+deb11u1_amd64.deb ... - Unpacking libcups2:amd64 (2.3.3op2-3+deb11u1) ... - Selecting previously unselected package libepoxy0:amd64. - Preparing to unpack .../096-libepoxy0_1.5.5-1_amd64.deb ... - Unpacking libepoxy0:amd64 (1.5.5-1) ... - Selecting previously unselected package libjson-glib-1.0-common. - Preparing to unpack .../097-libjson-glib-1.0-common_1.6.2-1_all.deb ... - Unpacking libjson-glib-1.0-common (1.6.2-1) ... - Selecting previously unselected package libjson-glib-1.0-0:amd64. - Preparing to unpack .../098-libjson-glib-1.0-0_1.6.2-1_amd64.deb ... - Unpacking libjson-glib-1.0-0:amd64 (1.6.2-1) ... - Selecting previously unselected package libsoup2.4-1:amd64. - Preparing to unpack .../099-libsoup2.4-1_2.72.0-2_amd64.deb ... - Unpacking libsoup2.4-1:amd64 (2.72.0-2) ... - Selecting previously unselected package libsoup-gnome2.4-1:amd64. - Preparing to unpack .../100-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ... - Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ... - Selecting previously unselected package librest-0.7-0:amd64. - Preparing to unpack .../101-librest-0.7-0_0.8.1-1.1_amd64.deb ... - Unpacking librest-0.7-0:amd64 (0.8.1-1.1) ... - Selecting previously unselected package libwayland-client0:amd64. - Preparing to unpack .../102-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ... - Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ... - Selecting previously unselected package libwayland-cursor0:amd64. - Preparing to unpack .../103-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ... - Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... - Selecting previously unselected package libwayland-egl1:amd64. - Preparing to unpack .../104-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ... - Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... - Selecting previously unselected package libxcomposite1:amd64. - Preparing to unpack .../105-libxcomposite1_1%3a0.4.5-1_amd64.deb ... - Unpacking libxcomposite1:amd64 (1:0.4.5-1) ... - Selecting previously unselected package libxcursor1:amd64. - Preparing to unpack .../106-libxcursor1_1%3a1.2.0-2_amd64.deb ... - Unpacking libxcursor1:amd64 (1:1.2.0-2) ... - Selecting previously unselected package libxinerama1:amd64. - Preparing to unpack .../107-libxinerama1_2%3a1.1.4-2_amd64.deb ... - Unpacking libxinerama1:amd64 (2:1.1.4-2) ... - Selecting previously unselected package xkb-data. - Preparing to unpack .../108-xkb-data_2.29-2_all.deb ... - Unpacking xkb-data (2.29-2) ... - Selecting previously unselected package libxkbcommon0:amd64. - Preparing to unpack .../109-libxkbcommon0_1.0.3-2_amd64.deb ... - Unpacking libxkbcommon0:amd64 (1.0.3-2) ... - Selecting previously unselected package libxrandr2:amd64. - Preparing to unpack .../110-libxrandr2_2%3a1.5.1-1_amd64.deb ... - Unpacking libxrandr2:amd64 (2:1.5.1-1) ... - Selecting previously unselected package libgtk-3-common. - Preparing to unpack .../111-libgtk-3-common_3.24.24-4+deb11u2_all.deb ... - Unpacking libgtk-3-common (3.24.24-4+deb11u2) ... - Selecting previously unselected package libgtk-3-0:amd64. - Preparing to unpack .../112-libgtk-3-0_3.24.24-4+deb11u2_amd64.deb ... - Unpacking libgtk-3-0:amd64 (3.24.24-4+deb11u2) ... - Selecting previously unselected package libnotify4:amd64. - Preparing to unpack .../113-libnotify4_0.7.9-3_amd64.deb ... - Unpacking libnotify4:amd64 (0.7.9-3) ... - Selecting previously unselected package libice6:amd64. - Preparing to unpack .../114-libice6_2%3a1.0.10-1_amd64.deb ... - Unpacking libice6:amd64 (2:1.0.10-1) ... - Selecting previously unselected package libsm6:amd64. - Preparing to unpack .../115-libsm6_2%3a1.2.3-1_amd64.deb ... - Unpacking libsm6:amd64 (2:1.2.3-1) ... - Selecting previously unselected package libwxgtk3.0-gtk3-0v5:amd64. - Preparing to unpack .../116-libwxgtk3.0-gtk3-0v5_3.0.5.1+dfsg-2_amd64.deb ... - Unpacking libwxgtk3.0-gtk3-0v5:amd64 (3.0.5.1+dfsg-2) ... - Selecting previously unselected package gnuplot-x11. - Preparing to unpack .../117-gnuplot-x11_5.4.1+dfsg1-1+deb11u1_amd64.deb ... - Unpacking gnuplot-x11 (5.4.1+dfsg1-1+deb11u1) ... - Selecting previously unselected package libblas3:amd64. - Preparing to unpack .../118-libblas3_3.9.0-3_amd64.deb ... - Unpacking libblas3:amd64 (3.9.0-3) ... - Selecting previously unselected package libboost-iostreams1.74.0:amd64. - Preparing to unpack .../119-libboost-iostreams1.74.0_1.74.0-9_amd64.deb ... - Unpacking libboost-iostreams1.74.0:amd64 (1.74.0-9) ... - Selecting previously unselected package libboost-python1.74.0. - Preparing to unpack .../120-libboost-python1.74.0_1.74.0-9_amd64.deb ... - Unpacking libboost-python1.74.0 (1.74.0-9) ... - Selecting previously unselected package libboost-serialization1.74.0:amd64. - Preparing to unpack .../121-libboost-serialization1.74.0_1.74.0-9_amd64.deb ... - Unpacking libboost-serialization1.74.0:amd64 (1.74.0-9) ... - Selecting previously unselected package libcoordgen1:amd64. - Preparing to unpack .../122-libcoordgen1_1.4.2-1_amd64.deb ... - Unpacking libcoordgen1:amd64 (1.4.2-1) ... - Selecting previously unselected package libgdk-pixbuf2.0-bin. - Preparing to unpack .../123-libgdk-pixbuf2.0-bin_2.42.2+dfsg-1_amd64.deb ... - Unpacking libgdk-pixbuf2.0-bin (2.42.2+dfsg-1) ... - Selecting previously unselected package libgfortran5:amd64. - Preparing to unpack .../124-libgfortran5_10.2.1-6_amd64.deb ... - Unpacking libgfortran5:amd64 (10.2.1-6) ... - Selecting previously unselected package libglib2.0-data. - Preparing to unpack .../125-libglib2.0-data_2.66.8-1_all.deb ... - Unpacking libglib2.0-data (2.66.8-1) ... - Selecting previously unselected package libgtk-3-bin. - Preparing to unpack .../126-libgtk-3-bin_3.24.24-4+deb11u2_amd64.deb ... - Unpacking libgtk-3-bin (3.24.24-4+deb11u2) ... - Selecting previously unselected package liblapack3:amd64. - Preparing to unpack .../127-liblapack3_3.9.0-3_amd64.deb ... - Unpacking liblapack3:amd64 (3.9.0-3) ... - Selecting previously unselected package libmaeparser1:amd64. - Preparing to unpack .../128-libmaeparser1_1.2.4-1+b1_amd64.deb ... - Unpacking libmaeparser1:amd64 (1.2.4-1+b1) ... - Selecting previously unselected package libnlopt0:amd64. - Preparing to unpack .../129-libnlopt0_2.7.0-4+b2_amd64.deb ... - Unpacking libnlopt0:amd64 (2.7.0-4+b2) ... - Selecting previously unselected package libnlopt-dev:amd64. - Preparing to unpack .../130-libnlopt-dev_2.7.0-4+b2_amd64.deb ... - Unpacking libnlopt-dev:amd64 (2.7.0-4+b2) ... - Selecting previously unselected package libpython3.9:amd64. - Preparing to unpack .../131-libpython3.9_3.9.2-1_amd64.deb ... - Unpacking libpython3.9:amd64 (3.9.2-1) ... - Selecting previously unselected package librdkit1. - Preparing to unpack .../132-librdkit1_202009.4-1_amd64.deb ... - Unpacking librdkit1 (202009.4-1) ... - Selecting previously unselected package librdkit-dev. - Preparing to unpack .../133-librdkit-dev_202009.4-1_amd64.deb ... - Unpacking librdkit-dev (202009.4-1) ... - Selecting previously unselected package librsvg2-2:amd64. - Preparing to unpack .../134-librsvg2-2_2.50.3+dfsg-1_amd64.deb ... - Unpacking librsvg2-2:amd64 (2.50.3+dfsg-1) ... - Selecting previously unselected package librsvg2-common:amd64. - Preparing to unpack .../135-librsvg2-common_2.50.3+dfsg-1_amd64.deb ... - Unpacking librsvg2-common:amd64 (2.50.3+dfsg-1) ... - Selecting previously unselected package libxcb-randr0:amd64. - Preparing to unpack .../136-libxcb-randr0_1.14-3_amd64.deb ... - Unpacking libxcb-randr0:amd64 (1.14-3) ... - Selecting previously unselected package mesa-vulkan-drivers:amd64. - Preparing to unpack .../137-mesa-vulkan-drivers_20.3.5-1_amd64.deb ... - Unpacking mesa-vulkan-drivers:amd64 (20.3.5-1) ... - Selecting previously unselected package notification-daemon. - Preparing to unpack .../138-notification-daemon_3.20.0-4_amd64.deb ... - Unpacking notification-daemon (3.20.0-4) ... - Selecting previously unselected package pkg-config. - Preparing to unpack .../139-pkg-config_0.29.2-1_amd64.deb ... - Unpacking pkg-config (0.29.2-1) ... - Selecting previously unselected package python3-pkg-resources. - Preparing to unpack .../140-python3-pkg-resources_52.0.0-4_all.deb ... - Unpacking python3-pkg-resources (52.0.0-4) ... - Selecting previously unselected package python3-numpy. - Preparing to unpack .../141-python3-numpy_1%3a1.19.5-1_amd64.deb ... - Unpacking python3-numpy (1:1.19.5-1) ... - Selecting previously unselected package rdkit-data. - Preparing to unpack .../142-rdkit-data_202009.4-1_all.deb ... - Unpacking rdkit-data (202009.4-1) ... - Selecting previously unselected package python3-rdkit. - Preparing to unpack .../143-python3-rdkit_202009.4-1_amd64.deb ... - Unpacking python3-rdkit (202009.4-1) ... - Selecting previously unselected package xdg-user-dirs. - Preparing to unpack .../144-xdg-user-dirs_0.17-2_amd64.deb ... - Unpacking xdg-user-dirs (0.17-2) ... - Setting up python3-pkg-resources (52.0.0-4) ... - Setting up libgraphite2-3:amd64 (1.3.14-1) ... - Setting up libxcb-dri3-0:amd64 (1.14-3) ... - Setting up liblcms2-2:amd64 (2.12~rc1-2) ... - Setting up libpixman-1-0:amd64 (0.40.0-1) ... - Setting up libx11-xcb1:amd64 (2:1.7.2-1) ... - Setting up libpciaccess0:amd64 (0.16-1) ... - Setting up fontconfig (2.13.1-4.2) ... - Regenerating fonts cache... - done. - Setting up systemd-sysv (247.3-7) ... - Setting up libproxy1v5:amd64 (0.4.17-1) ... - Setting up libxdamage1:amd64 (1:1.1.5-2) ... - Setting up libxcb-xfixes0:amd64 (1.14-3) ... - Setting up hicolor-icon-theme (0.17-2) ... - Setting up libxi6:amd64 (2:1.7.10-1) ... - Setting up libxrender1:amd64 (1:0.9.10-1) ... - Setting up libicu67:amd64 (67.1-7) ... - Setting up libdatrie1:amd64 (0.2.13-1) ... - Setting up xdg-user-dirs (0.17-2) ... - Setting up libxcb-render0:amd64 (1.14-3) ... - Setting up libglib2.0-0:amd64 (2.66.8-1) ... - Setting up libboost-iostreams1.74.0:amd64 (1.74.0-9) ... - Setting up libglvnd0:amd64 (1.3.2-1) ... - Setting up libxcb-glx0:amd64 (1.14-3) ... - Setting up libgdk-pixbuf2.0-common (2.42.2+dfsg-1) ... - Setting up x11-common (1:7.7+22) ... - invoke-rc.d: could not determine current runlevel - invoke-rc.d: policy-rc.d denied execution of start. - Setting up libsensors-config (1:3.6.0-7) ... - Setting up fonts-freefont-ttf (20120503-10) ... - Setting up libnss-systemd:amd64 (247.3-7) ... - First installation detected... - Checking NSS setup... - Setting up xkb-data (2.29-2) ... - Setting up libnlopt0:amd64 (2.7.0-4+b2) ... - Setting up libxcb-shm0:amd64 (1.14-3) ... - Setting up rdkit-data (202009.4-1) ... - Setting up libcairo2:amd64 (1.16.0-5) ... - Setting up libcolord2:amd64 (1.4.5-3) ... - Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ... - Setting up libmaeparser1:amd64 (1.2.4-1+b1) ... - Setting up libxcb-present0:amd64 (1.14-3) ... - Setting up libdconf1:amd64 (0.38.0-2) ... - Setting up autotools-dev (20180224.1+nmu1) ... - Setting up libz3-4:amd64 (4.8.10-1) ... - Setting up libblas3:amd64 (3.9.0-3) ... - update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode - Setting up libglib2.0-data (2.66.8-1) ... - Setting up libpython3.9:amd64 (3.9.2-1) ... - Setting up libllvm11:amd64 (1:11.0.1-2) ... - Setting up libepoxy0:amd64 (1.5.5-1) ... - Setting up libxfixes3:amd64 (1:5.0.3-2) ... - Setting up libxcb-sync1:amd64 (1.14-3) ... - Setting up aglfn (1.7+git20191031.4036a9c-2) ... - Setting up libavahi-common-data:amd64 (0.8-5) ... - Setting up libdbus-1-3:amd64 (1.12.20-2) ... - Setting up dbus (1.12.20-2) ... - invoke-rc.d: could not determine current runlevel - invoke-rc.d: policy-rc.d denied execution of start. - Setting up libsigsegv2:amd64 (2.13-1) ... - Setting up libfribidi0:amd64 (1.0.8-2) ... - Setting up libxinerama1:amd64 (2:1.1.4-2) ... - Setting up systemd-timesyncd (247.3-7) ... - Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service. - Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service. - Setting up libxrandr2:amd64 (2:1.5.1-1) ... - Setting up pkg-config (0.29.2-1) ... - Setting up libsensors5:amd64 (1:3.6.0-7) ... - Setting up libglapi-mesa:amd64 (20.3.5-1) ... - Setting up libgfortran5:amd64 (10.2.1-6) ... - Setting up libvulkan1:amd64 (1.2.162.0-1) ... - Setting up libxcb-dri2-0:amd64 (1.14-3) ... - Setting up libboost-serialization1.74.0:amd64 (1.74.0-9) ... - Setting up libatk1.0-data (2.36.0-2) ... - Setting up libcoordgen1:amd64 (1.4.2-1) ... - Setting up libxshmfence1:amd64 (1.3-1) ... - Setting up libxcb-randr0:amd64 (1.14-3) ... - Setting up libpam-systemd:amd64 (247.3-7) ... - Setting up liblua5.4-0:amd64 (5.4.2-2) ... - Setting up libharfbuzz0b:amd64 (2.7.4-1) ... - Setting up libthai-data (0.1.28-3) ... - Setting up libwxbase3.0-0v5:amd64 (3.0.5.1+dfsg-2) ... - Setting up libjson-glib-1.0-common (1.6.2-1) ... - Setting up libcairo-gobject2:amd64 (1.16.0-5) ... - Setting up libatk1.0-0:amd64 (2.36.0-2) ... - Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ... - Setting up glib-networking-common (2.66.0-2) ... - Setting up libboost-python1.74.0 (1.74.0-9) ... - Setting up libnlopt-dev:amd64 (2.7.0-4+b2) ... - Setting up libdrm-common (2.4.104-1) ... - Setting up libelf1:amd64 (0.183-1) ... - Setting up libxcomposite1:amd64 (1:0.4.5-1) ... - Setting up libxml2:amd64 (2.9.10+dfsg-6.7+deb11u1) ... - Setting up libxkbcommon0:amd64 (1.0.3-2) ... - Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ... - Setting up glib-networking-services (2.66.0-2) ... - Setting up gnuplot-data (5.4.1+dfsg1-1+deb11u1) ... - Setting up libice6:amd64 (2:1.0.10-1) ... - Setting up liblapack3:amd64 (3.9.0-3) ... - update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode - Setting up libxtst6:amd64 (2:1.2.3-1) ... - Setting up librdkit1 (202009.4-1) ... - Setting up libxcursor1:amd64 (1:1.2.0-2) ... - Setting up libavahi-common3:amd64 (0.8-5) ... - Setting up m4 (1.4.18-5) ... - Setting up libatspi2.0-0:amd64 (2.38.0-4) ... - Setting up libjson-glib-1.0-0:amd64 (1.6.2-1) ... - Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ... - Setting up libthai0:amd64 (0.1.28-3) ... - Setting up dbus-user-session (1.12.20-2) ... - Setting up shared-mime-info (2.0-1) ... - Setting up librdkit-dev (202009.4-1) ... - Setting up python3-numpy (1:1.19.5-1) ... - Setting up autoconf (2.69-14) ... - Setting up libdrm2:amd64 (2.4.104-1) ... - Setting up at-spi2-core (2.38.0-4) ... - Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ... - Setting up libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1) ... - Setting up libsm6:amd64 (2:1.2.3-1) ... - Setting up libavahi-client3:amd64 (0.8-5) ... - Setting up libdrm-amdgpu1:amd64 (2.4.104-1) ... - Setting up automake (1:1.16.3-2) ... - update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode - Setting up mesa-vulkan-drivers:amd64 (20.3.5-1) ... - Setting up gtk-update-icon-cache (3.24.24-4+deb11u2) ... - Setting up libdrm-nouveau2:amd64 (2.4.104-1) ... - Setting up libgdk-pixbuf-xlib-2.0-0:amd64 (2.40.2-2) ... - Setting up libdrm-radeon1:amd64 (2.4.104-1) ... - Setting up libpango-1.0-0:amd64 (1.46.2-3) ... - Setting up libdrm-intel1:amd64 (2.4.104-1) ... - Setting up libgl1-mesa-dri:amd64 (20.3.5-1) ... - Setting up dconf-service (0.38.0-2) ... - Setting up adwaita-icon-theme (3.38.0-1) ... - update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode - Setting up libnotify4:amd64 (0.7.9-3) ... - Setting up python3-rdkit (202009.4-1) ... - Setting up libgdk-pixbuf2.0-0:amd64 (2.40.2-2) ... - Setting up libcups2:amd64 (2.3.3op2-3+deb11u1) ... - Setting up libgdk-pixbuf2.0-bin (2.42.2+dfsg-1) ... - Setting up libpangoft2-1.0-0:amd64 (1.46.2-3) ... - Setting up libpangocairo-1.0-0:amd64 (1.46.2-3) ... - Setting up libglx-mesa0:amd64 (20.3.5-1) ... - Setting up libglx0:amd64 (1.3.2-1) ... - Setting up dconf-gsettings-backend:amd64 (0.38.0-2) ... - Setting up librsvg2-2:amd64 (2.50.3+dfsg-1) ... - Setting up libgl1:amd64 (1.3.2-1) ... - Setting up librsvg2-common:amd64 (2.50.3+dfsg-1) ... - Setting up libgtk-3-common (3.24.24-4+deb11u2) ... - Setting up gsettings-desktop-schemas (3.38.0-2) ... - Setting up glib-networking:amd64 (2.66.0-2) ... - Setting up libsoup2.4-1:amd64 (2.72.0-2) ... - Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ... - Setting up librest-0.7-0:amd64 (0.8.1-1.1) ... - Setting up libgtk-3-0:amd64 (3.24.24-4+deb11u2) ... - Setting up libgtk-3-bin (3.24.24-4+deb11u2) ... - Setting up libwxgtk3.0-gtk3-0v5:amd64 (3.0.5.1+dfsg-2) ... - Setting up notification-daemon (3.20.0-4) ... - Setting up gnuplot-x11 (5.4.1+dfsg1-1+deb11u1) ... - update-alternatives: using /usr/bin/gnuplot-x11 to provide /usr/bin/gnuplot (gnuplot) in auto mode - Processing triggers for libc-bin (2.31-13+deb11u3) ... - Processing triggers for libgdk-pixbuf-2.0-0:amd64 (2.42.2+dfsg-1) ... <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved batteries.3.5.1 (cached) -> retrieved bst.7.0.0 (cached) -> retrieved cpm.12.0.0 (cached) -> retrieved cpu.2.0.0 (cached) -> retrieved csexp.1.5.1 (cached) -> installed conf-pkg-config.2 -> installed conf-gnuplot.0.1 -> installed conf-which.1 -> installed conf-rdkit.1 -> retrieved dokeysto.4.0.0 (cached) -> installed conf-nlopt.1 -> installed conf-autoconf.0.1 -> retrieved dolog.4.0.0 (cached) -> retrieved dune.2.9.3 (cached) -> retrieved dune-configurator.2.9.3 (cached) -> retrieved extunix.0.4.0 (cached) -> retrieved minicli.5.0.2 (cached) -> retrieved molenc.8.0.2 (cached) -> retrieved nlopt-ocaml.0.5.1 (cached) -> retrieved num.1.4 (cached) -> retrieved oasis.0.4.11 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocamlbuild.0.14.1 (cached) -> retrieved ocamlfind.1.9.3 (cached) -> retrieved ocamlify.0.0.1 (cached) -> retrieved ocamlmod.0.0.9 (cached) -> retrieved ocamlnet.4.1.9-2 (cached) -> retrieved parany.9.0.0 (cached) -> retrieved parmap.1.2.4 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppxlib.0.26.0 (cached) -> retrieved result.1.5 (cached) -> retrieved sexplib0.v0.15.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> installed ocamlfind.1.9.3 -> installed base-bytes.base -> installed num.1.4 -> installed ocamlbuild.0.14.1 -> installed ocamlify.0.0.1 -> installed ocamlmod.0.0.9 -> installed dune.2.9.3 -> installed csexp.1.5.1 -> installed minicli.5.0.2 -> installed ppx_derivers.1.2.1 -> installed dolog.4.0.0 -> installed result.1.5 -> installed stdlib-shims.0.3.0 -> installed sexplib0.v0.15.0 -> installed ocaml-compiler-libs.v0.12.4 -> installed dune-configurator.2.9.3 -> installed cpu.2.0.0 -> installed parmap.1.2.4 -> installed ppxlib.0.26.0 -> installed batteries.3.5.1 -> installed extunix.0.4.0 -> installed bst.7.0.0 -> installed dokeysto.4.0.0 -> installed cpm.12.0.0 -> installed oasis.0.4.11 -> installed nlopt-ocaml.0.5.1 -> installed ocamlnet.4.1.9-2 -> installed parany.9.0.0 -> installed molenc.8.0.2 Done. # Run eval $(opam env) to update the current shell environment The following actions will be performed: - install rankers 1.0.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/3: -> retrieved rankers.1.0.0 (cached) Processing 2/3: [rankers: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rankers" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/rankers.1.0.0) - ocamlc src/.bwmine.eobjs/byte/myList.{cmi,cmo,cmt} - File "src/myList.ml", line 25, characters 14-30: - 25 | map of_str (BatString.nsplit s' ~by:";") - ^^^^^^^^^^^^^^^^ - Alert deprecated: BatString.nsplit - Use split_on_string instead. - ocamlopt src/.bwmine.eobjs/native/myList.{cmx,o} - File "src/myList.ml", line 25, characters 14-30: - 25 | map of_str (BatString.nsplit s' ~by:";") - ^^^^^^^^^^^^^^^^ - Alert deprecated: BatString.nsplit - Use split_on_string instead. -> compiled rankers.1.0.0 -> installed rankers.1.0.0 Done. # Run eval $(opam env) to update the current shell environment 2022-04-07 16:48.34 ---> saved as "feb5d34aa4c0b016b0f8f4add2b63563014264c710c4949d52148538c482e9b4" /home/opam: (run (network host) (shell "opam update --depexts")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bullseye InRelease - Hit:2 http://security.debian.org/debian-security bullseye-security InRelease - Hit:3 http://deb.debian.org/debian bullseye-updates InRelease - Reading package lists... - 2022-04-07 16:48.41 ---> saved as "c86ed51064279ac9cbe1ff1a24fe1290ad76c9176fe3c164d5dc9595d1e75d17" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam remove rankers.1.0.0 && opam install --deps-only --with-test rankers.1.0.0 && opam install -v --with-test rankers.1.0.0;\ \n res=$?;\ \n test \"$res\" != 31 && exit \"$res\";\ \n export OPAMCLI=2.0;\ \n build_dir=$(opam var prefix)/.opam-switch/build;\ \n failed=$(ls \"$build_dir\");\ \n for pkg in $failed; do\ \n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-11\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n done;\ \n exit 1")) The following actions will be performed: - remove rankers 1.0.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> removed rankers.1.0.0 Done. # Run eval $(opam env) to update the current shell environment Nothing to do. # Run eval $(opam env) to update the current shell environment The following actions will be performed: - install rankers 1.0.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/3: -> retrieved rankers.1.0.0 (cached) Processing 2/3: [rankers: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rankers" "-j" "31" (CWD=/home/opam/.opam/4.14/.opam-switch/build/rankers.1.0.0) - ocamlc src/.bwmine.eobjs/byte/myList.{cmi,cmo,cmt} - File "src/myList.ml", line 25, characters 14-30: - 25 | map of_str (BatString.nsplit s' ~by:";") - ^^^^^^^^^^^^^^^^ - Alert deprecated: BatString.nsplit - Use split_on_string instead. - ocamlopt src/.bwmine.eobjs/native/myList.{cmx,o} - File "src/myList.ml", line 25, characters 14-30: - 25 | map of_str (BatString.nsplit s' ~by:";") - ^^^^^^^^^^^^^^^^ - Alert deprecated: BatString.nsplit - Use split_on_string instead. -> compiled rankers.1.0.0 -> installed rankers.1.0.0 Done. # Run eval $(opam env) to update the current shell environment 2022-04-07 16:49.55 ---> saved as "c6662c23105b9ce39e8e59d2fd99c48c4187c65b710faecfc89a1b4261a295d9" Job succeeded 2022-04-07 16:50.44: Job succeeded