Organisationsahrefsmonorobote162a5 ()macos-homebrew-4.14_arm64_opam-2.3

macos-homebrew-4.14_arm64_opam-2.3

Link Copied
Code Copied

Logs

2024-12-17 17:53.52: New job: test ahrefs/monorobot https://github.com/ahrefs/monorobot.git#refs/heads/master (e162a5a1ea1bbf2815e87f997d3460807ddb679d) (macos-arm64:macos-homebrew-4.14_arm64_opam-2.3)
Base: macos-homebrew-ocaml-4.14
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/ahrefs/monorobot.git" -b "master" && cd "monorobot" && git reset --hard e162a5a1
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
# macos-homebrew-4.14_arm64_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
RUN ln -f ~/local/bin/opam-2.3 ~/local/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
RUN cd ~/opam-repository && (git cat-file -e 6c451c23d3f38b338781a3f9cdbf4390a837665b || git fetch origin master) && git reset -q --hard 6c451c23d3f38b338781a3f9cdbf4390a837665b && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 monorobot.opam ./src/./
RUN opam pin add -yn monorobot.dev './src/./'
RUN echo '(lang dune 3.0)' > './src/./dune-project'
ENV DEPS="angstrom.0.16.1 astring.0.8.5 atd.2.15.0 atdgen.2.15.0 atdgen-runtime.2.15.0 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigarray-compat.1.1.0 bigstringaf.0.10.0 bin_prot.v0.16.0 biniou.1.2.2 camlp-streams.5.0.1 camlzip.1.13 cmdliner.1.3.0 conf-bash.1 conf-g++.1.0 conf-gmp.4 conf-libcurl.2 conf-libevent.1 conf-libpcre.2 conf-pkg-config.3 conf-zlib.1 core.v0.16.2 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 devkit.1.20240429 dune.3.17.0 dune-configurator.3.17.0 easy-format.1.3.4 extlib.1.8.0 extunix.0.4.3 fieldslib.v0.16.0 hex.1.5.0 host-arch-arm64.1 host-system-other.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 jane_rope.v0.16.0 jst-config.v0.16.0 libevent.0.9.0 lwt.5.9.0 lwt_ppx.5.8.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.5-1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ocurl.0.9.2 omd.1.3.2 ounit2.2.2.7 parsexp.v0.16.0 pcre.7.5.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.33.0 re.1.12.0 re2.v0.16.0 regex_parser_intf.v0.16.0 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 time_now.v0.16.0 topkg.1.0.7 trace.0.8 typerep.v0.16.0 uri.4.4.0 variantslib.v0.16.0 yojson.2.2.2 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.3 --depext-only -y monorobot.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . ./src
RUN cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2024-12-17 17:53.52: Using cache hint "ahrefs/monorobot-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_arm64_opam-2.3-a2770809d2889ee2f5253539bee3248b"
2024-12-17 17:53.52: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
(comment macos-homebrew-4.14_arm64_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 6c451c23d3f38b338781a3f9cdbf4390a837665b || git fetch origin master) && git reset -q --hard 6c451c23d3f38b338781a3f9cdbf4390a837665b && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src monorobot.opam) (dst ./src/./))
(run (network host)
(shell "opam pin add -yn monorobot.dev './src/./'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))
(env DEPS "angstrom.0.16.1 astring.0.8.5 atd.2.15.0 atdgen.2.15.0 atdgen-runtime.2.15.0 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigarray-compat.1.1.0 bigstringaf.0.10.0 bin_prot.v0.16.0 biniou.1.2.2 camlp-streams.5.0.1 camlzip.1.13 cmdliner.1.3.0 conf-bash.1 conf-g++.1.0 conf-gmp.4 conf-libcurl.2 conf-libevent.1 conf-libpcre.2 conf-pkg-config.3 conf-zlib.1 core.v0.16.2 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 devkit.1.20240429 dune.3.17.0 dune-configurator.3.17.0 easy-format.1.3.4 extlib.1.8.0 extunix.0.4.3 fieldslib.v0.16.0 hex.1.5.0 host-arch-arm64.1 host-system-other.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 jane_rope.v0.16.0 jst-config.v0.16.0 libevent.0.9.0 lwt.5.9.0 lwt_ppx.5.8.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.5-1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ocurl.0.9.2 omd.1.3.2 ounit2.2.2.7 parsexp.v0.16.0 pcre.7.5.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.33.0 re.1.12.0 re2.v0.16.0 regex_parser_intf.v0.16.0 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 time_now.v0.16.0 topkg.1.0.7 trace.0.8 typerep.v0.16.0 uri.4.4.0 variantslib.v0.16.0 yojson.2.2.2 zarith.1.14")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam update --depexts && opam install --cli=2.3 --depext-only -y monorobot.dev $DEPS"))
(run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst ./src))
(run (shell "cd ./src && opam exec -- dune build @install @check @runtest && rm -rf _build"))
)


2024-12-17 17:53.52: Waiting for resource in pool OCluster
2024-12-17 17:53.53: Waiting for worker…
2024-12-17 17:53.53: Got resource from pool OCluster
Building on m1-worker-04
HEAD is now at d2f47e3 Handle steps state per build (#167)
HEAD is now at e162a5a small cleanup on the code


(from macos-homebrew-ocaml-4.14)
2024-12-17 17:58.10 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache


/: (comment macos-homebrew-4.14_arm64_opam-2.3)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (run (shell "ln -f ~/local/bin/opam-2.3 ~/local/bin/opam"))
2024-12-17 17:58.10 ---> using "d185bb362ab7a62e22c76fe28c4578fe7a4e17f7cc7bc09a3073972dfb5efd3b" from cache


/: (run (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
2024-12-17 17:58.11 ---> using "1a239dab0512a5f76e4948de67b26faca67b4de935df003aa7f81d4e2d68958d" from cache


/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Darwin 23.4.0
The OCaml toplevel, version 4.14.2
2.3.0
2024-12-17 17:58.11 ---> using "f52eecff7be584d99550d2f8c42b8f22f9135c2276c46c827a485f089226c5ac" from cache


/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 6c451c23d3f38b338781a3f9cdbf4390a837665b || git fetch origin master) && git reset -q --hard 6c451c23d3f38b338781a3f9cdbf4390a837665b && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
11bdbee611..1564116a82  master     -> origin/master
6c451c23d3 Merge pull request #27123 from raphael-proust/fix-lwt-ppx-uses-reraise


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///Users/mac1000/opam-repository


Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).


The following packages are not being upgraded because the new versions conflict with other installed packages:
- ocaml.5.4.0
- ocaml-config.3
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2024-12-17 17:58.11 ---> using "053bb611be0e6431f8282525de7f2f4e00531da4ed8a9712a876e079fdc4457b" from cache


/: (copy (src monorobot.opam) (dst ./src/./))
2024-12-17 17:58.11 ---> using "faf386179ececaa879cfdad047df894ee9075506e471031537cb9fe1b6d5b449" from cache


/: (run (network host)
(shell "opam pin add -yn monorobot.dev './src/./'"))
[monorobot.dev] synchronised (file:///Users/mac1000/src)
monorobot is now pinned to file:///Users/mac1000/src (version dev)
2024-12-17 17:58.11 ---> using "23a0a8551ae57571ff4c9b076b8caaae107db0ff122dc0bf8e18932733662865" from cache


/: (run (network host)
(shell "echo '(lang dune 3.0)' > './src/./dune-project'"))
2024-12-17 17:58.11 ---> using "d0d69535c93dd8dc5c0acf03573d46e3981c624f627252ac2cbcbb7dd500fdf0" from cache


/: (env DEPS "angstrom.0.16.1 astring.0.8.5 atd.2.15.0 atdgen.2.15.0 atdgen-runtime.2.15.0 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bigarray-compat.1.1.0 bigstringaf.0.10.0 bin_prot.v0.16.0 biniou.1.2.2 camlp-streams.5.0.1 camlzip.1.13 cmdliner.1.3.0 conf-bash.1 conf-g++.1.0 conf-gmp.4 conf-libcurl.2 conf-libevent.1 conf-libpcre.2 conf-pkg-config.3 conf-zlib.1 core.v0.16.2 cppo.1.8.0 cpuid.0.1.2 csexp.1.5.2 cstruct.6.0.1 cstruct-lwt.6.0.1 devkit.1.20240429 dune.3.17.0 dune-configurator.3.17.0 easy-format.1.3.4 extlib.1.8.0 extunix.0.4.3 fieldslib.v0.16.0 hex.1.5.0 host-arch-arm64.1 host-system-other.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 jane_rope.v0.16.0 jst-config.v0.16.0 libevent.0.9.0 lwt.5.9.0 lwt_ppx.5.8.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-no-solo5.1 mirage-no-xen.1 nocrypto.0.5.4-2 num.1.5-1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocb-stubblr.0.1.1-1 ocplib-endian.1.2 ocurl.0.9.2 omd.1.3.2 ounit2.2.2.7 parsexp.v0.16.0 pcre.7.5.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_deriving.6.0.3 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.1 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.33.0 re.1.12.0 re2.v0.16.0 regex_parser_intf.v0.16.0 seq.base sexplib.v0.16.0 sexplib0.v0.16.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 time_now.v0.16.0 topkg.1.0.7 trace.0.8 typerep.v0.16.0 uri.4.4.0 variantslib.v0.16.0 yojson.2.2.2 zarith.1.14")


/: (env CI true)


/: (env OCAMLCI true)


/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam update --depexts && opam install --cli=2.3 --depext-only -y monorobot.dev $DEPS"))
+ /opt/homebrew/bin/brew "update"
- ==> Updating Homebrew...
- Already up-to-date.


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[monorobot.dev] synchronised (file:///Users/mac1000/src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-arm64 is already installed (current version is 1).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
curl gcc gmp libevent pcre pkgconf zlib


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


+ /opt/homebrew/bin/brew "install" "curl" "gcc" "gmp" "libevent" "pcre" "pkgconf" "zlib"
- ==> Downloading https://ghcr.io/v2/homebrew/core/curl/manifests/8.11.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/61df71e02ca58da381c0865df2e9a626c1a7661146caad4cbce6bf102bdc045a--curl-8.11.1.bottle_manifest.json
- ==> Fetching dependencies for curl: brotli, libnghttp2, ca-certificates, openssl@3, libssh2, rtmpdump, lz4, xz and zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/565098509cdfa90593ec9a41b41239f073843f88caed60ddaa3e6194ac4defda--brotli-1.1.0-1.bottle_manifest.json
- ==> Fetching brotli
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/blobs/sha256:2a95140d61198e3153ff27d8847b76dd34162f6e6e39f3e0f34d2b3a3e4f15dd
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b3852b9f89602b27a98dbdfbcb74ccadfe3ee37647a8643e70d9b71de1e2d621--brotli--1.1.0.arm64_sonoma.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.64.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ca092fa9d99f26d52103722d42230c00f21eb8a4a36bf1d40fc9d5f798562d92--libnghttp2-1.64.0.bottle_manifest.json
- ==> Fetching libnghttp2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/blobs/sha256:13eddf43c08a660b4efb246dae54ef46fedb6cb083a916fa4900a6906297fd2f
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f1b45e06a4c2fece03bc18485af6ae774831af83c7b781b9bbc41110887866f6--libnghttp2--1.64.0.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2024-11-26
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e16b55434e8bc1472ffb41e1a71c1b853417578c631fa1b69e8730f8cafca76c--ca-certificates-2024-11-26.bottle_manifest.json
- ==> Fetching ca-certificates
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/blobs/sha256:7a3b5f75ca44d330e0f37432af09f58e37bfa873f25d340dece3c3e6c7927657
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/441f4a48c55787e61944fdd00bf201b06259c9254248253d85dc3cfe0929a73a--ca-certificates--2024-11-26.all.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.4.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a8a169d38329b14f967d497d0ea77eee6dc5444175093fc7b26026b357e81736--openssl@3-3.4.0.bottle_manifest.json
- ==> Fetching openssl@3
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/blobs/sha256:706b2f224c9519816d987e28ecfae9cfb41d99b728e237ef98fa1c0698d1f626
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e6b9a3499de574de4a16b9db9b8c36dd341f53c81493dcdbe25113c80933ee0b--openssl@3--3.4.0.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libssh2/manifests/1.11.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6d2495eb2b5f37f7931b23940ceb29db14a4742a49d1d8cce26964ad91a03f26--libssh2-1.11.1.bottle_manifest.json
- ==> Fetching libssh2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libssh2/blobs/sha256:2e6ffae575cf6e8335026f209f24c8a12250afa093e7a49577ee95c3bb781554
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/9ba186c7a1a9773adff4965fb98340e2ff1a25dcd667d696d0c8e7b28debaca9--libssh2--1.11.1.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/rtmpdump/manifests/2.4-20151223_3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b40cb4d6b301aad8ce26f9deb74a74c0d98d1868d19881f9bff55b81d6f11e50--rtmpdump-2.4-20151223_3.bottle_manifest.json
- ==> Fetching rtmpdump
- ==> Downloading https://ghcr.io/v2/homebrew/core/rtmpdump/blobs/sha256:fc5748b95d47c39bb4d633090cc0a7b5fe90bda5ef163fa5b8809272c9bf4618
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/29a8b94b6f773b8a95202fd7e8c6f0ddbb98973233725e67691f3a939d449587--rtmpdump--2.4-20151223_3.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/manifests/1.10.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8e11e90eb21a06e0f199af9d80e011e3693c77dd353b2477579d95c8471a5802--lz4-1.10.0-1.bottle_manifest.json
- ==> Fetching lz4
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/blobs/sha256:6590245dc4a919c46afa16366914cd4b5c0c4a8f4fb35a4f6ab89053f289ae5d
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a55f61ddbdff069a1efe8a91355fe7541dc2dd53cddb6ab925c6af8d6b7de045--lz4--1.10.0.arm64_sonoma.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.6.3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e68799185cc17334108ba286ba8c3df0587c9fd8375647d85f7157b62a797599--xz-5.6.3.bottle_manifest.json
- ==> Fetching xz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/blobs/sha256:c54997c6e29b576cf426815663aa21a3be2f7805d540e4a1da66cdcb834ae85f
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/75a9464e0ac8d9a7a2afc74a406562cfd2fe182c42adb4ebec7f6eb8d14e61c6--xz--5.6.3.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.6
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/29403e0df5404d8aeca0e750ac135ec9ef44fc5eeb6df69170ed602acabf0ffb--zstd-1.5.6.bottle_manifest.json
- ==> Fetching zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/blobs/sha256:2028141683f55bffcd0693b9e49eef1e3dabc1e184214cacb173ca9bd54dabc0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/af6fd07ad9cd935975dd761af51c9baba7eb782dda7630d4abd399fa98e53578--zstd--1.5.6.arm64_sonoma.bottle.tar.gz
- ==> Fetching curl
- ==> Downloading https://ghcr.io/v2/homebrew/core/curl/blobs/sha256:abe90ee3f273e4101cc2a6d597341de4f0fcff5add2ac70664bf6abd045cc204
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/700ca30f86668fb99936272377ac8669d0f3419ad94d26ab256327739d7ace3f--curl--8.11.1.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/gcc/manifests/14.2.0_1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/cece94dbe926093c968a24f66b9a0172afe5cc2ef22253029bc591147237045b--gcc-14.2.0_1.bottle_manifest.json
- ==> Fetching dependencies for gcc: gmp, isl, mpfr and libmpc
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json
- ==> Fetching gmp
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/blobs/sha256:78e4f40cba6419cf7e2d81e9c945d1e93744511bd5230bdfac1b69ed894914b4
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/96a5c6ba7b30c6f2734be44067ba66ef0de5e0973c913659c7b555a4b063029c--gmp--6.3.0.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/isl/manifests/0.27
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/40b1c5526f95db33208143fa79887179e758121659d8877597f553e6e6188879--isl-0.27.bottle_manifest.json
- ==> Fetching isl
- ==> Downloading https://ghcr.io/v2/homebrew/core/isl/blobs/sha256:8f1af90ff2967e80c1a757e8e6aae61c9f6876a8ad98c1613e252f7daaa8a483
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b7467015b0f7297193ac534e779c0933a40053287d8e66b352ecc3abcd14526f--isl--0.27.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/mpfr/manifests/4.2.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a2a3424f4974f6febfa0334a93f35f508eaef3f4ad04320f73d9498302295635--mpfr-4.2.1.bottle_manifest.json
- ==> Fetching mpfr
- ==> Downloading https://ghcr.io/v2/homebrew/core/mpfr/blobs/sha256:71c4d6cc59a5bee30e0779b1d095c2e2db1cb63b51eac88d5d4191660e613d0c
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/cf09ab8252a4d554cf52f391250721aa181da27b7845ad8f2ea5d3e45dfc728e--mpfr--4.2.1.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/libmpc/manifests/1.3.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/fdfa98e0f8bb3ce075cb32776ac2345aa2f89252706c162aecfc841085fa76be--libmpc-1.3.1.bottle_manifest.json
- ==> Fetching libmpc
- ==> Downloading https://ghcr.io/v2/homebrew/core/libmpc/blobs/sha256:909895bde6818f0adee6cf16f23836752ae214515da2e9e3beb0f66fbb63c490
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ddd3df55001504069b99ec7478f969f6ec949466deb7f6d2b862f3c4c34310db--libmpc--1.3.1.arm64_sonoma.bottle.tar.gz
- ==> Fetching gcc
- ==> Downloading https://ghcr.io/v2/homebrew/core/gcc/blobs/sha256:4d94c81d3aea48d77d6e7d7d359d05b48024bac44ade59e08dc3fe0f62539a17
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/0edf5862dcb8ad84fabb10297626299c8ab7945414b40b3bcbb1861b5bc2534c--gcc--14.2.0_1.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json
- ==> Downloading https://ghcr.io/v2/homebrew/core/libevent/manifests/2.1.12_1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/68b113f9ab63db45f4e1860de522ce2ca4fa081eb3c0d5c7d6005a35c3cf8d06--libevent-2.1.12_1.bottle_manifest.json
- ==> Fetching libevent
- ==> Downloading https://ghcr.io/v2/homebrew/core/libevent/blobs/sha256:38a3eb3510a7e0cd4096e4592d0095c562eb1bbad572d951f1923009a14ad702
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8f8cf3b39994cf101de2b62af12e73a6382f97b486014945519507699919941d--libevent--2.1.12_1.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/pcre/manifests/8.45
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4a3bba0e8d1899c13ac3442d2c49df6c1999948bdc0943f2f179693257d82545--pcre-8.45.bottle_manifest.json
- ==> Fetching pcre
- ==> Downloading https://ghcr.io/v2/homebrew/core/pcre/blobs/sha256:fbc1ec29701c2c3f0eb750a0aecf03b90acb6d47f1bbf1dc07eb8a7c9340650e
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/2d73fc7ab2c6af3b12917aaeffbf99b0aa78e56f6ddc8c0311d1734bd5258629--pcre--8.45.arm64_sonoma.bottle.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/manifests/2.3.0_1-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/4a660f26297baafd06fb3109f473edfa592f4aa00adbd8a2506b05d0374c5c1d--pkgconf-2.3.0_1-1.bottle_manifest.json
- ==> Fetching pkgconf
- ==> Downloading https://ghcr.io/v2/homebrew/core/pkgconf/blobs/sha256:bee6257d97fd7331e4b6c1bc7f150a230d7f2f49e9104cf98cc52e04c26fb69d
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/16a6a98313b16a83f7e3b7a728ae77859301335f7eda10f12be54522f88488d1--pkgconf--2.3.0_1.arm64_sonoma.bottle.1.tar.gz
- ==> Downloading https://ghcr.io/v2/homebrew/core/zlib/manifests/1.3.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/f68d0caf232d52f2aa586abefbbfd7e958e384d84f3967008fa83de94b5f10ae--zlib-1.3.1.bottle_manifest.json
- ==> Fetching zlib
- ==> Downloading https://ghcr.io/v2/homebrew/core/zlib/blobs/sha256:f867540472a59ab3fb1201625df546593e5fae2e98948c4c16c6154b0468b682
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/3e8d6a31166088ea6579bf05bcbba23cfc339221e9e7c58520655ceae782726d--zlib--1.3.1.arm64_sonoma.bottle.tar.gz
- ==> Installing dependencies for curl: brotli, libnghttp2, ca-certificates, openssl@3, libssh2, rtmpdump, lz4, xz and zstd
- ==> Installing curl dependency: brotli
- ==> Downloading https://ghcr.io/v2/homebrew/core/brotli/manifests/1.1.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/565098509cdfa90593ec9a41b41239f073843f88caed60ddaa3e6194ac4defda--brotli-1.1.0-1.bottle_manifest.json
- ==> Pouring brotli--1.1.0.arm64_sonoma.bottle.1.tar.gz
- 🍺  /opt/homebrew/Cellar/brotli/1.1.0: 25 files, 1014.6KB
- ==> Installing curl dependency: libnghttp2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libnghttp2/manifests/1.64.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/ca092fa9d99f26d52103722d42230c00f21eb8a4a36bf1d40fc9d5f798562d92--libnghttp2-1.64.0.bottle_manifest.json
- ==> Pouring libnghttp2--1.64.0.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libnghttp2/1.64.0: 14 files, 793.3KB
- ==> Installing curl dependency: ca-certificates
- ==> Downloading https://ghcr.io/v2/homebrew/core/ca-certificates/manifests/2024-11-26
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e16b55434e8bc1472ffb41e1a71c1b853417578c631fa1b69e8730f8cafca76c--ca-certificates-2024-11-26.bottle_manifest.json
- ==> Pouring ca-certificates--2024-11-26.all.bottle.tar.gz
- ==> Regenerating CA certificate bundle from keychain, this may take a while...
- 🍺  /opt/homebrew/Cellar/ca-certificates/2024-11-26: 4 files, 238.9KB
- ==> Installing curl dependency: openssl@3
- ==> Downloading https://ghcr.io/v2/homebrew/core/openssl/3/manifests/3.4.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a8a169d38329b14f967d497d0ea77eee6dc5444175093fc7b26026b357e81736--openssl@3-3.4.0.bottle_manifest.json
- ==> Pouring openssl@3--3.4.0.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/openssl@3/3.4.0: 7,236 files, 33.2MB
- ==> Installing curl dependency: libssh2
- ==> Downloading https://ghcr.io/v2/homebrew/core/libssh2/manifests/1.11.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/6d2495eb2b5f37f7931b23940ceb29db14a4742a49d1d8cce26964ad91a03f26--libssh2-1.11.1.bottle_manifest.json
- ==> Pouring libssh2--1.11.1.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libssh2/1.11.1: 201 files, 1.2MB
- ==> Installing curl dependency: rtmpdump
- ==> Downloading https://ghcr.io/v2/homebrew/core/rtmpdump/manifests/2.4-20151223_3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/b40cb4d6b301aad8ce26f9deb74a74c0d98d1868d19881f9bff55b81d6f11e50--rtmpdump-2.4-20151223_3.bottle_manifest.json
- ==> Pouring rtmpdump--2.4-20151223_3.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/rtmpdump/2.4-20151223_3: 21 files, 652.4KB
- ==> Installing curl dependency: lz4
- ==> Downloading https://ghcr.io/v2/homebrew/core/lz4/manifests/1.10.0-1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/8e11e90eb21a06e0f199af9d80e011e3693c77dd353b2477579d95c8471a5802--lz4-1.10.0-1.bottle_manifest.json
- ==> Pouring lz4--1.10.0.arm64_sonoma.bottle.1.tar.gz
- 🍺  /opt/homebrew/Cellar/lz4/1.10.0: 24 files, 712.7KB
- ==> Installing curl dependency: xz
- ==> Downloading https://ghcr.io/v2/homebrew/core/xz/manifests/5.6.3
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/e68799185cc17334108ba286ba8c3df0587c9fd8375647d85f7157b62a797599--xz-5.6.3.bottle_manifest.json
- ==> Pouring xz--5.6.3.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/xz/5.6.3: 96 files, 2.0MB
- ==> Installing curl dependency: zstd
- ==> Downloading https://ghcr.io/v2/homebrew/core/zstd/manifests/1.5.6
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/29403e0df5404d8aeca0e750ac135ec9ef44fc5eeb6df69170ed602acabf0ffb--zstd-1.5.6.bottle_manifest.json
- ==> Pouring zstd--1.5.6.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/zstd/1.5.6: 32 files, 2.2MB
- ==> Installing curl
- ==> Pouring curl--8.11.1.arm64_sonoma.bottle.tar.gz
- ==> Caveats
- curl is keg-only, which means it was not symlinked into /opt/homebrew,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
- 
- If you need to have curl first in your PATH, run:
-   echo 'export PATH="/opt/homebrew/opt/curl/bin:$PATH"' >> ~/.profile
- 
- For compilers to find curl you may need to set:
-   export LDFLAGS="-L/opt/homebrew/opt/curl/lib"
-   export CPPFLAGS="-I/opt/homebrew/opt/curl/include"
- ==> Summary
- 🍺  /opt/homebrew/Cellar/curl/8.11.1: 531 files, 4MB
- ==> Running `brew cleanup curl`...
- Disable this behaviour by setting HOMEBREW_NO_INSTALL_CLEANUP.
- Hide these hints with HOMEBREW_NO_ENV_HINTS (see `man brew`).
- ==> Installing dependencies for gcc: gmp, isl, mpfr and libmpc
- ==> Installing gcc dependency: gmp
- ==> Downloading https://ghcr.io/v2/homebrew/core/gmp/manifests/6.3.0
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/70a72a71216843d66a953c06ff6337445ce9bc94fae9f0e301e2f59005274a8e--gmp-6.3.0.bottle_manifest.json
- ==> Pouring gmp--6.3.0.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/gmp/6.3.0: 22 files, 3.3MB
- ==> Installing gcc dependency: isl
- ==> Downloading https://ghcr.io/v2/homebrew/core/isl/manifests/0.27
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/40b1c5526f95db33208143fa79887179e758121659d8877597f553e6e6188879--isl-0.27.bottle_manifest.json
- ==> Pouring isl--0.27.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/isl/0.27: 74 files, 7.6MB
- ==> Installing gcc dependency: mpfr
- ==> Downloading https://ghcr.io/v2/homebrew/core/mpfr/manifests/4.2.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/a2a3424f4974f6febfa0334a93f35f508eaef3f4ad04320f73d9498302295635--mpfr-4.2.1.bottle_manifest.json
- ==> Pouring mpfr--4.2.1.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/mpfr/4.2.1: 31 files, 3MB
- ==> Installing gcc dependency: libmpc
- ==> Downloading https://ghcr.io/v2/homebrew/core/libmpc/manifests/1.3.1
- Already downloaded: /Users/mac1000/Library/Caches/Homebrew/downloads/fdfa98e0f8bb3ce075cb32776ac2345aa2f89252706c162aecfc841085fa76be--libmpc-1.3.1.bottle_manifest.json
- ==> Pouring libmpc--1.3.1.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libmpc/1.3.1: 13 files, 491.5KB
- ==> Installing gcc
- ==> Pouring gcc--14.2.0_1.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/gcc/14.2.0_1: 1,913 files, 473.2MB
- ==> Running `brew cleanup gcc`...
- ==> Running `brew cleanup gmp`...
- ==> Pouring libevent--2.1.12_1.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/libevent/2.1.12_1: 58 files, 2.2MB
- ==> Running `brew cleanup libevent`...
- ==> Pouring pcre--8.45.arm64_sonoma.bottle.tar.gz
- 🍺  /opt/homebrew/Cellar/pcre/8.45: 205 files, 4.7MB
- ==> Running `brew cleanup pcre`...
- ==> Pouring pkgconf--2.3.0_1.arm64_sonoma.bottle.1.tar.gz
- 🍺  /opt/homebrew/Cellar/pkgconf/2.3.0_1: 27 files, 472KB
- ==> Running `brew cleanup pkgconf`...
- ==> Pouring zlib--1.3.1.arm64_sonoma.bottle.tar.gz
- ==> Caveats
- zlib is keg-only, which means it was not symlinked into /opt/homebrew,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
- 
- For compilers to find zlib you may need to set:
-   export LDFLAGS="-L/opt/homebrew/opt/zlib/lib"
-   export CPPFLAGS="-I/opt/homebrew/opt/zlib/include"
- 
- For pkg-config to find zlib you may need to set:
-   export PKG_CONFIG_PATH="/opt/homebrew/opt/zlib/lib/pkgconfig"
- ==> Summary
- 🍺  /opt/homebrew/Cellar/zlib/1.3.1: 14 files, 402.4KB
- ==> Running `brew cleanup zlib`...
- ==> Caveats
- ==> curl
- curl is keg-only, which means it was not symlinked into /opt/homebrew,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
- 
- If you need to have curl first in your PATH, run:
-   echo 'export PATH="/opt/homebrew/opt/curl/bin:$PATH"' >> ~/.profile
- 
- For compilers to find curl you may need to set:
-   export LDFLAGS="-L/opt/homebrew/opt/curl/lib"
-   export CPPFLAGS="-I/opt/homebrew/opt/curl/include"
- 
- For pkg-config to find curl you may need to set:
-   export PKG_CONFIG_PATH="/opt/homebrew/opt/curl/lib/pkgconfig"
- ==> zlib
- zlib is keg-only, which means it was not symlinked into /opt/homebrew,
- because macOS already provides this software and installing another version in
- parallel can cause all kinds of trouble.
- 
- For compilers to find zlib you may need to set:
-   export LDFLAGS="-L/opt/homebrew/opt/zlib/lib"
-   export CPPFLAGS="-I/opt/homebrew/opt/zlib/include"
- 
- For pkg-config to find zlib you may need to set:
-   export PKG_CONFIG_PATH="/opt/homebrew/opt/zlib/lib/pkgconfig"
2024-12-17 17:58.11 ---> using "9f03e985b35c7015872d5e0a05ef34047c631c8ce996119407bc3f92b6e03334" from cache


/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-arm64 is already installed (current version is 1).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 119 packages
- install angstrom                    0.16.1
- install astring                     0.8.5
- install atd                         2.15.0
- install atdgen                      2.15.0
- install atdgen-runtime              2.15.0
- install base                        v0.16.3
- install base-bytes                  base
- install base64                      3.5.1
- install base_bigstring              v0.16.0
- install base_quickcheck             v0.16.0
- install bigarray-compat             1.1.0
- install bigstringaf                 0.10.0
- install bin_prot                    v0.16.0
- install biniou                      1.2.2
- install camlp-streams               5.0.1
- install camlzip                     1.13
- install cmdliner                    1.3.0
- install conf-bash                   1
- install conf-g++                    1.0
- install conf-gmp                    4
- install conf-libcurl                2
- install conf-libevent               1
- install conf-libpcre                2
- install conf-pkg-config             3
- install conf-zlib                   1
- install core                        v0.16.2
- install cppo                        1.8.0
- install cpuid                       0.1.2
- install csexp                       1.5.2
- install cstruct                     6.0.1
- install cstruct-lwt                 6.0.1
- install devkit                      1.20240429
- install dune                        3.17.0
- install dune-configurator           3.17.0
- install easy-format                 1.3.4
- install extlib                      1.8.0
- install extunix                     0.4.3
- install fieldslib                   v0.16.0
- install hex                         1.5.0
- install int_repr                    v0.16.0
- install jane-street-headers         v0.16.0
- install jane_rope                   v0.16.0
- install jst-config                  v0.16.0
- install libevent                    0.9.0
- install lwt                         5.9.0
- install lwt_ppx                     5.8.0
- install menhir                      20240715
- install menhirCST                   20240715
- install menhirLib                   20240715
- install menhirSdk                   20240715
- install mirage-no-solo5             1 (deprecated)
- install mirage-no-xen               1 (deprecated)
- install nocrypto                    0.5.4-2
- install num                         1.5-1
- install ocaml-compiler-libs         v0.12.4
- install ocaml-syntax-shims          1.0.0
- install ocamlbuild                  0.15.0
- install ocamlfind                   1.9.6
- install ocb-stubblr                 0.1.1-1
- install ocplib-endian               1.2
- install ocurl                       0.9.2
- install omd                         1.3.2
- install ounit2                      2.2.7
- install parsexp                     v0.16.0
- install pcre                        7.5.0
- install ppx_assert                  v0.16.0
- install ppx_base                    v0.16.0
- install ppx_bench                   v0.16.0
- install ppx_bin_prot                v0.16.0
- install ppx_cold                    v0.16.0
- install ppx_compare                 v0.16.0
- install ppx_custom_printf           v0.16.0
- install ppx_derivers                1.2.1
- install ppx_deriving                6.0.3
- install ppx_disable_unused_warnings v0.16.0
- install ppx_enumerate               v0.16.0
- install ppx_expect                  v0.16.1
- install ppx_fields_conv             v0.16.0
- install ppx_fixed_literal           v0.16.0
- install ppx_globalize               v0.16.0
- install ppx_hash                    v0.16.0
- install ppx_here                    v0.16.0
- install ppx_ignore_instrumentation  v0.16.0
- install ppx_inline_test             v0.16.1
- install ppx_jane                    v0.16.0
- install ppx_let                     v0.16.0
- install ppx_log                     v0.16.0
- install ppx_module_timer            v0.16.0
- install ppx_optcomp                 v0.16.0
- install ppx_optional                v0.16.0
- install ppx_pipebang                v0.16.0
- install ppx_sexp_conv               v0.16.0
- install ppx_sexp_message            v0.16.0
- install ppx_sexp_value              v0.16.0
- install ppx_stable                  v0.16.0
- install ppx_stable_witness          v0.16.0
- install ppx_string                  v0.16.0
- install ppx_tydi                    v0.16.0
- install ppx_typerep_conv            v0.16.0
- install ppx_variants_conv           v0.16.0
- install ppxlib                      0.33.0
- install re                          1.12.0
- install re2                         v0.16.0
- install regex_parser_intf           v0.16.0
- install seq                         base
- install sexplib                     v0.16.0
- install sexplib0                    v0.16.0
- install splittable_random           v0.16.0
- install stdio                       v0.16.0
- install stdlib-shims                0.3.0
- install stringext                   1.6.0
- install time_now                    v0.16.0
- install topkg                       1.0.7
- install trace                       0.8
- install typerep                     v0.16.0
- install uri                         4.4.0
- install variantslib                 v0.16.0
- install yojson                      2.2.2
- install zarith                      1.14


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved base.v0.16.3  (cached)
-> retrieved base_bigstring.v0.16.0  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved atd.2.15.0, atdgen.2.15.0, atdgen-runtime.2.15.0  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved base_quickcheck.v0.16.0  (cached)
-> retrieved biniou.1.2.2  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved bin_prot.v0.16.0  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> installed conf-g++.1.0
-> installed conf-gmp.4
-> installed conf-libcurl.2
-> installed conf-pkg-config.3
-> installed conf-bash.1
-> retrieved cppo.1.8.0  (cached)
-> installed conf-libpcre.2
-> installed conf-zlib.1
-> installed conf-libevent.1
-> retrieved core.v0.16.2  (cached)
-> retrieved cpuid.0.1.2  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved camlzip.1.13  (cached)
-> retrieved devkit.1.20240429  (cached)
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1  (cached)
-> retrieved easy-format.1.3.4  (cached)
-> retrieved extlib.1.8.0  (cached)
-> retrieved fieldslib.v0.16.0  (cached)
-> retrieved extunix.0.4.3  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved int_repr.v0.16.0  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved jane_rope.v0.16.0  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved libevent.0.9.0  (cached)
-> retrieved lwt.5.9.0  (cached)
-> retrieved lwt_ppx.5.8.0  (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved nocrypto.0.5.4-2  (cached)
-> retrieved num.1.5-1  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocb-stubblr.0.1.1-1  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocurl.0.9.2  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved dune.3.17.0, dune-configurator.3.17.0  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> installed ocamlbuild.0.15.0
-> retrieved pcre.7.5.0  (cached)
-> retrieved ounit2.2.2.7  (cached)
-> retrieved ppx_assert.v0.16.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved omd.1.3.2  (cached)
-> retrieved ppx_bin_prot.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_bench.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_custom_printf.v0.16.0  (cached)
-> retrieved ppx_disable_unused_warnings.v0.16.0  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> installed num.1.5-1
-> retrieved ppx_fixed_literal.v0.16.0  (cached)
-> retrieved ppx_fields_conv.v0.16.0  (cached)
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_expect.v0.16.1  (cached)
-> retrieved ppx_here.v0.16.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_jane.v0.16.0  (cached)
-> retrieved ppx_let.v0.16.0  (cached)
-> retrieved ppx_inline_test.v0.16.1  (cached)
-> retrieved ppx_module_timer.v0.16.0  (cached)
-> retrieved ppx_log.v0.16.0  (cached)
-> retrieved ppx_optional.v0.16.0  (cached)
-> retrieved ppx_optcomp.v0.16.0  (cached)
-> retrieved ppx_pipebang.v0.16.0  (cached)
-> retrieved ppx_sexp_message.v0.16.0  (cached)
-> retrieved ppx_sexp_value.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppx_stable_witness.v0.16.0  (cached)
-> retrieved ppx_string.v0.16.0  (cached)
-> retrieved ppx_stable.v0.16.0  (cached)
-> retrieved ppx_tydi.v0.16.0  (cached)
-> retrieved ppx_variants_conv.v0.16.0  (cached)
-> retrieved ppx_typerep_conv.v0.16.0  (cached)
-> retrieved re2.v0.16.0  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved seq.base  (cached)
-> retrieved regex_parser_intf.v0.16.0  (cached)
-> retrieved ppxlib.0.33.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved splittable_random.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved time_now.v0.16.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved typerep.v0.16.0  (cached)
-> retrieved trace.0.8  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved variantslib.v0.16.0  (cached)
-> installed cmdliner.1.3.0
-> installed seq.base
-> retrieved zarith.1.14  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved uri.4.4.0  (cached)
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
[ERROR] The compilation of libevent.0.9.0 failed at "make depend".
-> installed camlzip.1.13
-> installed zarith.1.14
-> installed topkg.1.0.7
-> installed astring.0.8.5
-> installed ocb-stubblr.0.1.1-1
-> installed dune.3.17.0
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed cpuid.0.1.2
-> installed cstruct.6.0.1
-> installed jane-street-headers.v0.16.0
-> installed easy-format.1.3.4
-> installed cppo.1.8.0
-> installed camlp-streams.5.0.1
-> installed base64.3.5.1
-> installed hex.1.5.0
-> installed menhirCST.20240715
-> installed menhirSdk.20240715
-> installed biniou.1.2.2
-> installed menhirLib.20240715
-> installed ocaml-compiler-libs.v0.12.4
-> installed extlib.1.8.0
-> installed ppx_derivers.1.2.1
-> installed ocplib-endian.1.2
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed dune-configurator.3.17.0
-> installed sexplib0.v0.16.0
-> installed trace.0.8
-> installed re.1.12.0
-> installed bigstringaf.0.10.0
-> installed ounit2.2.2.7
-> installed angstrom.0.16.1
-> installed yojson.2.2.2
-> installed omd.1.3.2
-> installed pcre.7.5.0
-> installed parsexp.v0.16.0
-> installed atdgen-runtime.2.15.0
-> installed sexplib.v0.16.0
-> installed lwt.5.9.0
-> installed cstruct-lwt.6.0.1
-> installed uri.4.4.0
-> installed base.v0.16.3
-> installed regex_parser_intf.v0.16.0
-> installed fieldslib.v0.16.0
-> installed variantslib.v0.16.0
-> installed stdio.v0.16.0
-> installed typerep.v0.16.0
-> installed menhir.20240715
-> installed atd.2.15.0
-> installed ppxlib.0.33.0
-> installed atdgen.2.15.0
-> installed ppx_cold.v0.16.0
-> installed ppx_disable_unused_warnings.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed lwt_ppx.5.8.0
-> installed ppx_compare.v0.16.0
-> installed ppx_fixed_literal.v0.16.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed ppx_here.v0.16.0
-> installed ppx_fields_conv.v0.16.0
-> installed ppx_ignore_instrumentation.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_pipebang.v0.16.0
-> installed ppx_optional.v0.16.0
-> installed ppx_let.v0.16.0
-> installed ppx_tydi.v0.16.0
-> installed ppx_stable.v0.16.0
-> installed ppx_stable_witness.v0.16.0
-> installed ppx_typerep_conv.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed extunix.0.4.3
-> installed ppx_variants_conv.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_sexp_value.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_sexp_message.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_custom_printf.v0.16.0
-> installed ppx_log.v0.16.0
-> installed jst-config.v0.16.0
-> installed ppx_string.v0.16.0
-> installed time_now.v0.16.0
-> installed bin_prot.v0.16.0
-> installed ppx_module_timer.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_bin_prot.v0.16.0
-> installed nocrypto.0.5.4-2
-> installed ppx_bench.v0.16.0
-> installed ppx_expect.v0.16.1
-> installed splittable_random.v0.16.0
-> installed base_quickcheck.v0.16.0
-> installed ppx_jane.v0.16.0
-> installed jane_rope.v0.16.0
-> installed int_repr.v0.16.0
-> installed base_bigstring.v0.16.0
-> installed ocurl.0.9.2
-> installed core.v0.16.2
-> installed re2.v0.16.0


#=== ERROR while compiling libevent.0.9.0 =====================================#
# context     2.3.0 | macos/arm64 | ocaml-base-compiler.4.14.2 | git+file:///Users/mac1000/opam-repository
# path        ~/.opam/4.14.2/.opam-switch/build/libevent.0.9.0
# command     ~/.opam/opam-init/hooks/sandbox.sh build make depend
# exit-code   2
# env-file    ~/.opam/log/libevent-87638-865e84.env
# output-file ~/.opam/log/libevent-87638-865e84.out
### output ###
# Makefile:99: depend: No such file or directory
# gcc -I /Users/mac1000/.opam/4.14.2/lib/ocaml -MM *.c > depend
# event_stubs.c:13:10: fatal error: 'event.h' file not found
# #include <event.h>
#          ^~~~~~~~~
# 1 error generated.
# make: *** [depend] Error 1


<><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
+- The following actions failed
| - build libevent 0.9.0
+- 
+- The following changes have been performed (the rest was aborted)
| - install angstrom                    0.16.1
| - install astring                     0.8.5
| - install atd                         2.15.0
| - install atdgen                      2.15.0
| - install atdgen-runtime              2.15.0
| - install base                        v0.16.3
| - install base-bytes                  base
| - install base64                      3.5.1
| - install base_bigstring              v0.16.0
| - install base_quickcheck             v0.16.0
| - install bigarray-compat             1.1.0
| - install bigstringaf                 0.10.0
| - install bin_prot                    v0.16.0
| - install biniou                      1.2.2
| - install camlp-streams               5.0.1
| - install camlzip                     1.13
| - install cmdliner                    1.3.0
| - install conf-bash                   1
| - install conf-g++                    1.0
| - install conf-gmp                    4
| - install conf-libcurl                2
| - install conf-libevent               1
| - install conf-libpcre                2
| - install conf-pkg-config             3
| - install conf-zlib                   1
| - install core                        v0.16.2
| - install cppo                        1.8.0
| - install cpuid                       0.1.2
| - install csexp                       1.5.2
| - install cstruct                     6.0.1
| - install cstruct-lwt                 6.0.1
| - install dune                        3.17.0
| - install dune-configurator           3.17.0
| - install easy-format                 1.3.4
| - install extlib                      1.8.0
| - install extunix                     0.4.3
| - install fieldslib                   v0.16.0
| - install hex                         1.5.0
| - install int_repr                    v0.16.0
| - install jane-street-headers         v0.16.0
| - install jane_rope                   v0.16.0
| - install jst-config                  v0.16.0
| - install lwt                         5.9.0
| - install lwt_ppx                     5.8.0
| - install menhir                      20240715
| - install menhirCST                   20240715
| - install menhirLib                   20240715
| - install menhirSdk                   20240715
| - install mirage-no-solo5             1
| - install mirage-no-xen               1
| - install nocrypto                    0.5.4-2
| - install num                         1.5-1
| - install ocaml-compiler-libs         v0.12.4
| - install ocaml-syntax-shims          1.0.0
| - install ocamlbuild                  0.15.0
| - install ocamlfind                   1.9.6
| - install ocb-stubblr                 0.1.1-1
| - install ocplib-endian               1.2
| - install ocurl                       0.9.2
| - install omd                         1.3.2
| - install ounit2                      2.2.7
| - install parsexp                     v0.16.0
| - install pcre                        7.5.0
| - install ppx_assert                  v0.16.0
| - install ppx_base                    v0.16.0
| - install ppx_bench                   v0.16.0
| - install ppx_bin_prot                v0.16.0
| - install ppx_cold                    v0.16.0
| - install ppx_compare                 v0.16.0
| - install ppx_custom_printf           v0.16.0
| - install ppx_derivers                1.2.1
| - install ppx_deriving                6.0.3
| - install ppx_disable_unused_warnings v0.16.0
| - install ppx_enumerate               v0.16.0
| - install ppx_expect                  v0.16.1
| - install ppx_fields_conv             v0.16.0
| - install ppx_fixed_literal           v0.16.0
| - install ppx_globalize               v0.16.0
| - install ppx_hash                    v0.16.0
| - install ppx_here                    v0.16.0
| - install ppx_ignore_instrumentation  v0.16.0
| - install ppx_inline_test             v0.16.1
| - install ppx_jane                    v0.16.0
| - install ppx_let                     v0.16.0
| - install ppx_log                     v0.16.0
| - install ppx_module_timer            v0.16.0
| - install ppx_optcomp                 v0.16.0
| - install ppx_optional                v0.16.0
| - install ppx_pipebang                v0.16.0
| - install ppx_sexp_conv               v0.16.0
| - install ppx_sexp_message            v0.16.0
| - install ppx_sexp_value              v0.16.0
| - install ppx_stable                  v0.16.0
| - install ppx_stable_witness          v0.16.0
| - install ppx_string                  v0.16.0
| - install ppx_tydi                    v0.16.0
| - install ppx_typerep_conv            v0.16.0
| - install ppx_variants_conv           v0.16.0
| - install ppxlib                      0.33.0
| - install re                          1.12.0
| - install re2                         v0.16.0
| - install regex_parser_intf           v0.16.0
| - install seq                         base
| - install sexplib                     v0.16.0
| - install sexplib0                    v0.16.0
| - install splittable_random           v0.16.0
| - install stdio                       v0.16.0
| - install stdlib-shims                0.3.0
| - install stringext                   1.6.0
| - install time_now                    v0.16.0
| - install topkg                       1.0.7
| - install trace                       0.8
| - install typerep                     v0.16.0
| - install uri                         4.4.0
| - install variantslib                 v0.16.0
| - install yojson                      2.2.2
| - install zarith                      1.14
+- 


<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.


<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)


The former state can be restored with:
/opt/homebrew/bin/opam switch import "/Users/mac1000/.opam/4.14.2/.opam-switch/backup/state-20241217175813.export"
"/usr/bin/env" "bash" "-c" "opam install $DEPS" failed with exit status 31
2024-12-17 18:00.24: Job failed: Failed: Build failed