(not at the head of any monitored branch or PR)
2025-12-15 03:22.26: New job: test kafka.0.4 with dune-configurator.3.21.0~alpha4, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29096/head (7d6af52f05e2c06c00193b2918193b6994ece701)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29096/head" && git reset --hard 7d6af52f
git fetch origin master
git merge --no-edit 2625e9877b44d517ad87b5bf4ff708f3e44b78d8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/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 --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune-configurator.3.21.0~alpha4 3.21.0~alpha4
RUN opam reinstall dune-configurator.3.21.0~alpha4; \
    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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune-configurator.3.21.0~alpha4' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall kafka.0.4; \
    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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'kafka.0.4' && 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 kafka.0.4) || true
RUN opam reinstall --with-test --verbose kafka.0.4; \
    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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'kafka.0.4' && 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 .

2025-12-15 03:22.26: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune-configurator.3.21.0~alpha4-kafka.0.4-7d6af52f05e2c06c00193b2918193b6994ece701"
2025-12-15 03:22.26: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -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 --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune-configurator.3.21.0~alpha4 3.21.0~alpha4"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune-configurator.3.21.0~alpha4;\
             \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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune-configurator.3.21.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall kafka.0.4;\
             \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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'kafka.0.4' && 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 kafka.0.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose kafka.0.4;\
             \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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'kafka.0.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-15 03:22.26: Waiting for resource in pool OCluster
2025-12-15 04:58.24: Waiting for worker…
2025-12-15 05:01.34: Got resource from pool OCluster
Building on clete
All commits already cached
HEAD is now at 2625e9877b Merge pull request #29094 from anmonteiro/patch-9
Updating 2625e9877b..7d6af52f05
Fast-forward
 .../chrome-trace/chrome-trace.3.21.0~alpha4/opam   | 41 ++++++++++++
 .../dune-action-plugin.3.21.0~alpha4/opam          | 54 ++++++++++++++++
 .../dune-build-info.3.21.0~alpha4/opam             | 47 ++++++++++++++
 .../dune-configurator.3.21.0~alpha4/opam           | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0~alpha4/opam    | 44 +++++++++++++
 .../dune-private-libs.3.21.0~alpha4/opam           | 52 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha4/opam   | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0~alpha4/opam      | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0~alpha4/opam    | 39 +++++++++++
 packages/dune/dune.3.21.0~alpha4/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0~alpha4/opam                | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0~alpha4/opam            | 41 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha4/opam  | 45 +++++++++++++
 packages/ordering/ordering.3.21.0~alpha4/opam      | 40 ++++++++++++
 packages/stdune/stdune.3.21.0~alpha4/opam          | 48 ++++++++++++++
 .../top-closure/top-closure.3.21.0~alpha4/opam     | 40 ++++++++++++
 packages/xdg/xdg.3.21.0~alpha4/opam                | 41 ++++++++++++
 17 files changed, 789 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha4/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha4/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha4/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha4/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha4/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha4/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha4/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha4/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0~alpha4/opam
 create mode 100644 packages/dune/dune.3.21.0~alpha4/opam
 create mode 100644 packages/dyn/dyn.3.21.0~alpha4/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0~alpha4/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha4/opam
 create mode 100644 packages/ordering/ordering.3.21.0~alpha4/opam
 create mode 100644 packages/stdune/stdune.3.21.0~alpha4/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0~alpha4/opam
 create mode 100644 packages/xdg/xdg.3.21.0~alpha4/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
2025-12-15 05:01.43 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-15 05:01.43 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" from cache

/home/opam: (run (network host)
                 (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 version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, 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] Initialised
2025-12-15 05:01.43 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" from cache

/home/opam: (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=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "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       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2025-12-15 05:01.43 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-12-15 05:01.43 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-15 05:01.44 ---> using "effd8012bb926235286407b71766f59239cdbd05eeb488dee8fd8b0266ec56c0" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-15 05:01.44 ---> using "da8e6b523210d6314ae3052775034fea74104aae3f193362b9609201bf93d1d2" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [84.8 kB]
- Fetched 176 kB in 0s (1254 kB/s)
- Reading package lists...
- 
2025-12-15 05:01.44 ---> using "cd39baac0c78bb4b886710bb093d6b750f25b1cabe39d7490bff23ee544310da" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune-configurator.3.21.0~alpha4 3.21.0~alpha4"))
dune-configurator is now pinned to version 3.21.0~alpha4
2025-12-15 05:01.44 ---> using "7b3cd474b666dc4464c9a9a15760409261404712b0a9534f47f427b10a91e917" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune-configurator.3.21.0~alpha4;\
                        \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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune-configurator.3.21.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune-configurator.3.21.0~alpha4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install csexp             1.5.2                  [required by dune-configurator]
  - install dune              3.21.0~alpha4          [required by dune-configurator]
  - install dune-configurator 3.21.0~alpha4 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.0~alpha4, dune-configurator.3.21.0~alpha4  (cached)
-> installed dune.3.21.0~alpha4
-> installed csexp.1.5.2
-> installed dune-configurator.3.21.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 05:01.44 ---> using "4381dc27198c5878c4abc161632636ac362e5f10b007d48ac6d7fc7662ba7d0f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall kafka.0.4;\
                        \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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'kafka.0.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
kafka.0.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install base-bytes    base                      [required by ocplib-endian]
  - install cmdliner      1.3.0                     [required by kafka]
  - install cppo          1.8.0                     [required by lwt]
  - install jbuilder      1.0+beta20.2 (deprecated) [required by kafka]
  - install kafka         0.4
  - install lwt           5.9.2                     [required by kafka]
  - install ocamlfind     1.9.8                     [required by base-bytes]
  - install ocplib-endian 1.2                       [required by lwt]

The following system packages will first need to be installed:
    librdkafka-dev zlib1g-dev

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "librdkafka-dev" "zlib1g-dev"
- Selecting previously unselected package comerr-dev: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 ... 20622 files and directories currently installed.)
- Preparing to unpack .../00-comerr-dev_2.1-1.47.2-3+b3_amd64.deb ...
- Unpacking comerr-dev:amd64 (2.1-1.47.2-3+b3) ...
- Selecting previously unselected package libgssrpc4t64:amd64.
- Preparing to unpack .../01-libgssrpc4t64_1.21.3-5_amd64.deb ...
- Unpacking libgssrpc4t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5clnt-mit12:amd64.
- Preparing to unpack .../02-libkadm5clnt-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkdb5-10t64:amd64.
- Preparing to unpack .../03-libkdb5-10t64_1.21.3-5_amd64.deb ...
- Unpacking libkdb5-10t64:amd64 (1.21.3-5) ...
- Selecting previously unselected package libkadm5srv-mit12:amd64.
- Preparing to unpack .../04-libkadm5srv-mit12_1.21.3-5_amd64.deb ...
- Unpacking libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Selecting previously unselected package krb5-multidev:amd64.
- Preparing to unpack .../05-krb5-multidev_1.21.3-5_amd64.deb ...
- Unpacking krb5-multidev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libbrotli-dev:amd64.
- Preparing to unpack .../06-libbrotli-dev_1.1.0-2+b7_amd64.deb ...
- Unpacking libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Selecting previously unselected package libidn2-dev:amd64.
- Preparing to unpack .../07-libidn2-dev_2.3.8-2_amd64.deb ...
- Unpacking libidn2-dev:amd64 (2.3.8-2) ...
- Selecting previously unselected package libkrb5-dev:amd64.
- Preparing to unpack .../08-libkrb5-dev_1.21.3-5_amd64.deb ...
- Unpacking libkrb5-dev:amd64 (1.21.3-5) ...
- Selecting previously unselected package libldap-dev:amd64.
- Preparing to unpack .../09-libldap-dev_2.6.10+dfsg-1_amd64.deb ...
- Unpacking libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../10-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../11-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../12-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package libnghttp2-dev:amd64.
- Preparing to unpack .../13-libnghttp2-dev_1.64.0-1.1_amd64.deb ...
- Unpacking libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Selecting previously unselected package libnghttp3-dev:amd64.
- Preparing to unpack .../14-libnghttp3-dev_1.8.0-1_amd64.deb ...
- Unpacking libnghttp3-dev:amd64 (1.8.0-1) ...
- Selecting previously unselected package libpsl-dev:amd64.
- Preparing to unpack .../15-libpsl-dev_0.21.2-1.1+b1_amd64.deb ...
- Unpacking libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../16-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../17-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libevent-2.1-7t64:amd64.
- Preparing to unpack .../18-libevent-2.1-7t64_2.1.12-stable-10+b1_amd64.deb ...
- Unpacking libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Selecting previously unselected package libunbound8:amd64.
- Preparing to unpack .../19-libunbound8_1.22.0-2+deb13u1_amd64.deb ...
- Unpacking libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Selecting previously unselected package libgnutls-dane0t64:amd64.
- Preparing to unpack .../20-libgnutls-dane0t64_3.8.9-3_amd64.deb ...
- Unpacking libgnutls-dane0t64:amd64 (3.8.9-3) ...
- Selecting previously unselected package libgnutls-openssl27t64:amd64.
- Preparing to unpack .../21-libgnutls-openssl27t64_3.8.9-3_amd64.deb ...
- Unpacking libgnutls-openssl27t64:amd64 (3.8.9-3) ...
- Selecting previously unselected package libp11-kit-dev:amd64.
- Preparing to unpack .../22-libp11-kit-dev_0.25.5-3_amd64.deb ...
- Unpacking libp11-kit-dev:amd64 (0.25.5-3) ...
- Selecting previously unselected package libtasn1-6-dev:amd64.
- Preparing to unpack .../23-libtasn1-6-dev_4.20.0-2_amd64.deb ...
- Unpacking libtasn1-6-dev:amd64 (4.20.0-2) ...
- Selecting previously unselected package nettle-dev:amd64.
- Preparing to unpack .../24-nettle-dev_3.10.1-1_amd64.deb ...
- Unpacking nettle-dev:amd64 (3.10.1-1) ...
- Selecting previously unselected package libgnutls28-dev:amd64.
- Preparing to unpack .../25-libgnutls28-dev_3.8.9-3_amd64.deb ...
- Unpacking libgnutls28-dev:amd64 (3.8.9-3) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../26-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Selecting previously unselected package librtmp-dev:amd64.
- Preparing to unpack .../27-librtmp-dev_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
- Unpacking librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Selecting previously unselected package libssl-dev:amd64.
- Preparing to unpack .../28-libssl-dev_3.5.4-1~deb13u1_amd64.deb ...
- Unpacking libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Selecting previously unselected package libssh2-1-dev:amd64.
- Preparing to unpack .../29-libssh2-1-dev_1.11.1-1_amd64.deb ...
- Unpacking libssh2-1-dev:amd64 (1.11.1-1) ...
- Selecting previously unselected package libzstd-dev:amd64.
- Preparing to unpack .../30-libzstd-dev_1.5.7+dfsg-1_amd64.deb ...
- Unpacking libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Selecting previously unselected package libcurl4-openssl-dev:amd64.
- Preparing to unpack .../31-libcurl4-openssl-dev_8.14.1-2+deb13u2_amd64.deb ...
- Unpacking libcurl4-openssl-dev:amd64 (8.14.1-2+deb13u2) ...
- Selecting previously unselected package libxxhash-dev:amd64.
- Preparing to unpack .../32-libxxhash-dev_0.8.3-2_amd64.deb ...
- Unpacking libxxhash-dev:amd64 (0.8.3-2) ...
- Selecting previously unselected package liblz4-dev:amd64.
- Preparing to unpack .../33-liblz4-dev_1.10.0-4_amd64.deb ...
- Unpacking liblz4-dev:amd64 (1.10.0-4) ...
- Selecting previously unselected package librdkafka1:amd64.
- Preparing to unpack .../34-librdkafka1_2.8.0-1_amd64.deb ...
- Unpacking librdkafka1:amd64 (2.8.0-1) ...
- Selecting previously unselected package librdkafka++1:amd64.
- Preparing to unpack .../35-librdkafka++1_2.8.0-1_amd64.deb ...
- Unpacking librdkafka++1:amd64 (2.8.0-1) ...
- Selecting previously unselected package libsasl2-dev.
- Preparing to unpack .../36-libsasl2-dev_2.1.28+dfsg1-9_amd64.deb ...
- Unpacking libsasl2-dev (2.1.28+dfsg1-9) ...
- Selecting previously unselected package librdkafka-dev:amd64.
- Preparing to unpack .../37-librdkafka-dev_2.8.0-1_amd64.deb ...
- Unpacking librdkafka-dev:amd64 (2.8.0-1) ...
- Selecting previously unselected package libtasn1-doc.
- Preparing to unpack .../38-libtasn1-doc_4.20.0-2_all.deb ...
- Unpacking libtasn1-doc (4.20.0-2) ...
- Setting up libgnutls-openssl27t64:amd64 (3.8.9-3) ...
- Setting up libzstd-dev:amd64 (1.5.7+dfsg-1) ...
- Setting up libtasn1-doc (4.20.0-2) ...
- Setting up libevent-2.1-7t64:amd64 (2.1.12-stable-10+b1) ...
- Setting up libpsl-dev:amd64 (0.21.2-1.1+b1) ...
- Setting up libunbound8:amd64 (1.22.0-2+deb13u1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgnutls-dane0t64:amd64 (3.8.9-3) ...
- Setting up libgssrpc4t64:amd64 (1.21.3-5) ...
- Setting up libldap-dev:amd64 (2.6.10+dfsg-1) ...
- Setting up comerr-dev:amd64 (2.1-1.47.2-3+b3) ...
- Setting up libssl-dev:amd64 (3.5.4-1~deb13u1) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libidn2-dev:amd64 (2.3.8-2) ...
- Setting up librdkafka1:amd64 (2.8.0-1) ...
- Setting up libxxhash-dev:amd64 (0.8.3-2) ...
- Setting up libnghttp3-dev:amd64 (1.8.0-1) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libtasn1-6-dev:amd64 (4.20.0-2) ...
- Setting up libbrotli-dev:amd64 (1.1.0-2+b7) ...
- Setting up libp11-kit-dev:amd64 (0.25.5-3) ...
- Setting up libkadm5clnt-mit12:amd64 (1.21.3-5) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up nettle-dev:amd64 (3.10.1-1) ...
- Setting up libkdb5-10t64:amd64 (1.21.3-5) ...
- Setting up librdkafka++1:amd64 (2.8.0-1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libsasl2-dev (2.1.28+dfsg1-9) ...
- Setting up liblz4-dev:amd64 (1.10.0-4) ...
- Setting up libssh2-1-dev:amd64 (1.11.1-1) ...
- Setting up libkadm5srv-mit12:amd64 (1.21.3-5) ...
- Setting up krb5-multidev:amd64 (1.21.3-5) ...
- Setting up libgnutls28-dev:amd64 (3.8.9-3) ...
- Setting up libnghttp2-dev:amd64 (1.64.0-1.1) ...
- Setting up libkrb5-dev:amd64 (1.21.3-5) ...
- Setting up librtmp-dev:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
- Setting up libcurl4-openssl-dev:amd64 (8.14.1-2+deb13u2) ...
- Setting up librdkafka-dev:amd64 (2.8.0-1) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved jbuilder.1.0+beta20.2  (cached)
-> retrieved kafka.0.4  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed cppo.1.8.0
-> installed cmdliner.1.3.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocplib-endian.1.2
-> installed lwt.5.9.2
-> installed jbuilder.1.0+beta20.2
-> installed kafka.0.4
Done.

<><> jbuilder.1.0+beta20.2 installed successfully <><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 05:02.09 ---> saved as "9c30298ca47e0359ed4fa32bff542d38481c14ebb4eacfcd8238b02b102cf853"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test kafka.0.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile kafka 0.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved kafka.0.4  (https://opam.ocaml.org/cache)
-> removed   kafka.0.4
-> installed kafka.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 05:02.16 ---> saved as "5276c0c5a612f4838856788e2788b2abfb758a771695520ff40ac285757e166b"

/home/opam: (run (shell  "opam reinstall --with-test --verbose kafka.0.4;\
                        \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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'kafka.0.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile kafka 0.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [kafka.0.4: extract]
-> retrieved kafka.0.4  (cached)
Processing  2/4: [kafka: jbuilder build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "jbuilder" "build" "-p" "kafka" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/kafka.0.4)
-       ocamlc bin/.sendto_kafka_topic.eobjs/sendto_kafka_topic.{cmi,cmo,cmt}
- File "bin/sendto_kafka_topic.ml", line 12, characters 2-11:
- 12 |   Term.info "sendto_kafka_topic" ~doc ~man
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/sendto_kafka_topic.ml", line 45, characters 27-31:
- 45 | let sendto_topic_t = Term.(pure sendto_topic $ brokers $ topic $ partition)
-                                 ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/sendto_kafka_topic.ml", line 48, characters 8-17:
- 48 |   match Term.eval (sendto_topic_t, info) with
-              ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
-       ocamlc bin/.sendto_kafka_topic.eobjs/tail_kafka_topic.{cmi,cmo,cmt}
- File "bin/tail_kafka_topic.ml", line 15, characters 2-11:
- 15 |   Term.info "tail_kafka_topic" ~doc ~man
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/tail_kafka_topic.ml", line 76, characters 25-29:
- 76 | let tail_topic_t = Term.(pure tail_topic $ brokers $ msg_count $ timeout_ms $ topic $ partition $ offset)
-                               ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/tail_kafka_topic.ml", line 79, characters 8-17:
- 79 |   match Term.eval (tail_topic_t, info) with
-              ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
-     ocamlopt bin/.sendto_kafka_topic.eobjs/sendto_kafka_topic.{cmx,o}
- File "bin/sendto_kafka_topic.ml", line 12, characters 2-11:
- 12 |   Term.info "sendto_kafka_topic" ~doc ~man
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/sendto_kafka_topic.ml", line 45, characters 27-31:
- 45 | let sendto_topic_t = Term.(pure sendto_topic $ brokers $ topic $ partition)
-                                 ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/sendto_kafka_topic.ml", line 48, characters 8-17:
- 48 |   match Term.eval (sendto_topic_t, info) with
-              ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
-     ocamlopt bin/.sendto_kafka_topic.eobjs/tail_kafka_topic.{cmx,o}
- File "bin/tail_kafka_topic.ml", line 15, characters 2-11:
- 15 |   Term.info "tail_kafka_topic" ~doc ~man
-        ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- File "bin/tail_kafka_topic.ml", line 76, characters 25-29:
- 76 | let tail_topic_t = Term.(pure tail_topic $ brokers $ msg_count $ timeout_ms $ topic $ partition $ offset)
-                               ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- File "bin/tail_kafka_topic.ml", line 79, characters 8-17:
- 79 |   match Term.eval (tail_topic_t, info) with
-              ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
-       ocamlc lib_lwt/ocaml_lwt_kafka.o
- ocaml_lwt_kafka.c: In function 'worker_consume':
- ocaml_lwt_kafka.c:48:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-    48 |   job->rd_errno = (job->message)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
-       |   ^~~
- In file included from ocaml_lwt_kafka.c:6:
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'worker_consume_queue':
- ocaml_lwt_kafka.c:113:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   113 |   job->rd_errno = (job->message)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
-       |   ^~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'result_consume_queue':
- ocaml_lwt_kafka.c:128:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   128 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'worker_consume_batch':
- ocaml_lwt_kafka.c:181:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   181 |   job->rd_errno = (job->actual_msg_count>=0)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
-       |   ^~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_lwt_kafka.c: In function 'worker_consume_batch_queue':
- ocaml_lwt_kafka.c:256:3: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   256 |   job->rd_errno = (job->actual_msg_count>=0)?RD_KAFKA_RESP_ERR_NO_ERROR:rd_kafka_errno2err(errno);
-       |   ^~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
-       ocamlc lib/ocaml_kafka.o
- ocaml_kafka.c: In function 'ocaml_kafka_raise':
- ocaml_kafka.c:90:23: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-    90 |     exception_handler = caml_named_value("kafka.error");
-       |                       ^
- ocaml_kafka.c: In function 'alloc_caml_handler':
- ocaml_kafka.c:110:13: warning: "alloc_small" is deprecated: use "caml_alloc_small" instead
-   110 |   caml_handler = alloc_small(1, Abstract_tag);
-       |             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                               
- ocaml_kafka.c: In function 'ocaml_kafka_delivery_callback':
- ocaml_kafka.c:200:18: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
-   200 |     int msg_id = (int) msg_opaque;      // has been set by ocaml_kafka_produce
-       |                  ^
- In file included from /home/opam/.opam/4.14/lib/ocaml/caml/memory.h:31,
-                  from ocaml_kafka.c:1:
- ocaml_kafka.c: In function 'ocaml_kafka_handler_name':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:272:10: note: in expansion of macro 'String_val'
-   272 |   memcpy(String_val(caml_name), name, len);
-       |          ^~~~~~~~~~
- In file included from ocaml_kafka.c:7:
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
-    43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
-       |                      ~~~~~~~~~~~~~~~~~^~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_partitioner_callback':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:286:10: note: in expansion of macro 'String_val'
-   286 |   memcpy(String_val(caml_key), key, keylen);
-       |          ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
-    43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
-       |                      ~~~~~~~~~~~~~~~~~^~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_new_topic':
- ocaml_kafka.c:317:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   317 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- In file included from ocaml_kafka.c:10:
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_start':
- ocaml_kafka.c:361:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   361 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_stop':
- ocaml_kafka.c:377:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   377 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_extract_topic_message':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:392:12: note: in expansion of macro 'String_val'
-   392 |     memcpy(String_val(caml_msg_payload), message->payload, message->len);
-       |            ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
-    43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
-       |                      ~~~~~~~~~~~~~~~~~^~~~~~
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:24: warning: passing argument 1 of 'memcpy' discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ~^~~~~~~~~~~~~~~~~~~~~~~~~
- ocaml_kafka.c:397:14: note: in expansion of macro 'String_val'
-   397 |       memcpy(String_val(caml_key_payload), message->key, message->key_len);
-       |              ^~~~~~~~~~
- /usr/include/string.h:43:39: note: expected 'void * restrict' but argument is of type 'const char *'
-    43 | extern void *memcpy (void *__restrict __dest, const void *__restrict __src,
-       |                      ~~~~~~~~~~~~~~~~~^~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume':
- ocaml_kafka.c:474:5: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   474 |     rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |     ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_batch':
- ocaml_kafka.c:511:5: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   511 |     rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |     ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_produce':
- /home/opam/.opam/4.14/lib/ocaml/caml/mlvalues.h:290:23: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   290 | #define String_val(x) ((const char *) Bp_val(x))
-       |                       ^
- ocaml_kafka.c:527:19: note: in expansion of macro 'String_val'
-   527 |   void* payload = String_val(caml_msg);
-       |                   ^~~~~~~~~~
- ocaml_kafka.c:534:10: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
-   534 |      key = String_val(caml_key);
-       |          ^
- ocaml_kafka.c:540:97: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
-   540 |   int err = rd_kafka_produce(topic, partition, RD_KAFKA_MSG_F_COPY, payload, len, key, key_len, (void *)msg_id);
-       |                                                                                                 ^
- ocaml_kafka.c:542:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   542 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_new_queue':
- ocaml_kafka.c:614:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   614 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_start_queue':
- ocaml_kafka.c:670:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   670 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_queue':
- ocaml_kafka.c:759:6: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   759 |      rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |      ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
- ocaml_kafka.c: In function 'ocaml_kafka_consume_batch_queue':
- ocaml_kafka.c:795:5: warning: 'rd_kafka_errno2err' is deprecated [-Wdeprecated-declarations]
-   795 |     rd_kafka_resp_err_t rd_errno = rd_kafka_errno2err(errno);
-       |     ^~~~~~~~~~~~~~~~~~~
- /usr/include/librdkafka/rdkafka.h:754:45: note: declared here
-   754 | RD_EXPORT RD_DEPRECATED rd_kafka_resp_err_t rd_kafka_errno2err(int errnox);
-       |                                             ^~~~~~~~~~~~~~~~~~
-> compiled  kafka.0.4
-> removed   kafka.0.4
-> installed kafka.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 05:02.24 ---> saved as "b6da2d33046d17096623ac9ef07421b6a43138180f432c246df64271cbb8644e"
Job succeeded
2025-12-15 05:02.33: Job succeeded