(for PR #29582)

2026-03-25 13:14.41: New job: test sfml.0.09.2 with ocaml-compiler.5.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-ocaml-5.4/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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0; \
    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" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall sfml.0.09.2; \
    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" != 'sfml.0.09.2' && 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 sfml.0.09.2) || true
RUN opam reinstall --with-test --verbose sfml.0.09.2; \
    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" != 'sfml.0.09.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-25 13:14.41: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-sfml.0.09.2-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.41: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 ocaml-compiler.5.4.0 5.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        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\" != 'ocaml-compiler.5.4.0' && 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 sfml.0.09.2;\
             \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\" != 'sfml.0.09.2' && 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 sfml.0.09.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose sfml.0.09.2;\
             \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\" != 'sfml.0.09.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 13:14.41: Waiting for resource in pool OCluster
2026-03-25 18:16.23: Waiting for worker…
2026-03-25 18:19.34: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  26% (4890/18520)
Updating files:  27% (5001/18520)
Updating files:  28% (5186/18520)
Updating files:  29% (5371/18520)
Updating files:  30% (5556/18520)
Updating files:  31% (5742/18520)
Updating files:  32% (5927/18520)
Updating files:  33% (6112/18520)
Updating files:  34% (6297/18520)
Updating files:  35% (6482/18520)
Updating files:  36% (6668/18520)
Updating files:  37% (6853/18520)
Updating files:  38% (7038/18520)
Updating files:  39% (7223/18520)
Updating files:  40% (7408/18520)
Updating files:  41% (7594/18520)
Updating files:  42% (7779/18520)
Updating files:  43% (7964/18520)
Updating files:  44% (8149/18520)
Updating files:  45% (8334/18520)
Updating files:  46% (8520/18520)
Updating files:  47% (8705/18520)
Updating files:  48% (8890/18520)
Updating files:  49% (9075/18520)
Updating files:  50% (9260/18520)
Updating files:  51% (9446/18520)
Updating files:  52% (9631/18520)
Updating files:  53% (9816/18520)
Updating files:  54% (10001/18520)
Updating files:  55% (10186/18520)
Updating files:  56% (10372/18520)
Updating files:  57% (10557/18520)
Updating files:  58% (10742/18520)
Updating files:  59% (10927/18520)
Updating files:  60% (11112/18520)
Updating files:  61% (11298/18520)
Updating files:  62% (11483/18520)
Updating files:  63% (11668/18520)
Updating files:  64% (11853/18520)
Updating files:  65% (12038/18520)
Updating files:  66% (12224/18520)
Updating files:  67% (12409/18520)
Updating files:  68% (12594/18520)
Updating files:  69% (12779/18520)
Updating files:  70% (12964/18520)
Updating files:  71% (13150/18520)
Updating files:  72% (13335/18520)
Updating files:  73% (13520/18520)
Updating files:  74% (13705/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  84% (15693/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 18:20.02 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 18:20.02 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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.

Continue? [Y/n] y
Format upgrade done.
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.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 18:20.02 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-25 18:20.02 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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/"))
2026-03-25 18:20.02 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 18:20.03 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 18:20.03 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (7242 kB/s)
- Reading package lists...
- 
2026-03-25 18:20.03 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 18:20.03 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        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\" != 'ocaml-compiler.5.4.0' && 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 8 packages
  - recompile base-domains        base           [uses ocaml]
  - recompile base-effects        base           [uses ocaml]
  - recompile base-nnp            base           [uses base-domains]
  - recompile ocaml               5.4.0          [uses ocaml-base-compiler]
  - recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
  - recompile ocaml-compiler      5.4.0 (pinned)
  - recompile ocaml-config        3              [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3          [uses ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:20.03 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall sfml.0.09.2;\
                        \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\" != 'sfml.0.09.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
sfml.0.09.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
  - install conf-pkg-config 4      [required by conf-sfml2]
  - install conf-sfml2      1      [required by sfml]
  - install ocamlfind       1.9.8  [required by sfml]
  - install sfml            0.09.2

The following system packages will first need to be installed:
    libsfml-dev pkg-config

<><> 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" "libsfml-dev" "pkg-config"
- Selecting previously unselected package libdbus-1-3: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 ... 20654 files and directories currently installed.)
- Preparing to unpack .../00-libdbus-1-3_1.16.2-2_amd64.deb ...
- Unpacking libdbus-1-3:amd64 (1.16.2-2) ...
- Selecting previously unselected package dbus-bin.
- Preparing to unpack .../01-dbus-bin_1.16.2-2_amd64.deb ...
- Unpacking dbus-bin (1.16.2-2) ...
- Selecting previously unselected package dbus-session-bus-common.
- Preparing to unpack .../02-dbus-session-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-session-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus-daemon.
- Preparing to unpack .../03-dbus-daemon_1.16.2-2_amd64.deb ...
- Unpacking dbus-daemon (1.16.2-2) ...
- Selecting previously unselected package dbus-system-bus-common.
- Preparing to unpack .../04-dbus-system-bus-common_1.16.2-2_all.deb ...
- Unpacking dbus-system-bus-common (1.16.2-2) ...
- Selecting previously unselected package dbus.
- Preparing to unpack .../05-dbus_1.16.2-2_amd64.deb ...
- Unpacking dbus (1.16.2-2) ...
- Selecting previously unselected package alsa-topology-conf.
- Preparing to unpack .../06-alsa-topology-conf_1.2.5.1-3_all.deb ...
- Unpacking alsa-topology-conf (1.2.5.1-3) ...
- Selecting previously unselected package libasound2-data.
- Preparing to unpack .../07-libasound2-data_1.2.14-1_all.deb ...
- Unpacking libasound2-data (1.2.14-1) ...
- Selecting previously unselected package libasound2t64:amd64.
- Preparing to unpack .../08-libasound2t64_1.2.14-1_amd64.deb ...
- Unpacking libasound2t64:amd64 (1.2.14-1) ...
- Selecting previously unselected package alsa-ucm-conf.
- Preparing to unpack .../09-alsa-ucm-conf_1.2.14-1_all.deb ...
- Unpacking alsa-ucm-conf (1.2.14-1) ...
- Selecting previously unselected package libasyncns0:amd64.
- Preparing to unpack .../10-libasyncns0_0.8-6+b5_amd64.deb ...
- Unpacking libasyncns0:amd64 (0.8-6+b5) ...
- Selecting previously unselected package libdrm-common.
- Preparing to unpack .../11-libdrm-common_2.4.124-2_all.deb ...
- Unpacking libdrm-common (2.4.124-2) ...
- Selecting previously unselected package libdrm2:amd64.
- Preparing to unpack .../12-libdrm2_2.4.124-2_amd64.deb ...
- Unpacking libdrm2:amd64 (2.4.124-2) ...
- Selecting previously unselected package libdrm-amdgpu1:amd64.
- Preparing to unpack .../13-libdrm-amdgpu1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libpciaccess0:amd64.
- Preparing to unpack .../14-libpciaccess0_0.17-3+b3_amd64.deb ...
- Unpacking libpciaccess0:amd64 (0.17-3+b3) ...
- Selecting previously unselected package libdrm-intel1:amd64.
- Preparing to unpack .../15-libdrm-intel1_2.4.124-2_amd64.deb ...
- Unpacking libdrm-intel1:amd64 (2.4.124-2) ...
- Selecting previously unselected package libelf1t64:amd64.
- Preparing to unpack .../16-libelf1t64_0.192-4_amd64.deb ...
- Unpacking libelf1t64:amd64 (0.192-4) ...
- Selecting previously unselected package libogg0:amd64.
- Preparing to unpack .../17-libogg0_1.3.5-3+b2_amd64.deb ...
- Unpacking libogg0:amd64 (1.3.5-3+b2) ...
- Selecting previously unselected package libflac14:amd64.
- Preparing to unpack .../18-libflac14_1.5.0+ds-2_amd64.deb ...
- Unpacking libflac14:amd64 (1.5.0+ds-2) ...
- Selecting previously unselected package libpng16-16t64:amd64.
- Preparing to unpack .../19-libpng16-16t64_1.6.48-1+deb13u3_amd64.deb ...
- Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Selecting previously unselected package libfreetype6:amd64.
- Preparing to unpack .../20-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
- Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Selecting previously unselected package libwayland-server0:amd64.
- Preparing to unpack .../21-libwayland-server0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-server0:amd64 (1.23.1-3) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../22-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../23-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../24-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libsensors-config.
- Preparing to unpack .../25-libsensors-config_1%3a3.6.2-2_all.deb ...
- Unpacking libsensors-config (1:3.6.2-2) ...
- Selecting previously unselected package libsensors5:amd64.
- Preparing to unpack .../26-libsensors5_1%3a3.6.2-2_amd64.deb ...
- Unpacking libsensors5:amd64 (1:3.6.2-2) ...
- Selecting previously unselected package libx11-xcb1:amd64.
- Preparing to unpack .../27-libx11-xcb1_2%3a1.8.12-1_amd64.deb ...
- Unpacking libx11-xcb1:amd64 (2:1.8.12-1) ...
- Selecting previously unselected package libxcb-dri3-0:amd64.
- Preparing to unpack .../28-libxcb-dri3-0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-present0:amd64.
- Preparing to unpack .../29-libxcb-present0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-present0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-randr0:amd64.
- Preparing to unpack .../30-libxcb-randr0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-sync1:amd64.
- Preparing to unpack .../31-libxcb-sync1_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-xfixes0:amd64.
- Preparing to unpack .../32-libxcb-xfixes0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxshmfence1:amd64.
- Preparing to unpack .../33-libxshmfence1_1.3.3-1_amd64.deb ...
- Unpacking libxshmfence1:amd64 (1.3.3-1) ...
- Selecting previously unselected package mesa-libgallium:amd64.
- Preparing to unpack .../34-mesa-libgallium_25.0.7-2_amd64.deb ...
- Unpacking mesa-libgallium:amd64 (25.0.7-2) ...
- Selecting previously unselected package libgbm1:amd64.
- Preparing to unpack .../35-libgbm1_25.0.7-2_amd64.deb ...
- Unpacking libgbm1:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglvnd0:amd64.
- Preparing to unpack .../36-libglvnd0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglvnd0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libxcb-glx0:amd64.
- Preparing to unpack .../37-libxcb-glx0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxcb-shm0:amd64.
- Preparing to unpack .../38-libxcb-shm0_1.17.0-2+b1_amd64.deb ...
- Unpacking libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Selecting previously unselected package libxxf86vm1:amd64.
- Preparing to unpack .../39-libxxf86vm1_1%3a1.1.4-1+b4_amd64.deb ...
- Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Selecting previously unselected package libvulkan1:amd64.
- Preparing to unpack .../40-libvulkan1_1.4.309.0-1_amd64.deb ...
- Unpacking libvulkan1:amd64 (1.4.309.0-1) ...
- Selecting previously unselected package libgl1-mesa-dri:amd64.
- Preparing to unpack .../41-libgl1-mesa-dri_25.0.7-2_amd64.deb ...
- Unpacking libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx-mesa0:amd64.
- Preparing to unpack .../42-libglx-mesa0_25.0.7-2_amd64.deb ...
- Unpacking libglx-mesa0:amd64 (25.0.7-2) ...
- Selecting previously unselected package libglx0:amd64.
- Preparing to unpack .../43-libglx0_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx0:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl1:amd64.
- Preparing to unpack .../44-libgl1_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl1:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libglx-dev:amd64.
- Preparing to unpack .../45-libglx-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libglx-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libgl-dev:amd64.
- Preparing to unpack .../46-libgl-dev_1.7.0-1+b2_amd64.deb ...
- Unpacking libgl-dev:amd64 (1.7.0-1+b2) ...
- Selecting previously unselected package libmp3lame0:amd64.
- Preparing to unpack .../47-libmp3lame0_3.100-6+b3_amd64.deb ...
- Unpacking libmp3lame0:amd64 (3.100-6+b3) ...
- Selecting previously unselected package libmpg123-0t64:amd64.
- Preparing to unpack .../48-libmpg123-0t64_1.32.10-1+deb13u1_amd64.deb ...
- Unpacking libmpg123-0t64:amd64 (1.32.10-1+deb13u1) ...
- Selecting previously unselected package libopenal-data.
- Preparing to unpack .../49-libopenal-data_1%3a1.24.2-1_all.deb ...
- Unpacking libopenal-data (1:1.24.2-1) ...
- Selecting previously unselected package libopenal1:amd64.
- Preparing to unpack .../50-libopenal1_1%3a1.24.2-1_amd64.deb ...
- Unpacking libopenal1:amd64 (1:1.24.2-1) ...
- Selecting previously unselected package libopus0:amd64.
- Preparing to unpack .../51-libopus0_1.5.2-2_amd64.deb ...
- Unpacking libopus0:amd64 (1.5.2-2) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../52-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libvorbis0a:amd64.
- Preparing to unpack .../53-libvorbis0a_1.3.7-3_amd64.deb ...
- Unpacking libvorbis0a:amd64 (1.3.7-3) ...
- Selecting previously unselected package libvorbisenc2:amd64.
- Preparing to unpack .../54-libvorbisenc2_1.3.7-3_amd64.deb ...
- Unpacking libvorbisenc2:amd64 (1.3.7-3) ...
- Selecting previously unselected package libsndfile1:amd64.
- Preparing to unpack .../55-libsndfile1_1.2.2-2+deb13u1_amd64.deb ...
- Unpacking libsndfile1:amd64 (1.2.2-2+deb13u1) ...
- Selecting previously unselected package libpulse0:amd64.
- Preparing to unpack .../56-libpulse0_17.0+dfsg1-2+b1_amd64.deb ...
- Unpacking libpulse0:amd64 (17.0+dfsg1-2+b1) ...
- Selecting previously unselected package libsfml-system2.6:amd64.
- Preparing to unpack .../57-libsfml-system2.6_2.6.2+dfsg-2+b1_amd64.deb ...
- Unpacking libsfml-system2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Selecting previously unselected package libvorbisfile3:amd64.
- Preparing to unpack .../58-libvorbisfile3_1.3.7-3_amd64.deb ...
- Unpacking libvorbisfile3:amd64 (1.3.7-3) ...
- Selecting previously unselected package libsfml-audio2.6:amd64.
- Preparing to unpack .../59-libsfml-audio2.6_2.6.2+dfsg-2+b1_amd64.deb ...
- Unpacking libsfml-audio2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Selecting previously unselected package libxfixes3:amd64.
- Preparing to unpack .../60-libxfixes3_1%3a6.0.0-2+b4_amd64.deb ...
- Unpacking libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Selecting previously unselected package libxrender1:amd64.
- Preparing to unpack .../61-libxrender1_1%3a0.9.12-1_amd64.deb ...
- Unpacking libxrender1:amd64 (1:0.9.12-1) ...
- Selecting previously unselected package libxcursor1:amd64.
- Preparing to unpack .../62-libxcursor1_1%3a1.2.3-1_amd64.deb ...
- Unpacking libxcursor1:amd64 (1:1.2.3-1) ...
- Selecting previously unselected package libxrandr2:amd64.
- Preparing to unpack .../63-libxrandr2_2%3a1.5.4-1+b3_amd64.deb ...
- Unpacking libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Selecting previously unselected package libsfml-window2.6:amd64.
- Preparing to unpack .../64-libsfml-window2.6_2.6.2+dfsg-2+b1_amd64.deb ...
- Unpacking libsfml-window2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Selecting previously unselected package libstb0t64:amd64.
- Preparing to unpack .../65-libstb0t64_0.0~git20241109.5c20573+ds-1_amd64.deb ...
- Unpacking libstb0t64:amd64 (0.0~git20241109.5c20573+ds-1) ...
- Selecting previously unselected package libsfml-graphics2.6:amd64.
- Preparing to unpack .../66-libsfml-graphics2.6_2.6.2+dfsg-2+b1_amd64.deb ...
- Unpacking libsfml-graphics2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Selecting previously unselected package libsfml-network2.6:amd64.
- Preparing to unpack .../67-libsfml-network2.6_2.6.2+dfsg-2+b1_amd64.deb ...
- Unpacking libsfml-network2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Selecting previously unselected package libsfml-dev:amd64.
- Preparing to unpack .../68-libsfml-dev_2.6.2+dfsg-2+b1_amd64.deb ...
- Unpacking libsfml-dev:amd64 (2.6.2+dfsg-2+b1) ...
- Selecting previously unselected package libwayland-client0:amd64.
- Preparing to unpack .../69-libwayland-client0_1.23.1-3_amd64.deb ...
- Unpacking libwayland-client0:amd64 (1.23.1-3) ...
- Selecting previously unselected package mesa-vulkan-drivers:amd64.
- Preparing to unpack .../70-mesa-vulkan-drivers_25.0.7-2_amd64.deb ...
- Unpacking mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../71-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../72-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../73-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libxcb-dri3-0:amd64 (1.17.0-2+b1) ...
- Setting up libwayland-server0:amd64 (1.23.1-3) ...
- Setting up libx11-xcb1:amd64 (2:1.8.12-1) ...
- Setting up libpciaccess0:amd64 (0.17-3+b3) ...
- Setting up libxcb-xfixes0:amd64 (1.17.0-2+b1) ...
- Setting up libogg0:amd64 (1.3.5-3+b2) ...
- Setting up libxrender1:amd64 (1:0.9.12-1) ...
- Setting up libglvnd0:amd64 (1.7.0-1+b2) ...
- Setting up libxcb-glx0:amd64 (1.17.0-2+b1) ...
- Setting up libsensors-config (1:3.6.2-2) ...
- Setting up libxcb-shm0:amd64 (1.17.0-2+b1) ...
- Setting up libmpg123-0t64:amd64 (1.32.10-1+deb13u1) ...
- Setting up libelf1t64:amd64 (0.192-4) ...
- Setting up libxxf86vm1:amd64 (1:1.1.4-1+b4) ...
- Setting up libxcb-present0:amd64 (1.17.0-2+b1) ...
- Setting up libasound2-data (1.2.14-1) ...
- Setting up libsfml-system2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libasound2t64:amd64 (1.2.14-1) ...
- Setting up libxfixes3:amd64 (1:6.0.0-2+b4) ...
- Setting up libxcb-sync1:amd64 (1.17.0-2+b1) ...
- Setting up libdbus-1-3:amd64 (1.16.2-2) ...
- Setting up libopus0:amd64 (1.5.2-2) ...
- Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u3) ...
- Setting up libvorbis0a:amd64 (1.3.7-3) ...
- Setting up libxrandr2:amd64 (2:1.5.4-1+b3) ...
- Setting up libflac14:amd64 (1.5.0+ds-2) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libsensors5:amd64 (1:3.6.2-2) ...
- Setting up libvulkan1:amd64 (1.4.309.0-1) ...
- Setting up alsa-topology-conf (1.2.5.1-3) ...
- Setting up libasyncns0:amd64 (0.8-6+b5) ...
- Setting up libxshmfence1:amd64 (1.3.3-1) ...
- Setting up libxcb-randr0:amd64 (1.17.0-2+b1) ...
- Setting up dbus-session-bus-common (1.16.2-2) ...
- Setting up libopenal-data (1:1.24.2-1) ...
- Setting up dbus-system-bus-common (1.16.2-2) ...
- Setting up libstb0t64:amd64 (0.0~git20241109.5c20573+ds-1) ...
- Setting up libdrm-common (2.4.124-2) ...
- Setting up libsfml-network2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up dbus-bin (1.16.2-2) ...
- Setting up libmp3lame0:amd64 (3.100-6+b3) ...
- Setting up libvorbisenc2:amd64 (1.3.7-3) ...
- Setting up libwayland-client0:amd64 (1.23.1-3) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up alsa-ucm-conf (1.2.14-1) ...
- Setting up libxcursor1:amd64 (1:1.2.3-1) ...
- Setting up libopenal1:amd64 (1:1.24.2-1) ...
- Setting up dbus-daemon (1.16.2-2) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libvorbisfile3:amd64 (1.3.7-3) ...
- Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
- Setting up dbus (1.16.2-2) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libsfml-audio2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Setting up libdrm2:amd64 (2.4.124-2) ...
- Setting up libsndfile1:amd64 (1.2.2-2+deb13u1) ...
- Setting up libdrm-amdgpu1:amd64 (2.4.124-2) ...
- Setting up mesa-vulkan-drivers:amd64 (25.0.7-2) ...
- Setting up libpulse0:amd64 (17.0+dfsg1-2+b1) ...
- Setting up libdrm-intel1:amd64 (2.4.124-2) ...
- Setting up mesa-libgallium:amd64 (25.0.7-2) ...
- Setting up libgbm1:amd64 (25.0.7-2) ...
- Setting up libgl1-mesa-dri:amd64 (25.0.7-2) ...
- Setting up libglx-mesa0:amd64 (25.0.7-2) ...
- Setting up libglx0:amd64 (1.7.0-1+b2) ...
- Setting up libgl1:amd64 (1.7.0-1+b2) ...
- Setting up libglx-dev:amd64 (1.7.0-1+b2) ...
- Setting up libgl-dev:amd64 (1.7.0-1+b2) ...
- Setting up libsfml-window2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Setting up libsfml-graphics2.6:amd64 (2.6.2+dfsg-2+b1) ...
- Setting up libsfml-dev:amd64 (2.6.2+dfsg-2+b1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.8  (cached)
-> installed conf-pkg-config.4
-> retrieved sfml.0.09.2  (cached)
-> installed conf-sfml2.1
-> installed ocamlfind.1.9.8
-> installed sfml.0.09.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:21.46 ---> saved as "c84657b8ef3977682e3795259d25018fc004966e959a460f7820f33ab88e1923"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved sfml.0.09.2  (https://opam.ocaml.org/cache)
-> removed   sfml.0.09.2
-> installed sfml.0.09.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:22.56 ---> saved as "841b0a56260b7fd7b35c415a505c2e66a7e0cf8b46ab8dc3814d4db9901f2e30"

/home/opam: (run (shell  "opam reinstall --with-test --verbose sfml.0.09.2;\
                        \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\" != 'sfml.0.09.2' && 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 sfml 0.09.2

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [sfml.0.09.2: extract]
-> retrieved sfml.0.09.2  (cached)
Processing  2/4: [sfml: make src]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-C" "src" "cxx_all" (CWD=/home/opam/.opam/5.4/.opam-switch/build/sfml.0.09.2)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/sfml.0.09.2/src'
- ocamldep SF*.ml SF*.mli oo_*.ml oo_*.mli > ml_depend.mk
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/sf_caml_conv.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/sf_conv_vectors.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFConfig_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFTime_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFClock_stub.cpp
- ocamlmklib -oc sfml_system_stubs \
-    sf_caml_conv.o  sf_conv_vectors.o  SFConfig_stub.o  SFTime_stub.o  SFClock_stub.o \
-   -L/usr/lib/ \
-   -lsfml-system
- ocaml doc_link.ml SFConfig.ml > SFConfig.mli
- ocamlc -g -bin-annot -i SFConfig.ml >> SFConfig.mli
- ocamlc -g -bin-annot -c -o SFConfig.cmi SFConfig.mli
- ocamlc -g -bin-annot -c -o SFConfig.cmo SFConfig.ml
- ocamlc -g -bin-annot -c -o SFTime.cmi SFTime.mli
- ocamlc -g -bin-annot -c -o SFTime.cmo SFTime.ml
- ocaml doc_link.ml SFClock.ml > SFClock.mli
- ocamlc -g -bin-annot -i SFClock.ml >> SFClock.mli
- ocamlc -g -bin-annot -c -o SFClock.cmi SFClock.mli
- ocamlc -g -bin-annot -c -o SFClock.cmo SFClock.ml
- :
- ocamlc -g -bin-annot -c -o SFPausableClock.cmi SFPausableClock.mli
- ocamlc -g -bin-annot -c -o SFPausableClock.cmo SFPausableClock.ml
- ocamlc -g -bin-annot -g -a -o sfml_system.cma \
-    SFConfig.cmo  SFTime.cmo  SFClock.cmo  SFPausableClock.cmo \
-   -dllib -lsfml_system_stubs \
-   -cclib -lsfml_system_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-system"
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/sf_context_settings.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/sf_conv_style.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFClipboard_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFCursor_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFKey_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFMouse_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFKeyboard_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFJoystick_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFEvent_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFWindow_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFContext_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFVideoMode_stub.cpp
- ocamlmklib -oc sfml_window_stubs \
-    sf_context_settings.o  sf_conv_style.o  SFClipboard_stub.o  SFCursor_stub.o  SFKey_stub.o  SFMouse_stub.o  SFKeyboard_stub.o  SFJoystick_stub.o  SFEvent_stub.o  SFWindow_stub.o  SFContext_stub.o  SFVideoMode_stub.o \
-   -L/usr/lib/ \
-   -lsfml-window
- ocaml doc_link.ml SFClipboard.ml > SFClipboard.mli
- ocamlc -g -bin-annot -i SFClipboard.ml >> SFClipboard.mli
- ocamlc -g -bin-annot -c -o SFClipboard.cmi SFClipboard.mli
- ocamlc -g -bin-annot -c -o SFClipboard.cmo SFClipboard.ml
- ocaml doc_link.ml SFCursor.ml > SFCursor.mli
- ocamlc -g -bin-annot -i SFCursor.ml >> SFCursor.mli
- ocamlc -g -bin-annot -c -o SFCursor.cmi SFCursor.mli
- ocamlc -g -bin-annot -c -o SFCursor.cmo SFCursor.ml
- ocaml doc_link.ml SFKey.ml > SFKey.mli
- ocamlc -g -bin-annot -i SFKey.ml >> SFKey.mli
- ocamlc -g -bin-annot -c -o SFKey.cmi SFKey.mli
- ocamlc -g -bin-annot -c -o SFKey.cmo SFKey.ml
- ocaml doc_link.ml SFMouse.ml > SFMouse.mli
- ocamlc -g -bin-annot -i SFMouse.ml >> SFMouse.mli
- ocamlc -g -bin-annot -c -o SFMouse.cmi SFMouse.mli
- ocamlc -g -bin-annot -c -o SFMouse.cmo SFMouse.ml
- ocaml doc_link.ml SFKeyboard.ml > SFKeyboard.mli
- ocamlc -g -bin-annot -i SFKeyboard.ml >> SFKeyboard.mli
- ocamlc -g -bin-annot -c -o SFKeyboard.cmi SFKeyboard.mli
- ocamlc -g -bin-annot -c -o SFKeyboard.cmo SFKeyboard.ml
- ocaml doc_link.ml SFJoystick.ml > SFJoystick.mli
- ocamlc -g -bin-annot -i SFJoystick.ml >> SFJoystick.mli
- ocamlc -g -bin-annot -c -o SFJoystick.cmi SFJoystick.mli
- ocamlc -g -bin-annot -c -o SFJoystick.cmo SFJoystick.ml
- ocamlc -g -bin-annot -c -o SFSensor.cmi SFSensor.mli
- :
- ocamlc -g -bin-annot -c -o SFEvent.cmi SFEvent.mli
- ocamlc -g -bin-annot -c -o SFEvent.cmo SFEvent.ml
- ocaml doc_link.ml SFVideoMode.ml > SFVideoMode.mli
- ocamlc -g -bin-annot -i SFVideoMode.ml >> SFVideoMode.mli
- ocamlc -g -bin-annot -c -o SFVideoMode.cmi SFVideoMode.mli
- ocamlc -g -bin-annot -c -o SFVideoMode.cmo SFVideoMode.ml
- ocaml doc_link.ml SFStyle.ml > SFStyle.mli
- ocamlc -g -bin-annot -i SFStyle.ml >> SFStyle.mli
- ocamlc -g -bin-annot -c -o SFStyle.cmi SFStyle.mli
- ocamlc -g -bin-annot -c -o SFStyle.cmo SFStyle.ml
- ocaml doc_link.ml SFContextSettings.ml > SFContextSettings.mli
- ocamlc -g -bin-annot -i SFContextSettings.ml >> SFContextSettings.mli
- ocamlc -g -bin-annot -c -o SFContextSettings.cmi SFContextSettings.mli
- ocamlc -g -bin-annot -c -o SFContextSettings.cmo SFContextSettings.ml
- ocaml doc_link.ml SFRect.ml > SFRect.mli
- ocamlc -g -bin-annot -i SFRect.ml >> SFRect.mli
- ocamlc -g -bin-annot -c -o SFRect.cmi SFRect.mli
- ocaml doc_link.ml SFView.ml > SFView.mli
- ocamlc -g -bin-annot -i SFView.ml >> SFView.mli
- ocamlc -g -bin-annot -c -o SFView.cmi SFView.mli
- ocaml doc_link.ml SFColor.ml > SFColor.mli
- ocamlc -g -bin-annot -i SFColor.ml >> SFColor.mli
- ocamlc -g -bin-annot -c -o SFColor.cmi SFColor.mli
- ocaml doc_link.ml SFWindow.ml > SFWindow.mli
- ocamlc -g -bin-annot -i SFWindow.ml >> SFWindow.mli
- ocamlc -g -bin-annot -c -o SFWindow.cmi SFWindow.mli
- ocamlc -g -bin-annot -c -o SFWindow.cmo SFWindow.ml
- ocaml doc_link.ml SFContext.ml > SFContext.mli
- ocamlc -g -bin-annot -i SFContext.ml >> SFContext.mli
- ocamlc -g -bin-annot -c -o SFContext.cmi SFContext.mli
- ocamlc -g -bin-annot -c -o SFContext.cmo SFContext.ml
- ocamlc -g -bin-annot -g -a -o sfml_window.cma \
-    SFClipboard.cmo  SFCursor.cmo  SFKey.cmo  SFMouse.cmo  SFKeyboard.cmo  SFJoystick.cmo  SFEvent.cmo  SFVideoMode.cmo  SFStyle.cmo  SFContextSettings.cmo  SFWindow.cmo  SFContext.cmo \
-   -dllib -lsfml_window_stubs \
-   -cclib -lsfml_window_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-window"
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFColor_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFRect_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFBlendMode_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFImage_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFTexture_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFFont_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFText_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFShape_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFCircleShape_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFRectangleShape_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFSprite_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFShader_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFTransform_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFView_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFRenderStates_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFRenderWindow_stub.cpp
- ocamlmklib -oc sfml_graphics_stubs \
-    SFColor_stub.o  SFRect_stub.o  SFBlendMode_stub.o  SFImage_stub.o  SFTexture_stub.o  SFFont_stub.o  SFText_stub.o  SFShape_stub.o  SFCircleShape_stub.o  SFRectangleShape_stub.o  SFSprite_stub.o  SFShader_stub.o  SFTransform_stub.o  SFView_stub.o  SFRenderStates_stub.o  SFRenderWindow_stub.o \
-   -L/usr/lib/ \
-   -lsfml-graphics
- ocamlc -g -bin-annot -c -o SFColor.cmo SFColor.ml
- ocamlc -g -bin-annot -c -o SFRect.cmo SFRect.ml
- ocamlc -g -bin-annot -c -o SFBlendMode.cmi SFBlendMode.mli
- ocamlc -g -bin-annot -c -o SFBlendMode.cmo SFBlendMode.ml
- ocamlc -g -bin-annot -c -o SFImage.cmi SFImage.mli
- ocamlc -g -bin-annot -c -o SFImage.cmo SFImage.ml
- ocaml doc_link.ml SFTexture.ml > SFTexture.mli
- ocamlc -g -bin-annot -i SFTexture.ml >> SFTexture.mli
- ocamlc -g -bin-annot -c -o SFTexture.cmi SFTexture.mli
- ocamlc -g -bin-annot -c -o SFTexture.cmo SFTexture.ml
- ocamlc -g -bin-annot -c -o SFFont.cmi SFFont.mli
- ocamlc -g -bin-annot -c -o SFFont.cmo SFFont.ml
- ocamlc -g -bin-annot -c -o SFText.cmi SFText.mli
- File "SFText.mli", line 20, characters 51-61:
- 20 | val setColor : text:t -> color:SFColor.t -> unit [@deprecated "use set{Outline,Fill}Color instead"]
-                                                         ^^^^^^^^^^
- Warning 53 [misplaced-attribute]: the deprecated attribute cannot appear in this context
- ocamlc -g -bin-annot -c -o SFText.cmo SFText.ml
- ocamlc -g -bin-annot -c -o SFCircleShape.cmi SFCircleShape.mli
- ocamlc -g -bin-annot -c -o SFRectangleShape.cmi SFRectangleShape.mli
- :
- ocamlc -g -bin-annot -c -o SFShape.cmi SFShape.mli
- ocamlc -g -bin-annot -c -o SFShape.cmo SFShape.ml
- File "SFShape.ml", line 45, characters 0-55:
- 45 | external of_circle : SFCircleShape.t -> t = "%identity"
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 61 [unboxable-type-in-prim-decl]: This primitive declaration uses type t,
-   whose representation may be either boxed or unboxed. Without an annotation
-   to indicate which representation is intended, the boxed representation has
-   been selected by default. This default choice may change in future versions
-   of the compiler, breaking the primitive implementation. You should
-   explicitly annotate the declaration of t with [@@boxed] or [@@unboxed], so
-   that its external interface remains stable in the future.
- 
- File "SFShape.ml", line 46, characters 0-61:
- 46 | external of_rectangle : SFRectangleShape.t -> t = "%identity"
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 61 [unboxable-type-in-prim-decl]: This primitive declaration uses type t,
-   whose representation may be either boxed or unboxed. Without an annotation
-   to indicate which representation is intended, the boxed representation has
-   been selected by default. This default choice may change in future versions
-   of the compiler, breaking the primitive implementation. You should
-   explicitly annotate the declaration of t with [@@boxed] or [@@unboxed], so
-   that its external interface remains stable in the future.
- ocamlc -g -bin-annot -c -o SFCircleShape.cmo SFCircleShape.ml
- ocamlc -g -bin-annot -c -o SFRectangleShape.cmo SFRectangleShape.ml
- ocamlc -g -bin-annot -c -o SFSprite.cmi SFSprite.mli
- ocamlc -g -bin-annot -c -o SFSprite.cmo SFSprite.ml
- ocaml doc_link.ml SFShader.ml > SFShader.mli
- ocamlc -g -bin-annot -i SFShader.ml >> SFShader.mli
- ocamlc -g -bin-annot -c -o SFShader.cmi SFShader.mli
- ocamlc -g -bin-annot -c -o SFShader.cmo SFShader.ml
- ocaml doc_link.ml SFTransform.ml > SFTransform.mli
- ocamlc -g -bin-annot -i SFTransform.ml >> SFTransform.mli
- ocamlc -g -bin-annot -c -o SFTransform.cmi SFTransform.mli
- ocamlc -g -bin-annot -c -o SFTransform.cmo SFTransform.ml
- ocamlc -g -bin-annot -c -o SFView.cmo SFView.ml
- ocamlc -g -bin-annot -c -o SFRenderStates.cmi SFRenderStates.mli
- ocamlc -g -bin-annot -c -o SFRenderStates.cmo SFRenderStates.ml
- ocaml doc_link.ml SFRenderWindow.ml > SFRenderWindow.mli
- ocamlc -g -bin-annot -i SFRenderWindow.ml >> SFRenderWindow.mli
- ocamlc -g -bin-annot -c -o SFRenderWindow.cmi SFRenderWindow.mli
- ocamlc -g -bin-annot -c -o SFRenderWindow.cmo SFRenderWindow.ml
- ocamlc -g -bin-annot -g -a -o sfml_graphics.cma \
-    SFColor.cmo  SFRect.cmo  SFBlendMode.cmo  SFImage.cmo  SFTexture.cmo  SFFont.cmo  SFText.cmo  SFShape.cmo  SFCircleShape.cmo  SFRectangleShape.cmo  SFSprite.cmo  SFShader.cmo  SFTransform.cmo  SFView.cmo  SFRenderStates.cmo  SFRenderWindow.cmo \
-   -dllib -lsfml_graphics_stubs \
-   -cclib -lsfml_graphics_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-graphics"
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFMusic_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFSoundBuffer_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFSound_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFListener_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFSoundBufferRecorder_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFSoundRecorder_stub.cpp
- ocamlmklib -oc sfml_audio_stubs \
-    SFMusic_stub.o  SFSoundBuffer_stub.o  SFSound_stub.o  SFListener_stub.o  SFSoundBufferRecorder_stub.o  SFSoundRecorder_stub.o \
-   -L/usr/lib/ \
-   -lsfml-audio
- ocaml doc_link.ml SFMusic.ml > SFMusic.mli
- ocamlc -g -bin-annot -i SFMusic.ml >> SFMusic.mli
- ocamlc -g -bin-annot -c -o SFMusic.cmi SFMusic.mli
- ocamlc -g -bin-annot -c -o SFMusic.cmo SFMusic.ml
- ocamlc -g -bin-annot -c -o SFSoundBuffer.cmi SFSoundBuffer.mli
- ocamlc -g -bin-annot -c -o SFSoundBuffer.cmo SFSoundBuffer.ml
- ocamlc -g -bin-annot -c -o SFSound.cmi SFSound.mli
- ocamlc -g -bin-annot -c -o SFSound.cmo SFSound.ml
- ocaml doc_link.ml SFListener.ml > SFListener.mli
- ocamlc -g -bin-annot -i SFListener.ml >> SFListener.mli
- ocamlc -g -bin-annot -c -o SFListener.cmi SFListener.mli
- ocamlc -g -bin-annot -c -o SFListener.cmo SFListener.ml
- ocamlc -g -bin-annot -c -o SFSoundBufferRecorder.cmi SFSoundBufferRecorder.mli
- ocamlc -g -bin-annot -c -o SFSoundBufferRecorder.cmo SFSoundBufferRecorder.ml
- ocaml doc_link.ml SFSoundRecorder.ml > SFSoundRecorder.mli
- ocamlc -g -bin-annot -i SFSoundRecorder.ml >> SFSoundRecorder.mli
- ocamlc -g -bin-annot -c -o SFSoundRecorder.cmi SFSoundRecorder.mli
- ocamlc -g -bin-annot -c -o SFSoundRecorder.cmo SFSoundRecorder.ml
- ocamlc -g -bin-annot -g -a -o sfml_audio.cma \
-    SFMusic.cmo  SFSoundBuffer.cmo  SFSound.cmo  SFListener.cmo  SFSoundBufferRecorder.cmo  SFSoundRecorder.cmo \
-   -dllib -lsfml_audio_stubs \
-   -cclib -lsfml_audio_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-audio"
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFHttp_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFFtp_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFIpAddress_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFPacket_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFUdpSocket_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFTcpSocket_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFTcpListener_stub.cpp
- g++ -g -Wno-deprecated-declarations -fPIC -c -I/home/opam/.opam/5.4/lib/ocaml -I/usr/include/ ./cxx_stubs/SFSocketSelector_stub.cpp
- ocamlmklib -oc sfml_network_stubs \
-    SFHttp_stub.o  SFFtp_stub.o  SFIpAddress_stub.o  SFPacket_stub.o  SFUdpSocket_stub.o  SFTcpSocket_stub.o  SFTcpListener_stub.o  SFSocketSelector_stub.o \
-   -L/usr/lib/ \
-   -lsfml-network
- ocaml doc_link.ml SFHttp.ml > SFHttp.mli
- ocamlc -g -bin-annot -i SFHttp.ml >> SFHttp.mli
- ocamlc -g -bin-annot -c -o SFHttp.cmi SFHttp.mli
- ocamlc -g -bin-annot -c -o SFHttp.cmo SFHttp.ml
- ocaml doc_link.ml SFIpAddress.ml > SFIpAddress.mli
- ocamlc -g -bin-annot -i SFIpAddress.ml >> SFIpAddress.mli
- ocamlc -g -bin-annot -c -o SFIpAddress.cmi SFIpAddress.mli
- ocaml doc_link.ml SFFtp.ml > SFFtp.mli
- ocamlc -g -bin-annot -i SFFtp.ml >> SFFtp.mli
- ocamlc -g -bin-annot -c -o SFFtp.cmi SFFtp.mli
- ocamlc -g -bin-annot -c -o SFIpAddress.cmo SFIpAddress.ml
- ocamlc -g -bin-annot -c -o SFFtp.cmo SFFtp.ml
- ocamlc -g -bin-annot -c -o SFPacket.cmi SFPacket.mli
- ocamlc -g -bin-annot -c -o SFPacket.cmo SFPacket.ml
- ocaml doc_link.ml SFUdpSocket.ml > SFUdpSocket.mli
- ocamlc -g -bin-annot -i SFUdpSocket.ml >> SFUdpSocket.mli
- ocamlc -g -bin-annot -c -o SFUdpSocket.cmi SFUdpSocket.mli
- ocamlc -g -bin-annot -c -o SFUdpSocket.cmo SFUdpSocket.ml
- ocaml doc_link.ml SFTcpSocket.ml > SFTcpSocket.mli
- ocamlc -g -bin-annot -i SFTcpSocket.ml >> SFTcpSocket.mli
- ocamlc -g -bin-annot -c -o SFTcpSocket.cmi SFTcpSocket.mli
- ocamlc -g -bin-annot -c -o SFTcpSocket.cmo SFTcpSocket.ml
- ocaml doc_link.ml SFTcpListener.ml > SFTcpListener.mli
- ocamlc -g -bin-annot -i SFTcpListener.ml >> SFTcpListener.mli
- ocamlc -g -bin-annot -c -o SFTcpListener.cmi SFTcpListener.mli
- ocamlc -g -bin-annot -c -o SFTcpListener.cmo SFTcpListener.ml
- ocaml doc_link.ml SFSocketSelector.ml > SFSocketSelector.mli
- ocamlc -g -bin-annot -i SFSocketSelector.ml >> SFSocketSelector.mli
- ocamlc -g -bin-annot -c -o SFSocketSelector.cmi SFSocketSelector.mli
- ocamlc -g -bin-annot -c -o SFSocketSelector.cmo SFSocketSelector.ml
- ocamlc -g -bin-annot -g -a -o sfml_network.cma \
-    SFHttp.cmo  SFFtp.cmo  SFIpAddress.cmo  SFPacket.cmo  SFUdpSocket.cmo  SFTcpSocket.cmo  SFTcpListener.cmo  SFSocketSelector.cmo \
-   -dllib -lsfml_network_stubs \
-   -cclib -lsfml_network_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-network"
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFConfig.cmx SFConfig.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFTime.cmx SFTime.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFClock.cmx SFClock.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFPausableClock.cmx SFPausableClock.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_system.cmxa \
-    SFConfig.cmx  SFTime.cmx  SFClock.cmx  SFPausableClock.cmx \
-   -cclib -lsfml_system_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-system"
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFClipboard.cmx SFClipboard.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFCursor.cmx SFCursor.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFKey.cmx SFKey.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFMouse.cmx SFMouse.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFKeyboard.cmx SFKeyboard.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFJoystick.cmx SFJoystick.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFEvent.cmx SFEvent.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFVideoMode.cmx SFVideoMode.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFStyle.cmx SFStyle.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFContextSettings.cmx SFContextSettings.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFWindow.cmx SFWindow.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFContext.cmx SFContext.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_window.cmxa \
-    SFClipboard.cmx  SFCursor.cmx  SFKey.cmx  SFMouse.cmx  SFKeyboard.cmx  SFJoystick.cmx  SFEvent.cmx  SFVideoMode.cmx  SFStyle.cmx  SFContextSettings.cmx  SFWindow.cmx  SFContext.cmx \
-   -cclib -lsfml_window_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-window"
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFColor.cmx SFColor.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFRect.cmx SFRect.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFBlendMode.cmx SFBlendMode.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFImage.cmx SFImage.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFTexture.cmx SFTexture.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFFont.cmx SFFont.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFText.cmx SFText.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFRectangleShape.cmx SFRectangleShape.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFCircleShape.cmx SFCircleShape.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFShape.cmx SFShape.ml
- File "SFShape.ml", line 45, characters 0-55:
- 45 | external of_circle : SFCircleShape.t -> t = "%identity"
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 61 [unboxable-type-in-prim-decl]: This primitive declaration uses type t,
-   whose representation may be either boxed or unboxed. Without an annotation
-   to indicate which representation is intended, the boxed representation has
-   been selected by default. This default choice may change in future versions
-   of the compiler, breaking the primitive implementation. You should
-   explicitly annotate the declaration of t with [@@boxed] or [@@unboxed], so
-   that its external interface remains stable in the future.
- 
- File "SFShape.ml", line 46, characters 0-61:
- 46 | external of_rectangle : SFRectangleShape.t -> t = "%identity"
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Warning 61 [unboxable-type-in-prim-decl]: This primitive declaration uses type t,
-   whose representation may be either boxed or unboxed. Without an annotation
-   to indicate which representation is intended, the boxed representation has
-   been selected by default. This default choice may change in future versions
-   of the compiler, breaking the primitive implementation. You should
-   explicitly annotate the declaration of t with [@@boxed] or [@@unboxed], so
-   that its external interface remains stable in the future.
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFSprite.cmx SFSprite.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFShader.cmx SFShader.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFTransform.cmx SFTransform.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFView.cmx SFView.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFRenderStates.cmx SFRenderStates.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFRenderWindow.cmx SFRenderWindow.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_graphics.cmxa \
-    SFColor.cmx  SFRect.cmx  SFBlendMode.cmx  SFImage.cmx  SFTexture.cmx  SFFont.cmx  SFText.cmx  SFShape.cmx  SFCircleShape.cmx  SFRectangleShape.cmx  SFSprite.cmx  SFShader.cmx  SFTransform.cmx  SFView.cmx  SFRenderStates.cmx  SFRenderWindow.cmx \
-   -cclib -lsfml_graphics_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-graphics"
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFMusic.cmx SFMusic.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFSoundBuffer.cmx SFSoundBuffer.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFSound.cmx SFSound.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFListener.cmx SFListener.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFSoundBufferRecorder.cmx SFSoundBufferRecorder.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFSoundRecorder.cmx SFSoundRecorder.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_audio.cmxa \
-    SFMusic.cmx  SFSoundBuffer.cmx  SFSound.cmx  SFListener.cmx  SFSoundBufferRecorder.cmx  SFSoundRecorder.cmx \
-   -cclib -lsfml_audio_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-audio"
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFHttp.cmx SFHttp.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFIpAddress.cmx SFIpAddress.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFFtp.cmx SFFtp.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFPacket.cmx SFPacket.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFUdpSocket.cmx SFUdpSocket.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFTcpSocket.cmx SFTcpSocket.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFTcpListener.cmx SFTcpListener.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -c -o SFSocketSelector.cmx SFSocketSelector.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_network.cmxa \
-    SFHttp.cmx  SFFtp.cmx  SFIpAddress.cmx  SFPacket.cmx  SFUdpSocket.cmx  SFTcpSocket.cmx  SFTcpListener.cmx  SFSocketSelector.cmx \
-   -cclib -lsfml_network_stubs \
-   -ccopt "-L/usr/lib/" \
-   -cclib "-lsfml-network"
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_system.cmxs -ccopt -L. sfml_system.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_window.cmxs -ccopt -L. sfml_window.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_graphics.cmxs -ccopt -L. sfml_graphics.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_audio.cmxs -ccopt -L. sfml_audio.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_network.cmxs -ccopt -L. sfml_network.cmxa
- ocamlc -g -bin-annot -c -o oo_sfml_system.cmi oo_sfml_system.mli
- ocamlc -g -bin-annot -a -o sfml_system_oo.cma oo_sfml_system.ml
- ocamlc -g -bin-annot -c -o oo_sfml_window.cmi oo_sfml_window.mli
- ocamlc -g -bin-annot -a -o sfml_window_oo.cma oo_sfml_window.ml
- ocamlc -g -bin-annot -c -o oo_sfml_graphics.cmi oo_sfml_graphics.mli
- ocamlc -g -bin-annot -a -o sfml_graphics_oo.cma oo_sfml_graphics.ml
- ocamlc -g -bin-annot -c -o oo_sfml_audio.cmi oo_sfml_audio.mli
- ocamlc -g -bin-annot -a -o sfml_audio_oo.cma oo_sfml_audio.ml
- ocamlc -g -bin-annot -c -o oo_sfml_network.cmi oo_sfml_network.mli
- ocamlc -g -bin-annot -a -o sfml_network_oo.cma oo_sfml_network.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_system_oo.cmxa oo_sfml_system.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_window_oo.cmxa oo_sfml_window.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_graphics_oo.cmxa oo_sfml_graphics.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_audio_oo.cmxa oo_sfml_audio.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -a -o sfml_network_oo.cmxa oo_sfml_network.ml
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_system_oo.cmxs -ccopt -L. sfml_system_oo.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_window_oo.cmxs -ccopt -L. sfml_window_oo.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_graphics_oo.cmxs -ccopt -L. sfml_graphics_oo.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_audio_oo.cmxs -ccopt -L. sfml_audio_oo.cmxa
- ocamlopt -g -ccopt "-Wno-deprecated-declarations" -shared -linkall -o sfml_network_oo.cmxs -ccopt -L. sfml_network_oo.cmxa
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/sfml.0.09.2/src'
-> compiled  sfml.0.09.2
-> removed   sfml.0.09.2
Processing  4/4: [sfml: make src]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "-C" "src" "findinstall_cxx" (CWD=/home/opam/.opam/5.4/.opam-switch/build/sfml.0.09.2)
- make: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/sfml.0.09.2/src'
- ocamlfind install sfml META_cxx/META *.cma *.cmxa *.cmxs *.cmi *.cmx *.cmt *.cmti *.mli *.so *.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window_oo.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system_oo.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network_oo.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics_oo.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio_oo.a
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio.a
- Installed /home/opam/.opam/5.4/lib/sfml/libsfml_window_stubs.a
- Installed /home/opam/.opam/5.4/lib/sfml/libsfml_system_stubs.a
- Installed /home/opam/.opam/5.4/lib/sfml/libsfml_network_stubs.a
- Installed /home/opam/.opam/5.4/lib/sfml/libsfml_graphics_stubs.a
- Installed /home/opam/.opam/5.4/lib/sfml/libsfml_audio_stubs.a
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_window.mli
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_system.mli
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_network.mli
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_graphics.mli
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_audio.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFWindow.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFView.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFVideoMode.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFUdpSocket.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFTransform.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFTime.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFTexture.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFText.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpSocket.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpListener.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFStyle.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSprite.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundRecorder.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBufferRecorder.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBuffer.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSound.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSocketSelector.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFShape.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFShader.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFSensor.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderWindow.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderStates.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFRectangleShape.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFRect.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFPausableClock.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFPacket.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFMusic.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFMouse.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFListener.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFKeyboard.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFKey.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFJoystick.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFIpAddress.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFImage.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFHttp.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFFtp.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFFont.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFEvent.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFCursor.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFContextSettings.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFContext.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFConfig.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFColor.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFClock.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFClipboard.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFCircleShape.mli
- Installed /home/opam/.opam/5.4/lib/sfml/SFBlendMode.mli
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_window.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_system.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_network.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_graphics.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_audio.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFWindow.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFView.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFVideoMode.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFUdpSocket.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFTransform.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFTime.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFTexture.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFText.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpSocket.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpListener.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFStyle.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSprite.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundRecorder.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBufferRecorder.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBuffer.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSound.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSocketSelector.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFShape.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFShader.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFSensor.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderWindow.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderStates.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFRectangleShape.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFRect.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFPausableClock.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFPacket.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFMusic.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFMouse.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFListener.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFKeyboard.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFKey.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFJoystick.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFIpAddress.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFImage.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFHttp.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFFtp.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFFont.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFEvent.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFCursor.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFContextSettings.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFContext.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFConfig.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFColor.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFClock.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFClipboard.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFCircleShape.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/SFBlendMode.cmti
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_window.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_system.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_network.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_graphics.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_audio.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFWindow.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFView.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFVideoMode.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFUdpSocket.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFTransform.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFTime.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFTexture.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFText.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpSocket.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpListener.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFStyle.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFSprite.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundRecorder.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBufferRecorder.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBuffer.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFSound.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFSocketSelector.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFShape.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFShader.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderWindow.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderStates.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFRectangleShape.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFRect.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFPausableClock.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFPacket.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFMusic.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFMouse.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFListener.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFKeyboard.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFKey.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFJoystick.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFIpAddress.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFImage.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFHttp.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFFtp.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFFont.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFEvent.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFCursor.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFContextSettings.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFContext.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFConfig.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFColor.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFClock.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFClipboard.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFCircleShape.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/SFBlendMode.cmt
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_window.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_system.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_network.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_graphics.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_audio.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFWindow.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFView.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFVideoMode.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFUdpSocket.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFTransform.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFTime.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFTexture.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFText.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpSocket.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpListener.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFStyle.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFSprite.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundRecorder.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBufferRecorder.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBuffer.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFSound.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFSocketSelector.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFShape.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFShader.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderWindow.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderStates.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFRectangleShape.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFRect.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFPausableClock.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFPacket.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFMusic.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFMouse.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFListener.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFKeyboard.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFKey.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFJoystick.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFIpAddress.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFImage.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFHttp.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFFtp.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFFont.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFEvent.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFCursor.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFContextSettings.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFContext.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFConfig.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFColor.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFClock.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFClipboard.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFCircleShape.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/SFBlendMode.cmx
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_window.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_system.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_network.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_graphics.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/oo_sfml_audio.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFWindow.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFView.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFVideoMode.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFUdpSocket.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFTransform.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFTime.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFTexture.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFText.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpSocket.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFTcpListener.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFStyle.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSprite.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundRecorder.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBufferRecorder.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSoundBuffer.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSound.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSocketSelector.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFShape.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFShader.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFSensor.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderWindow.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFRenderStates.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFRectangleShape.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFRect.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFPausableClock.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFPacket.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFMusic.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFMouse.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFListener.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFKeyboard.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFKey.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFJoystick.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFIpAddress.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFImage.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFHttp.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFFtp.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFFont.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFEvent.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFCursor.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFContextSettings.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFContext.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFConfig.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFColor.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFClock.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFClipboard.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFCircleShape.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/SFBlendMode.cmi
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window_oo.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system_oo.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network_oo.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics_oo.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio_oo.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio.cmxs
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window_oo.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system_oo.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network_oo.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics_oo.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio_oo.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio.cmxa
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window_oo.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_window.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system_oo.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_system.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network_oo.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_network.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics_oo.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_graphics.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio_oo.cma
- Installed /home/opam/.opam/5.4/lib/sfml/sfml_audio.cma
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_window_stubs.so
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_window_stubs.so.owner
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_system_stubs.so
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_system_stubs.so.owner
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_network_stubs.so
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_network_stubs.so.owner
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_graphics_stubs.so
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_graphics_stubs.so.owner
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_audio_stubs.so
- Installed /home/opam/.opam/5.4/lib/stublibs/dllsfml_audio_stubs.so.owner
- ocamlfind: [WARNING] You have installed DLLs but the directory /home/opam/.opam/5.4/lib/stublibs is not mentioned in ld.conf
- Installed /home/opam/.opam/5.4/lib/sfml/META
- make: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/sfml.0.09.2/src'
-> installed sfml.0.09.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 18:24.08 ---> saved as "a1004bb0f1f3f2d44c8e8783ebf58dabd6568a7346de03b8a0d03bf3b14b8846"
Job succeeded
2026-03-25 18:24.20: Job succeeded