Build:
  1. 0
2026-03-14 08:54.12: New job: test quill.1.0.0~alpha3, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29490/head (c7120f7700de940264bc1dd56ab588b456e7e08d)
                              on macos-homebrew-ocaml-4.14/arm64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29490/head" && git reset --hard c7120f77
git fetch origin master
git merge --no-edit f2e7a221a1292ea740e9a0a91ce5d1499fda869a
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
USER 1000:1000
RUN ln -f ~/local/bin/opam-dev ~/local/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url -k local --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn quill.1.0.0~alpha3 1.0.0~alpha3
RUN opam reinstall quill.1.0.0~alpha3; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'quill.1.0.0~alpha3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test quill.1.0.0~alpha3) || true
RUN opam reinstall --with-test --verbose quill.1.0.0~alpha3; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'quill.1.0.0~alpha3' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-14 08:54.12: Using cache hint "macos-homebrew-ocaml-4.14-quill.1.0.0~alpha3-c7120f7700de940264bc1dd56ab588b456e7e08d"
2026-03-14 08:54.12: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (user (uid 1000) (gid 1000))
 (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
 (run (network host)
      (shell "opam init --reinit -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url -k local --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn quill.1.0.0~alpha3 1.0.0~alpha3"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell  "opam reinstall quill.1.0.0~alpha3;\
             \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        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'quill.1.0.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test quill.1.0.0~alpha3) || true"))
 (run (shell  "opam reinstall --with-test --verbose quill.1.0.0~alpha3;\
             \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        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'quill.1.0.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-14 08:54.12: Waiting for resource in pool OCluster
2026-03-14 08:54.14: Waiting for worker…
2026-03-14 10:13.34: Got resource from pool OCluster
Building on m1-worker-03
All commits already cached
Updating files:  63% (11743/18452)
Updating files:  64% (11810/18452)
Updating files:  65% (11994/18452)
Updating files:  66% (12179/18452)
Updating files:  67% (12363/18452)
Updating files:  68% (12548/18452)
Updating files:  69% (12732/18452)
Updating files:  70% (12917/18452)
Updating files:  71% (13101/18452)
Updating files:  72% (13286/18452)
Updating files:  73% (13470/18452)
Updating files:  74% (13655/18452)
Updating files:  75% (13839/18452)
Updating files:  76% (14024/18452)
Updating files:  77% (14209/18452)
Updating files:  78% (14393/18452)
Updating files:  79% (14578/18452)
Updating files:  80% (14762/18452)
Updating files:  81% (14947/18452)
Updating files:  82% (15131/18452)
Updating files:  83% (15316/18452)
Updating files:  84% (15500/18452)
Updating files:  85% (15685/18452)
Updating files:  86% (15869/18452)
Updating files:  87% (16054/18452)
Updating files:  88% (16238/18452)
Updating files:  89% (16423/18452)
Updating files:  90% (16607/18452)
Updating files:  91% (16792/18452)
Updating files:  92% (16976/18452)
Updating files:  93% (17161/18452)
Updating files:  94% (17345/18452)
Updating files:  95% (17530/18452)
Updating files:  96% (17714/18452)
Updating files:  97% (17899/18452)
Updating files:  98% (18083/18452)
Updating files:  99% (18268/18452)
Updating files: 100% (18452/18452)
Updating files: 100% (18452/18452), done.
HEAD is now at f2e7a221a1 Merge pull request #29531 from talex5/release-libinput-v0.1
Updating f2e7a221a1..c7120f7700
Fast-forward
 packages/brot/brot.1.0.0~alpha3/opam             | 50 ++++++++++++++++++
 packages/fehu/fehu.1.0.0~alpha3/opam             | 44 ++++++++++++++++
 packages/hugin/hugin.1.0.0~alpha3/opam           | 46 +++++++++++++++++
 packages/kaun-board/kaun-board.1.0.0~alpha3/opam | 47 +++++++++++++++++
 packages/kaun/kaun.1.0.0~alpha3/opam             | 47 +++++++++++++++++
 packages/nx/nx.1.0.0~alpha3/opam                 | 64 ++++++++++++++++++++++++
 packages/quill/quill.1.0.0~alpha3/opam           | 54 ++++++++++++++++++++
 packages/raven/raven.1.0.0~alpha3/opam           | 50 ++++++++++++++++++
 packages/rune/rune.1.0.0~alpha3/opam             | 50 ++++++++++++++++++
 packages/sowilo/sowilo.1.0.0~alpha3/opam         | 46 +++++++++++++++++
 packages/talon/talon.1.0.0~alpha3/opam           | 44 ++++++++++++++++
 11 files changed, 542 insertions(+)
 create mode 100644 packages/brot/brot.1.0.0~alpha3/opam
 create mode 100644 packages/fehu/fehu.1.0.0~alpha3/opam
 create mode 100644 packages/hugin/hugin.1.0.0~alpha3/opam
 create mode 100644 packages/kaun-board/kaun-board.1.0.0~alpha3/opam
 create mode 100644 packages/kaun/kaun.1.0.0~alpha3/opam
 create mode 100644 packages/nx/nx.1.0.0~alpha3/opam
 create mode 100644 packages/quill/quill.1.0.0~alpha3/opam
 create mode 100644 packages/raven/raven.1.0.0~alpha3/opam
 create mode 100644 packages/rune/rune.1.0.0~alpha3/opam
 create mode 100644 packages/sowilo/sowilo.1.0.0~alpha3/opam
 create mode 100644 packages/talon/talon.1.0.0~alpha3/opam

(from macos-homebrew-ocaml-4.14)
2026-03-14 10:13.33 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

/: (user (uid 1000) (gid 1000))

/: (run (shell "ln -f ~/local/bin/opam-dev ~/local/bin/opam"))
2026-03-14 10:13.33 ---> using "f20a31eccb94af52fa2a3ef86b723bc6460bac3d8a92b8861915540c2498d20a" from cache

/: (run (network host)
        (shell "opam init --reinit -ni"))
No configuration file found, using 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 version of opam requires an update to the layout of /Users/mac1000/.opam from version 2.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-03-14 10:13.33 ---> using "7818e224f85c11d1d318abe9ba4e297be345388b7ed476f912b6900c6bae56aa" from cache

/: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=arm64 os=macos os-distribution=homebrew os-version=15.5
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 7
# repositories         1 (version-controlled)
# pinned               0
# current-switch       4.14.2
# invariant            ["ocaml-base-compiler" {= "4.14.2"} | "ocaml-system" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /Users/mac1000/.opam/4.14.2/lib/ocaml/stublibs:/Users/mac1000/.opam/4.14.2/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-14 10:13.33 ---> using "625776f8b2f728a128171e2ba4372c97abd18632a07574a8412026e8be39dac5" from cache

/: (env OPAMDOWNLOADJOBS 1)

/: (env OPAMERRLOGLEN 0)

/: (env OPAMPRECISETRACKING 1)

/: (env CI true)

/: (env OPAM_REPO_CI true)

/: (run (shell "rm -rf opam-repository/"))
2026-03-14 10:13.34 ---> using "15fbb76bf7dee5d6e8ae583230339015a61d8d2d8397de2cfe6459f8ba421f1e" from cache

/: (copy (src .) (dst opam-repository/))
2026-03-14 10:13.35 ---> using "145a647f0df6825a39bd36aae7d8f82de8f53d2ce0c61c4aa1cbc6fab9444fb0" from cache

/: (run (shell "opam repository set-url -k local --strict default opam-repository/"))
[default] Initialised
2026-03-14 10:13.35 ---> using "e6498800f48f3c2e8daa1c678e23840c8f281cd23d6ee1c983768e110ed5e7a0" from cache

/: (run (network host)
        (shell "opam update --depexts || true"))
+ /opt/homebrew/bin/brew "update"
- ==> Updating Homebrew...
- ==> Downloading https://ghcr.io/v2/homebrew/core/portable-ruby/blobs/sha256:cef6f881f516d2cdbd0a5bfc7e20318da8b047cf2674ee27c5d4858d3ecd6430
- #=#=#                                                                          

                                                                           0.7%
#                                                                          1.6%
- 
#                                                                          2.4%
##                                                                         3.2%
##                                                                         4.1%
###                                                                        5.1%
####                                                                       5.8%
####                                                                       6.7%
#####                                                                      7.5%
#####                                                                      8.3%
######                                                                     9.1%
#######                                                                   10.0%
- 
#######                                                                   10.8%
########                                                                  11.5%
########                                                                  12.4%
#########                                                                 13.3%
##########                                                                14.1%
##########                                                                14.9%
###########                                                               15.8%
###########                                                               16.6%
############                                                              17.4%
#############                                                             18.3%
#############                                                             19.1%
- 
##############                                                            19.9%
##############                                                            20.8%
###############                                                           21.6%
################                                                          22.4%
################                                                          23.2%
#################                                                         24.0%
#################                                                         24.9%
##################                                                        25.7%
###################                                                       26.6%
###################                                                       27.4%
####################                                                      28.2%
####################                                                      29.1%
- 
#####################                                                     29.9%
######################                                                    30.7%
######################                                                    31.6%
#######################                                                   32.3%
#######################                                                   33.1%
########################                                                  34.0%
#########################                                                 34.8%
#########################                                                 35.5%
##########################                                                36.3%
##########################                                                37.1%
###########################                                               37.8%
- 
###########################                                               38.6%
############################                                              39.4%
############################                                              40.2%
#############################                                             40.9%
#############################                                             41.5%
##############################                                            41.9%
##############################                                            42.2%
##############################                                            42.6%
###############################                                           43.1%
###############################                                           43.5%
###############################                                           43.9%
- 
###############################                                           44.3%
################################                                          44.8%
################################                                          45.2%
################################                                          45.6%
#################################                                         46.0%
#################################                                         46.4%
#################################                                         46.8%
#################################                                         47.2%
##################################                                        47.7%
##################################                                        48.1%
##################################                                        48.4%
- 
###################################                                       48.8%
###################################                                       49.2%
###################################                                       49.8%
####################################                                      50.1%
####################################                                      50.5%
####################################                                      50.9%
####################################                                      51.3%
#####################################                                     51.8%
#####################################                                     52.2%
#####################################                                     52.6%
######################################                                    53.0%
- 
######################################                                    53.4%
######################################                                    53.9%
#######################################                                   54.3%
#######################################                                   54.7%
#######################################                                   55.1%
#######################################                                   55.5%
########################################                                  56.0%
########################################                                  56.4%
########################################                                  56.8%
#########################################                                 57.2%
#########################################                                 57.6%
#########################################                                 58.0%
- 
##########################################                                58.5%
##########################################                                58.8%
##########################################                                59.2%
##########################################                                59.6%
###########################################                               60.0%
###########################################                               60.5%
###########################################                               60.9%
############################################                              61.3%
############################################                              61.7%
############################################                              62.1%
############################################                              62.5%
- 
#############################################                             62.9%
#############################################                             63.4%
#############################################                             63.8%
##############################################                            64.2%
##############################################                            64.6%
##############################################                            65.1%
###############################################                           65.5%
###############################################                           65.9%
###############################################                           66.3%
################################################                          66.8%
################################################                          67.2%
- 
################################################                          67.6%
#################################################                         68.2%
#################################################                         69.1%
##################################################                        69.9%
##################################################                        70.3%
##################################################                        70.5%
##################################################                        70.8%
###################################################                       71.1%
###################################################                       71.2%
###################################################                       71.4%
- 
###################################################                       71.7%
###################################################                       71.8%
###################################################                       72.1%
####################################################                      72.4%
####################################################                      72.5%
####################################################                      72.8%
####################################################                      73.0%
####################################################                      73.1%
####################################################                      73.4%
#####################################################                     73.7%
#####################################################                     73.8%
- 
#####################################################                     74.1%
#####################################################                     74.3%
#####################################################                     74.4%
#####################################################                     74.7%
#####################################################                     74.9%
######################################################                    75.1%
######################################################                    75.3%
######################################################                    75.6%
######################################################                    75.7%
######################################################                    76.0%
- 
######################################################                    76.2%
######################################################                    76.4%
#######################################################                   76.6%
#######################################################                   76.8%
#######################################################                   77.0%
#######################################################                   77.2%
#######################################################                   77.4%
#######################################################                   77.7%
########################################################                  77.9%
########################################################                  78.1%
########################################################                  78.3%
- 
########################################################                  78.5%
########################################################                  78.7%
########################################################                  79.0%
#########################################################                 79.2%
#########################################################                 79.5%
#########################################################                 79.6%
#########################################################                 79.9%
#########################################################                 80.1%
#########################################################                 80.3%
#########################################################                 80.5%
##########################################################                80.8%
- 
##########################################################                80.9%
##########################################################                81.2%
##########################################################                81.4%
##########################################################                81.7%
###########################################################               82.0%
###########################################################               82.1%
###########################################################               82.4%
###########################################################               82.5%
###########################################################               82.7%
###########################################################               83.0%
- 
###########################################################               83.1%
############################################################              83.4%
############################################################              83.6%
############################################################              83.9%
############################################################              84.1%
############################################################              84.4%
############################################################              84.7%
#############################################################             84.9%
#############################################################             85.2%
#############################################################             85.5%
#############################################################             85.7%
- 
##############################################################            86.1%
##############################################################            86.4%
##############################################################            86.7%
##############################################################            86.9%
##############################################################            87.2%
##############################################################            87.4%
###############################################################           87.7%
###############################################################           88.1%
###############################################################           88.4%
###############################################################           88.6%
###############################################################           88.9%
- 
################################################################          89.1%
################################################################          89.4%
################################################################          89.7%
################################################################          90.1%
#################################################################         90.3%
#################################################################         90.5%
#################################################################         90.8%
#################################################################         91.1%
#################################################################         91.3%
##################################################################        91.7%
##################################################################        92.0%
- 
##################################################################        92.2%
##################################################################        92.5%
##################################################################        92.8%
###################################################################       93.2%
###################################################################       93.4%
###################################################################       93.7%
###################################################################       93.9%
###################################################################       94.2%
####################################################################      94.5%
####################################################################      94.8%
####################################################################      95.1%
- 
####################################################################      95.3%
####################################################################      95.6%
#####################################################################     95.9%
#####################################################################     96.3%
#####################################################################     96.5%
#####################################################################     96.8%
#####################################################################     97.0%
######################################################################    97.3%
######################################################################    97.6%
######################################################################    97.8%
- 
######################################################################    98.1%
######################################################################    98.5%
#######################################################################   98.7%
#######################################################################   99.0%
#######################################################################   99.3%
#######################################################################   99.5%
#######################################################################   99.9%
######################################################################## 100.0%
- ==> Pouring portable-ruby-4.0.1.arm64_big_sur.bottle.tar.gz
- ==> Homebrew collects anonymous analytics.
- Read the analytics documentation (and how to opt-out) here:
-   https://docs.brew.sh/Analytics
- No analytics have been recorded yet (nor will be during this `brew` run).
- 
- ==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
-   https://github.com/Homebrew/brew#donations
- 
- Already up-to-date.
2026-03-14 10:13.35 ---> using "2de7c76df2f8ef452ffd6248ed6b5e25403d22f3ce73f9edd2e6b32cfc57be12" from cache

/: (run (shell "opam pin add -k version -yn quill.1.0.0~alpha3 1.0.0~alpha3"))
quill is now pinned to version 1.0.0~alpha3
2026-03-14 10:13.35 ---> using "5b0af9addbd4d32a712fec38d9d44931f9e2cdfb19708cd233869e10b89d8168" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell  "opam reinstall quill.1.0.0~alpha3;\
               \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        partial_fails=\"\";\
               \n        for pkg in $failed; do\
               \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"macos-homebrew\\\"\"; then\
               \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
               \n          fi;\
               \n          test \"$pkg\" != 'quill.1.0.0~alpha3' && partial_fails=\"$partial_fails $pkg\";\
               \n        done;\
               \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
               \n        exit 1"))
quill.1.0.0~alpha3 is not installed. Install it? [Y/n] y
  * No agreement on the version of ocaml:
    - (invariant) -> ocaml-base-compiler = 4.14.2 -> ocaml = 4.14.2
    - quill >= 1.0.0~alpha3 -> ocaml >= 5.2.0
    You can temporarily relax the switch invariant with `--update-invariant'
  * No agreement on the version of ocaml-base-compiler:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - quill >= 1.0.0~alpha3 -> ocaml >= 5.2.0 -> ocaml-base-compiler >= 5.2.1~
  * Incompatible packages:
    - (invariant) -> ocaml-base-compiler = 4.14.2
    - quill >= 1.0.0~alpha3 -> ocaml >= 5.2.0 -> ocaml-variants >= 5.2.1~

No solution found, exiting
"/usr/bin/env" "bash" "-c" "opam reinstall quill.1.0.0~alpha3;
        res=$?;
        test "$res" != 31 && exit "$res";
        export OPAMCLI=2.0;
        build_dir=$(opam var prefix)/.opam-switch/build;
        failed=$(ls "$build_dir");
        partial_fails="";
        for pkg in $failed; do
          if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"macos-homebrew\""; then
            echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.";
          fi;
          test "$pkg" != 'quill.1.0.0~alpha3' && partial_fails="$partial_fails $pkg";
        done;
        test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}";
        exit 1" failed with exit status 20
2026-03-14 10:13.56: Job failed: Failed: Build failed
2026-03-14 10:13.56: Log analysis:
2026-03-14 10:13.56: >>> 
No solution found, exiting
 (score = 100)
2026-03-14 10:13.56: [SKIP] Package not available