(for PR #29582)

2026-03-25 13:14.49: New job: test cpdf.2.9 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 cpdf.2.9; \
    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" != 'cpdf.2.9' && 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 cpdf.2.9) || true
RUN opam reinstall --with-test --verbose cpdf.2.9; \
    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" != 'cpdf.2.9' && 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.49: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-cpdf.2.9-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.49: 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 cpdf.2.9;\
             \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\" != 'cpdf.2.9' && 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 cpdf.2.9) || true"))
 (run (shell  "opam reinstall --with-test --verbose cpdf.2.9;\
             \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\" != 'cpdf.2.9' && 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.49: Waiting for resource in pool OCluster
2026-03-25 19:35.23: Waiting for worker…
2026-03-25 19:37.52: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 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 19:37.58 ---> 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 19:37.58 ---> 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.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 19:37.58 ---> 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                 255
# 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 19:37.58 ---> 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 19:37.58 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:37.59 ---> 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 (10.7 MB/s)
- Reading package lists...
- 
2026-03-25 19:37.59 ---> 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 19:37.59 ---> 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 19:37.59 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved camlpdf.2.9  (cached)
-> retrieved cpdf.2.9  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> installed ocamlfind.1.9.8
-> installed camlpdf.2.9
-> installed cpdf.2.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:38.38 ---> saved as "2d851841054ab4f0bcf6f7d48b43decb81d9bc7616b9723cc03414e7f731345f"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cpdf.2.9  (https://opam.ocaml.org/cache)
-> removed   cpdf.2.9
-> installed cpdf.2.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:39.01 ---> saved as "daa4dc0fb02ca3549053e08778bdf5fd35092a68b3ad60e08e258027a8f0eeae"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [cpdf.2.9: extract]
-> retrieved cpdf.2.9  (cached)
Processing  2/4: [cpdf: make]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" (CWD=/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9)
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- ocamlfind ocamldep cpdfyojson.ml > ._d/cpdfyojson.d
- ocamlfind ocamldep cpdfxmlm.ml > ._d/cpdfxmlm.d
- ocamlfind ocamldep cpdfutil.ml > ._d/cpdfutil.d
- ocamlfind ocamldep cpdfunicodedata.ml > ._d/cpdfunicodedata.d
- ocamlfind ocamldep cpdferror.ml > ._d/cpdferror.d
- ocamlfind ocamldep cpdfdebug.ml > ._d/cpdfdebug.d
- ocamlfind ocamldep cpdfjson.ml > ._d/cpdfjson.d
- ocamlfind ocamldep cpdfstrftime.ml > ._d/cpdfstrftime.d
- ocamlfind ocamldep cpdfcoord.ml > ._d/cpdfcoord.d
- ocamlfind ocamldep cpdfattach.ml > ._d/cpdfattach.d
- ocamlfind ocamldep cpdfpagespec.ml > ._d/cpdfpagespec.d
- ocamlfind ocamldep cpdfposition.ml > ._d/cpdfposition.d
- ocamlfind ocamldep cpdfpresent.ml > ._d/cpdfpresent.d
- ocamlfind ocamldep cpdfmetadata.ml > ._d/cpdfmetadata.d
- ocamlfind ocamldep cpdfbookmarks.ml > ._d/cpdfbookmarks.d
- ocamlfind ocamldep cpdfpage.ml > ._d/cpdfpage.d
- ocamlfind ocamldep cpdftruetype.ml > ._d/cpdftruetype.d
- ocamlfind ocamldep cpdfremovetext.ml > ._d/cpdfremovetext.d
- ocamlfind ocamldep cpdfextracttext.ml > ._d/cpdfextracttext.d
- ocamlfind ocamldep cpdfembed.ml > ._d/cpdfembed.d
- ocamlfind ocamldep cpdffont.ml > ._d/cpdffont.d
- ocamlfind ocamldep cpdftype.ml > ._d/cpdftype.d
- ocamlfind ocamldep cpdfaddtext.ml > ._d/cpdfaddtext.d
- ocamlfind ocamldep cpdfpad.ml > ._d/cpdfpad.d
- ocamlfind ocamldep cpdfocg.ml > ._d/cpdfocg.d
- ocamlfind ocamldep cpdfsqueeze.ml > ._d/cpdfsqueeze.d
- ocamlfind ocamldep cpdfdraft.ml > ._d/cpdfdraft.d
- ocamlfind ocamldep cpdfspot.ml > ._d/cpdfspot.d
- ocamlfind ocamldep cpdfpagelabels.ml > ._d/cpdfpagelabels.d
- ocamlfind ocamldep cpdfcreate.ml > ._d/cpdfcreate.d
- ocamlfind ocamldep cpdfannot.ml > ._d/cpdfannot.d
- ocamlfind ocamldep cpdfxobject.ml > ._d/cpdfxobject.d
- ocamlfind ocamldep cpdfimpose.ml > ._d/cpdfimpose.d
- ocamlfind ocamldep cpdfchop.ml > ._d/cpdfchop.d
- ocamlfind ocamldep cpdftweak.ml > ._d/cpdftweak.d
- ocamlfind ocamldep cpdfprinttree.ml > ._d/cpdfprinttree.d
- ocamlfind ocamldep cpdfua.ml > ._d/cpdfua.d
- ocamlfind ocamldep cpdftexttopdf.ml > ._d/cpdftexttopdf.d
- ocamlfind ocamldep cpdftoc.ml > ._d/cpdftoc.d
- ocamlfind ocamldep cpdfjpeg.ml > ._d/cpdfjpeg.d
- ocamlfind ocamldep cpdfjpeg2000.ml > ._d/cpdfjpeg2000.d
- ocamlfind ocamldep cpdfpng.ml > ._d/cpdfpng.d
- ocamlfind ocamldep cpdfimage.ml > ._d/cpdfimage.d
- ocamlfind ocamldep cpdfdraw.ml > ._d/cpdfdraw.d
- ocamlfind ocamldep cpdfcomposition.ml > ._d/cpdfcomposition.d
- ocamlfind ocamldep cpdfshape.ml > ._d/cpdfshape.d
- ocamlfind ocamldep cpdfcolours.ml > ._d/cpdfcolours.d
- ocamlfind ocamldep cpdfdrawcontrol.ml > ._d/cpdfdrawcontrol.d
- ocamlfind ocamldep cpdfjs.ml > ._d/cpdfjs.d
- ocamlfind ocamldep cpdfportfolio.ml > ._d/cpdfportfolio.d
- ocamlfind ocamldep cpdfcommand.ml > ._d/cpdfcommand.d
- ocamlfind ocamldep cpdfcommandrun.ml > ._d/cpdfcommandrun.d
- ocamlfind ocamldep cpdfyojson.mli > ._bcdi/cpdfyojson.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfyojson.di'.
- ocamlfind ocamldep cpdfxmlm.mli > ._bcdi/cpdfxmlm.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfxmlm.di'.
- ocamlfind ocamldep cpdfutil.mli > ._bcdi/cpdfutil.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfutil.di'.
- ocamlfind ocamldep cpdfunicodedata.mli > ._bcdi/cpdfunicodedata.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfunicodedata.di'.
- ocamlfind ocamldep cpdferror.mli > ._bcdi/cpdferror.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdferror.di'.
- ocamlfind ocamldep cpdfdebug.mli > ._bcdi/cpdfdebug.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfdebug.di'.
- ocamlfind ocamldep cpdfjson.mli > ._bcdi/cpdfjson.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfjson.di'.
- ocamlfind ocamldep cpdfstrftime.mli > ._bcdi/cpdfstrftime.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfstrftime.di'.
- ocamlfind ocamldep cpdfcoord.mli > ._bcdi/cpdfcoord.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfcoord.di'.
- ocamlfind ocamldep cpdfattach.mli > ._bcdi/cpdfattach.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfattach.di'.
- ocamlfind ocamldep cpdfpagespec.mli > ._bcdi/cpdfpagespec.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfpagespec.di'.
- ocamlfind ocamldep cpdfposition.mli > ._bcdi/cpdfposition.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfposition.di'.
- ocamlfind ocamldep cpdfpresent.mli > ._bcdi/cpdfpresent.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfpresent.di'.
- ocamlfind ocamldep cpdfmetadata.mli > ._bcdi/cpdfmetadata.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfmetadata.di'.
- ocamlfind ocamldep cpdfbookmarks.mli > ._bcdi/cpdfbookmarks.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfbookmarks.di'.
- ocamlfind ocamldep cpdfpage.mli > ._bcdi/cpdfpage.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfpage.di'.
- ocamlfind ocamldep cpdftruetype.mli > ._bcdi/cpdftruetype.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdftruetype.di'.
- ocamlfind ocamldep cpdfremovetext.mli > ._bcdi/cpdfremovetext.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfremovetext.di'.
- ocamlfind ocamldep cpdfextracttext.mli > ._bcdi/cpdfextracttext.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfextracttext.di'.
- ocamlfind ocamldep cpdfembed.mli > ._bcdi/cpdfembed.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfembed.di'.
- ocamlfind ocamldep cpdffont.mli > ._bcdi/cpdffont.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdffont.di'.
- ocamlfind ocamldep cpdftype.mli > ._bcdi/cpdftype.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdftype.di'.
- ocamlfind ocamldep cpdfaddtext.mli > ._bcdi/cpdfaddtext.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfaddtext.di'.
- ocamlfind ocamldep cpdfpad.mli > ._bcdi/cpdfpad.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfpad.di'.
- ocamlfind ocamldep cpdfocg.mli > ._bcdi/cpdfocg.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfocg.di'.
- ocamlfind ocamldep cpdfsqueeze.mli > ._bcdi/cpdfsqueeze.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfsqueeze.di'.
- ocamlfind ocamldep cpdfdraft.mli > ._bcdi/cpdfdraft.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfdraft.di'.
- ocamlfind ocamldep cpdfspot.mli > ._bcdi/cpdfspot.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfspot.di'.
- ocamlfind ocamldep cpdfpagelabels.mli > ._bcdi/cpdfpagelabels.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfpagelabels.di'.
- ocamlfind ocamldep cpdfcreate.mli > ._bcdi/cpdfcreate.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfcreate.di'.
- ocamlfind ocamldep cpdfannot.mli > ._bcdi/cpdfannot.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfannot.di'.
- ocamlfind ocamldep cpdfxobject.mli > ._bcdi/cpdfxobject.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfxobject.di'.
- ocamlfind ocamldep cpdfimpose.mli > ._bcdi/cpdfimpose.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfimpose.di'.
- ocamlfind ocamldep cpdfchop.mli > ._bcdi/cpdfchop.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfchop.di'.
- ocamlfind ocamldep cpdftweak.mli > ._bcdi/cpdftweak.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdftweak.di'.
- ocamlfind ocamldep cpdfprinttree.mli > ._bcdi/cpdfprinttree.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfprinttree.di'.
- ocamlfind ocamldep cpdfua.mli > ._bcdi/cpdfua.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfua.di'.
- ocamlfind ocamldep cpdftexttopdf.mli > ._bcdi/cpdftexttopdf.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdftexttopdf.di'.
- ocamlfind ocamldep cpdftoc.mli > ._bcdi/cpdftoc.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdftoc.di'.
- ocamlfind ocamldep cpdfjpeg.mli > ._bcdi/cpdfjpeg.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfjpeg.di'.
- ocamlfind ocamldep cpdfjpeg2000.mli > ._bcdi/cpdfjpeg2000.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfjpeg2000.di'.
- ocamlfind ocamldep cpdfpng.mli > ._bcdi/cpdfpng.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfpng.di'.
- ocamlfind ocamldep cpdfimage.mli > ._bcdi/cpdfimage.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfimage.di'.
- ocamlfind ocamldep cpdfdraw.mli > ._bcdi/cpdfdraw.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfdraw.di'.
- ocamlfind ocamldep cpdfcomposition.mli > ._bcdi/cpdfcomposition.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfcomposition.di'.
- ocamlfind ocamldep cpdfshape.mli > ._bcdi/cpdfshape.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfshape.di'.
- ocamlfind ocamldep cpdfcolours.mli > ._bcdi/cpdfcolours.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfcolours.di'.
- ocamlfind ocamldep cpdfdrawcontrol.mli > ._bcdi/cpdfdrawcontrol.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfdrawcontrol.di'.
- ocamlfind ocamldep cpdfjs.mli > ._bcdi/cpdfjs.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfjs.di'.
- ocamlfind ocamldep cpdfportfolio.mli > ._bcdi/cpdfportfolio.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfportfolio.di'.
- ocamlfind ocamldep cpdfcommand.mli > ._bcdi/cpdfcommand.di
- OCamlMakefile:1163: warning: pattern recipe did not update peer target '._ncdi/cpdfcommand.di'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfyojson.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfyojson.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfyojson.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfxmlm.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfxmlm.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfxmlm.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfutil.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfutil.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfutil.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfunicodedata.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfunicodedata.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfunicodedata.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdferror.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdferror.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdferror.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfdebug.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdebug.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfdebug.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfjson.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjson.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfjson.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfstrftime.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfstrftime.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfstrftime.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfcoord.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcoord.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfcoord.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfattach.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfattach.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfattach.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfpagespec.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpagespec.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfpagespec.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfposition.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfposition.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfposition.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfpresent.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpresent.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfpresent.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfmetadata.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfmetadata.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfmetadata.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfbookmarks.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfbookmarks.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfbookmarks.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfpage.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpage.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfpage.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdftruetype.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftruetype.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdftruetype.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfremovetext.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfremovetext.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfremovetext.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfextracttext.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfextracttext.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfextracttext.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfembed.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfembed.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfembed.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdffont.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdffont.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdffont.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdftype.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftype.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdftype.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfaddtext.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfaddtext.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfaddtext.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfpad.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpad.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfpad.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfocg.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfocg.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfocg.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfsqueeze.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfsqueeze.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfsqueeze.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfdraft.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdraft.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfdraft.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfspot.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfspot.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfspot.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfpagelabels.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpagelabels.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfpagelabels.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfcreate.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcreate.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfcreate.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfannot.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfannot.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfannot.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfxobject.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfxobject.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfxobject.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfimpose.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfimpose.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfimpose.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfchop.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfchop.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfchop.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdftweak.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftweak.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdftweak.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfprinttree.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfprinttree.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfprinttree.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfua.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfua.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfua.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdftexttopdf.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftexttopdf.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdftexttopdf.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdftoc.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftoc.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdftoc.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfjpeg.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjpeg.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfjpeg.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfjpeg2000.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjpeg2000.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfjpeg2000.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfpng.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpng.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfpng.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfimage.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfimage.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfimage.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfdraw.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdraw.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfdraw.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfcomposition.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcomposition.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfcomposition.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfshape.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfshape.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfshape.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfcolours.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcolours.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfcolours.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfdrawcontrol.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdrawcontrol.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfdrawcontrol.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfjs.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjs.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfjs.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfportfolio.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfportfolio.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfportfolio.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot cpdfcommand.mli
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcommand.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfcommand.o'.
- ocamlfind ocamlc -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcommandrun.ml
- OCamlMakefile:1076: warning: pattern recipe did not update peer target 'cpdfcommandrun.o'.
- ocamlfind ocamlc \
- 			-package unix,camlpdf -linkpkg \
- 			       -g        -o cpdf \
- 			cpdfyojson.cmo cpdfxmlm.cmo cpdfutil.cmo cpdfunicodedata.cmo cpdferror.cmo cpdfdebug.cmo cpdfjson.cmo cpdfstrftime.cmo cpdfcoord.cmo cpdfattach.cmo cpdfpagespec.cmo cpdfposition.cmo cpdfpresent.cmo cpdfmetadata.cmo cpdfbookmarks.cmo cpdfpage.cmo cpdftruetype.cmo cpdfremovetext.cmo cpdfextracttext.cmo cpdfembed.cmo cpdffont.cmo cpdftype.cmo cpdfaddtext.cmo cpdfpad.cmo cpdfocg.cmo cpdfsqueeze.cmo cpdfdraft.cmo cpdfspot.cmo cpdfpagelabels.cmo cpdfcreate.cmo cpdfannot.cmo cpdfxobject.cmo cpdfimpose.cmo cpdfchop.cmo cpdftweak.cmo cpdfprinttree.cmo cpdfua.cmo cpdftexttopdf.cmo cpdftoc.cmo cpdfjpeg.cmo cpdfjpeg2000.cmo cpdfpng.cmo cpdfimage.cmo cpdfdraw.cmo cpdfcomposition.cmo cpdfshape.cmo cpdfcolours.cmo cpdfdrawcontrol.cmo cpdfjs.cmo cpdfportfolio.cmo cpdfcommand.cmo cpdfcommandrun.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- ocamlfind ocamlc -a        -g        -o cpdf.cma cpdfyojson.cmo cpdfxmlm.cmo cpdfutil.cmo cpdfunicodedata.cmo cpdferror.cmo cpdfdebug.cmo cpdfjson.cmo cpdfstrftime.cmo cpdfcoord.cmo cpdfattach.cmo cpdfpagespec.cmo cpdfposition.cmo cpdfpresent.cmo cpdfmetadata.cmo cpdfbookmarks.cmo cpdfpage.cmo cpdftruetype.cmo cpdfremovetext.cmo cpdfextracttext.cmo cpdfembed.cmo cpdffont.cmo cpdftype.cmo cpdfaddtext.cmo cpdfpad.cmo cpdfocg.cmo cpdfsqueeze.cmo cpdfdraft.cmo cpdfspot.cmo cpdfpagelabels.cmo cpdfcreate.cmo cpdfannot.cmo cpdfxobject.cmo cpdfimpose.cmo cpdfchop.cmo cpdftweak.cmo cpdfprinttree.cmo cpdfua.cmo cpdftexttopdf.cmo cpdftoc.cmo cpdfjpeg.cmo cpdfjpeg2000.cmo cpdfpng.cmo cpdfimage.cmo cpdfdraw.cmo cpdfcomposition.cmo cpdfshape.cmo cpdfcolours.cmo cpdfdrawcontrol.cmo cpdfjs.cmo cpdfportfolio.cmo cpdfcommand.cmo cpdfcommandrun.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- mkdir -p doc/cpdf/html
- rm -rf doc/cpdf/html/*
- ocamlfind ocamldoc -package unix,camlpdf -html -d doc/cpdf/html cpdfutil.mli cpdfunicodedata.mli cpdferror.mli cpdfdebug.mli cpdfjson.mli cpdfstrftime.mli cpdfcoord.mli cpdfattach.mli cpdfpagespec.mli cpdfposition.mli cpdfpresent.mli cpdfmetadata.mli cpdfbookmarks.mli cpdfpage.mli cpdftruetype.mli cpdfremovetext.mli cpdfextracttext.mli cpdfembed.mli cpdffont.mli cpdftype.mli cpdfaddtext.mli cpdfpad.mli cpdfocg.mli cpdfsqueeze.mli cpdfdraft.mli cpdfspot.mli cpdfpagelabels.mli cpdfcreate.mli cpdfannot.mli cpdfxobject.mli cpdfimpose.mli cpdfchop.mli cpdftweak.mli cpdfprinttree.mli cpdfua.mli cpdftexttopdf.mli cpdftoc.mli cpdfjpeg.mli cpdfjpeg2000.mli cpdfpng.mli cpdfimage.mli cpdfdraw.mli cpdfcomposition.mli cpdfshape.mli cpdfcolours.mli cpdfdrawcontrol.mli cpdfjs.mli cpdfportfolio.mli cpdfcommand.mli
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- ocamlfind ocamldep -native cpdfyojson.mli > ._ncdi/cpdfyojson.di
- ocamlfind ocamldep -native cpdfxmlm.mli > ._ncdi/cpdfxmlm.di
- ocamlfind ocamldep -native cpdfutil.mli > ._ncdi/cpdfutil.di
- ocamlfind ocamldep -native cpdfunicodedata.mli > ._ncdi/cpdfunicodedata.di
- ocamlfind ocamldep -native cpdferror.mli > ._ncdi/cpdferror.di
- ocamlfind ocamldep -native cpdfdebug.mli > ._ncdi/cpdfdebug.di
- ocamlfind ocamldep -native cpdfjson.mli > ._ncdi/cpdfjson.di
- ocamlfind ocamldep -native cpdfstrftime.mli > ._ncdi/cpdfstrftime.di
- ocamlfind ocamldep -native cpdfcoord.mli > ._ncdi/cpdfcoord.di
- ocamlfind ocamldep -native cpdfattach.mli > ._ncdi/cpdfattach.di
- ocamlfind ocamldep -native cpdfpagespec.mli > ._ncdi/cpdfpagespec.di
- ocamlfind ocamldep -native cpdfposition.mli > ._ncdi/cpdfposition.di
- ocamlfind ocamldep -native cpdfpresent.mli > ._ncdi/cpdfpresent.di
- ocamlfind ocamldep -native cpdfmetadata.mli > ._ncdi/cpdfmetadata.di
- ocamlfind ocamldep -native cpdfbookmarks.mli > ._ncdi/cpdfbookmarks.di
- ocamlfind ocamldep -native cpdfpage.mli > ._ncdi/cpdfpage.di
- ocamlfind ocamldep -native cpdftruetype.mli > ._ncdi/cpdftruetype.di
- ocamlfind ocamldep -native cpdfremovetext.mli > ._ncdi/cpdfremovetext.di
- ocamlfind ocamldep -native cpdfextracttext.mli > ._ncdi/cpdfextracttext.di
- ocamlfind ocamldep -native cpdfembed.mli > ._ncdi/cpdfembed.di
- ocamlfind ocamldep -native cpdffont.mli > ._ncdi/cpdffont.di
- ocamlfind ocamldep -native cpdftype.mli > ._ncdi/cpdftype.di
- ocamlfind ocamldep -native cpdfaddtext.mli > ._ncdi/cpdfaddtext.di
- ocamlfind ocamldep -native cpdfpad.mli > ._ncdi/cpdfpad.di
- ocamlfind ocamldep -native cpdfocg.mli > ._ncdi/cpdfocg.di
- ocamlfind ocamldep -native cpdfsqueeze.mli > ._ncdi/cpdfsqueeze.di
- ocamlfind ocamldep -native cpdfdraft.mli > ._ncdi/cpdfdraft.di
- ocamlfind ocamldep -native cpdfspot.mli > ._ncdi/cpdfspot.di
- ocamlfind ocamldep -native cpdfpagelabels.mli > ._ncdi/cpdfpagelabels.di
- ocamlfind ocamldep -native cpdfcreate.mli > ._ncdi/cpdfcreate.di
- ocamlfind ocamldep -native cpdfannot.mli > ._ncdi/cpdfannot.di
- ocamlfind ocamldep -native cpdfxobject.mli > ._ncdi/cpdfxobject.di
- ocamlfind ocamldep -native cpdfimpose.mli > ._ncdi/cpdfimpose.di
- ocamlfind ocamldep -native cpdfchop.mli > ._ncdi/cpdfchop.di
- ocamlfind ocamldep -native cpdftweak.mli > ._ncdi/cpdftweak.di
- ocamlfind ocamldep -native cpdfprinttree.mli > ._ncdi/cpdfprinttree.di
- ocamlfind ocamldep -native cpdfua.mli > ._ncdi/cpdfua.di
- ocamlfind ocamldep -native cpdftexttopdf.mli > ._ncdi/cpdftexttopdf.di
- ocamlfind ocamldep -native cpdftoc.mli > ._ncdi/cpdftoc.di
- ocamlfind ocamldep -native cpdfjpeg.mli > ._ncdi/cpdfjpeg.di
- ocamlfind ocamldep -native cpdfjpeg2000.mli > ._ncdi/cpdfjpeg2000.di
- ocamlfind ocamldep -native cpdfpng.mli > ._ncdi/cpdfpng.di
- ocamlfind ocamldep -native cpdfimage.mli > ._ncdi/cpdfimage.di
- ocamlfind ocamldep -native cpdfdraw.mli > ._ncdi/cpdfdraw.di
- ocamlfind ocamldep -native cpdfcomposition.mli > ._ncdi/cpdfcomposition.di
- ocamlfind ocamldep -native cpdfshape.mli > ._ncdi/cpdfshape.di
- ocamlfind ocamldep -native cpdfcolours.mli > ._ncdi/cpdfcolours.di
- ocamlfind ocamldep -native cpdfdrawcontrol.mli > ._ncdi/cpdfdrawcontrol.di
- ocamlfind ocamldep -native cpdfjs.mli > ._ncdi/cpdfjs.di
- ocamlfind ocamldep -native cpdfportfolio.mli > ._ncdi/cpdfportfolio.di
- ocamlfind ocamldep -native cpdfcommand.mli > ._ncdi/cpdfcommand.di
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfyojson.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfxmlm.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfutil.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfunicodedata.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdferror.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdebug.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjson.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfstrftime.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcoord.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfattach.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpagespec.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfposition.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpresent.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfmetadata.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfbookmarks.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpage.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftruetype.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfremovetext.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfextracttext.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfembed.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdffont.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftype.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfaddtext.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpad.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfocg.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfsqueeze.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdraft.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfspot.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpagelabels.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcreate.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfannot.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfxobject.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfimpose.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfchop.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftweak.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfprinttree.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfua.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftexttopdf.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdftoc.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjpeg.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjpeg2000.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfpng.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfimage.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdraw.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcomposition.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfshape.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcolours.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfdrawcontrol.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfjs.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfportfolio.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcommand.ml
- ocamlfind ocamlopt -package unix,camlpdf -c -annot -bin-annot -bin-annot -g -safe-string cpdfcommandrun.ml
- ocamlfind ocamlopt \
- 			-package unix,camlpdf -linkpkg \
- 			        -g       -o cpdf \
- 			cpdfyojson.cmx cpdfxmlm.cmx cpdfutil.cmx cpdfunicodedata.cmx cpdferror.cmx cpdfdebug.cmx cpdfjson.cmx cpdfstrftime.cmx cpdfcoord.cmx cpdfattach.cmx cpdfpagespec.cmx cpdfposition.cmx cpdfpresent.cmx cpdfmetadata.cmx cpdfbookmarks.cmx cpdfpage.cmx cpdftruetype.cmx cpdfremovetext.cmx cpdfextracttext.cmx cpdfembed.cmx cpdffont.cmx cpdftype.cmx cpdfaddtext.cmx cpdfpad.cmx cpdfocg.cmx cpdfsqueeze.cmx cpdfdraft.cmx cpdfspot.cmx cpdfpagelabels.cmx cpdfcreate.cmx cpdfannot.cmx cpdfxobject.cmx cpdfimpose.cmx cpdfchop.cmx cpdftweak.cmx cpdfprinttree.cmx cpdfua.cmx cpdftexttopdf.cmx cpdftoc.cmx cpdfjpeg.cmx cpdfjpeg2000.cmx cpdfpng.cmx cpdfimage.cmx cpdfdraw.cmx cpdfcomposition.cmx cpdfshape.cmx cpdfcolours.cmx cpdfdrawcontrol.cmx cpdfjs.cmx cpdfportfolio.cmx cpdfcommand.cmx cpdfcommandrun.cmx
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- ocamlfind ocamlopt -a         -g       -o cpdf.cmxa cpdfyojson.cmx cpdfxmlm.cmx cpdfutil.cmx cpdfunicodedata.cmx cpdferror.cmx cpdfdebug.cmx cpdfjson.cmx cpdfstrftime.cmx cpdfcoord.cmx cpdfattach.cmx cpdfpagespec.cmx cpdfposition.cmx cpdfpresent.cmx cpdfmetadata.cmx cpdfbookmarks.cmx cpdfpage.cmx cpdftruetype.cmx cpdfremovetext.cmx cpdfextracttext.cmx cpdfembed.cmx cpdffont.cmx cpdftype.cmx cpdfaddtext.cmx cpdfpad.cmx cpdfocg.cmx cpdfsqueeze.cmx cpdfdraft.cmx cpdfspot.cmx cpdfpagelabels.cmx cpdfcreate.cmx cpdfannot.cmx cpdfxobject.cmx cpdfimpose.cmx cpdfchop.cmx cpdftweak.cmx cpdfprinttree.cmx cpdfua.cmx cpdftexttopdf.cmx cpdftoc.cmx cpdfjpeg.cmx cpdfjpeg2000.cmx cpdfpng.cmx cpdfimage.cmx cpdfdraw.cmx cpdfcomposition.cmx cpdfshape.cmx cpdfcolours.cmx cpdfdrawcontrol.cmx cpdfjs.cmx cpdfportfolio.cmx cpdfcommand.cmx cpdfcommandrun.cmx
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
-> compiled  cpdf.2.9
-> removed   cpdf.2.9
Processing  4/4: [cpdf: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "install" (CWD=/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9)
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: 'cpdf' is up to date.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- ocamlfind ocamlc -a        -g        -o cpdf.cma cpdfyojson.cmo cpdfxmlm.cmo cpdfutil.cmo cpdfunicodedata.cmo cpdferror.cmo cpdfdebug.cmo cpdfjson.cmo cpdfstrftime.cmo cpdfcoord.cmo cpdfattach.cmo cpdfpagespec.cmo cpdfposition.cmo cpdfpresent.cmo cpdfmetadata.cmo cpdfbookmarks.cmo cpdfpage.cmo cpdftruetype.cmo cpdfremovetext.cmo cpdfextracttext.cmo cpdfembed.cmo cpdffont.cmo cpdftype.cmo cpdfaddtext.cmo cpdfpad.cmo cpdfocg.cmo cpdfsqueeze.cmo cpdfdraft.cmo cpdfspot.cmo cpdfpagelabels.cmo cpdfcreate.cmo cpdfannot.cmo cpdfxobject.cmo cpdfimpose.cmo cpdfchop.cmo cpdftweak.cmo cpdfprinttree.cmo cpdfua.cmo cpdftexttopdf.cmo cpdftoc.cmo cpdfjpeg.cmo cpdfjpeg2000.cmo cpdfpng.cmo cpdfimage.cmo cpdfdraw.cmo cpdfcomposition.cmo cpdfshape.cmo cpdfcolours.cmo cpdfdrawcontrol.cmo cpdfjs.cmo cpdfportfolio.cmo cpdfcommand.cmo cpdfcommandrun.cmo
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- rm -rf doc/cpdf/html/*
- ocamlfind ocamldoc -package unix,camlpdf -html -d doc/cpdf/html cpdfutil.mli cpdfunicodedata.mli cpdferror.mli cpdfdebug.mli cpdfjson.mli cpdfstrftime.mli cpdfcoord.mli cpdfattach.mli cpdfpagespec.mli cpdfposition.mli cpdfpresent.mli cpdfmetadata.mli cpdfbookmarks.mli cpdfpage.mli cpdftruetype.mli cpdfremovetext.mli cpdfextracttext.mli cpdfembed.mli cpdffont.mli cpdftype.mli cpdfaddtext.mli cpdfpad.mli cpdfocg.mli cpdfsqueeze.mli cpdfdraft.mli cpdfspot.mli cpdfpagelabels.mli cpdfcreate.mli cpdfannot.mli cpdfxobject.mli cpdfimpose.mli cpdfchop.mli cpdftweak.mli cpdfprinttree.mli cpdfua.mli cpdftexttopdf.mli cpdftoc.mli cpdfjpeg.mli cpdfjpeg2000.mli cpdfpng.mli cpdfimage.mli cpdfdraw.mli cpdfcomposition.mli cpdfshape.mli cpdfcolours.mli cpdfdrawcontrol.mli cpdfjs.mli cpdfportfolio.mli cpdfcommand.mli
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: 'cpdf' is up to date.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: Entering directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- make[1]: 'cpdf.cmxa' is up to date.
- make[1]: Leaving directory '/home/opam/.opam/5.4/.opam-switch/build/cpdf.2.9'
- 
- Installing library with ocamlfind
- ocamlfind install  cpdf META cpdf.cma cpdfyojson.mli cpdfxmlm.mli cpdfutil.mli cpdfunicodedata.mli cpdferror.mli cpdfdebug.mli cpdfjson.mli cpdfstrftime.mli cpdfcoord.mli cpdfattach.mli cpdfpagespec.mli cpdfposition.mli cpdfpresent.mli cpdfmetadata.mli cpdfbookmarks.mli cpdfpage.mli cpdftruetype.mli cpdfremovetext.mli cpdfextracttext.mli cpdfembed.mli cpdffont.mli cpdftype.mli cpdfaddtext.mli cpdfpad.mli cpdfocg.mli cpdfsqueeze.mli cpdfdraft.mli cpdfspot.mli cpdfpagelabels.mli cpdfcreate.mli cpdfannot.mli cpdfxobject.mli cpdfimpose.mli cpdfchop.mli cpdftweak.mli cpdfprinttree.mli cpdfua.mli cpdftexttopdf.mli cpdftoc.mli cpdfjpeg.mli cpdfjpeg2000.mli cpdfpng.mli cpdfimage.mli cpdfdraw.mli cpdfcomposition.mli cpdfshape.mli cpdfcolours.mli cpdfdrawcontrol.mli cpdfjs.mli cpdfportfolio.mli cpdfcommand.mli cpdfyojson.cmi cpdfxmlm.cmi cpdfutil.cmi cpdfunicodedata.cmi cpdferror.cmi cpdfdebug.cmi cpdfjson.cmi cpdfstrftime.cmi cpdfcoord.cmi cpdfattach.cmi cpdfpagespec.cmi cpdfposition.cmi cpdfpresent.cmi cpdfmetadata.cmi cpdfbookmarks.cmi cpdfpage.cmi cpdftruetype.cmi cpdfremovetext.cmi cpdfextracttext.cmi cpdfembed.cmi cpdffont.cmi cpdftype.cmi cpdfaddtext.cmi cpdfpad.cmi cpdfocg.cmi cpdfsqueeze.cmi cpdfdraft.cmi cpdfspot.cmi cpdfpagelabels.cmi cpdfcreate.cmi cpdfannot.cmi cpdfxobject.cmi cpdfimpose.cmi cpdfchop.cmi cpdftweak.cmi cpdfprinttree.cmi cpdfua.cmi cpdftexttopdf.cmi cpdftoc.cmi cpdfjpeg.cmi cpdfjpeg2000.cmi cpdfpng.cmi cpdfimage.cmi cpdfdraw.cmi cpdfcomposition.cmi cpdfshape.cmi cpdfcolours.cmi cpdfdrawcontrol.cmi cpdfjs.cmi cpdfportfolio.cmi cpdfcommand.cmi cpdfyojson.cmti cpdfxmlm.cmti cpdfutil.cmti cpdfunicodedata.cmti cpdferror.cmti cpdfdebug.cmti cpdfjson.cmti cpdfstrftime.cmti cpdfcoord.cmti cpdfattach.cmti cpdfpagespec.cmti cpdfposition.cmti cpdfpresent.cmti cpdfmetadata.cmti cpdfbookmarks.cmti cpdfpage.cmti cpdftruetype.cmti cpdfremovetext.cmti cpdfextracttext.cmti cpdfembed.cmti cpdffont.cmti cpdftype.cmti cpdfaddtext.cmti cpdfpad.cmti cpdfocg.cmti cpdfsqueeze.cmti cpdfdraft.cmti cpdfspot.cmti cpdfpagelabels.cmti cpdfcreate.cmti cpdfannot.cmti cpdfxobject.cmti cpdfimpose.cmti cpdfchop.cmti cpdftweak.cmti cpdfprinttree.cmti cpdfua.cmti cpdftexttopdf.cmti cpdftoc.cmti cpdfjpeg.cmti cpdfjpeg2000.cmti cpdfpng.cmti cpdfimage.cmti cpdfdraw.cmti cpdfcomposition.cmti cpdfshape.cmti cpdfcolours.cmti cpdfdrawcontrol.cmti cpdfjs.cmti cpdfportfolio.cmti cpdfcommand.cmti cpdf.a cpdf.cmxa cpdfyojson.cmx cpdfxmlm.cmx cpdfutil.cmx cpdfunicodedata.cmx cpdferror.cmx cpdfdebug.cmx cpdfjson.cmx cpdfstrftime.cmx cpdfcoord.cmx cpdfattach.cmx cpdfpagespec.cmx cpdfposition.cmx cpdfpresent.cmx cpdfmetadata.cmx cpdfbookmarks.cmx cpdfpage.cmx cpdftruetype.cmx cpdfremovetext.cmx cpdfextracttext.cmx cpdfembed.cmx cpdffont.cmx cpdftype.cmx cpdfaddtext.cmx cpdfpad.cmx cpdfocg.cmx cpdfsqueeze.cmx cpdfdraft.cmx cpdfspot.cmx cpdfpagelabels.cmx cpdfcreate.cmx cpdfannot.cmx cpdfxobject.cmx cpdfimpose.cmx cpdfchop.cmx cpdftweak.cmx cpdfprinttree.cmx cpdfua.cmx cpdftexttopdf.cmx cpdftoc.cmx cpdfjpeg.cmx cpdfjpeg2000.cmx cpdfpng.cmx cpdfimage.cmx cpdfdraw.cmx cpdfcomposition.cmx cpdfshape.cmx cpdfcolours.cmx cpdfdrawcontrol.cmx cpdfjs.cmx cpdfportfolio.cmx cpdfcommand.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcommand.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfportfolio.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjs.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdrawcontrol.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcolours.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfshape.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcomposition.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraw.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimage.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpng.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg2000.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftoc.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftexttopdf.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfua.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfprinttree.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftweak.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfchop.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimpose.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxobject.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfannot.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcreate.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagelabels.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfspot.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraft.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfsqueeze.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfocg.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpad.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfaddtext.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftype.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdffont.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfembed.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfextracttext.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfremovetext.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftruetype.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpage.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfbookmarks.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfmetadata.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpresent.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfposition.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagespec.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfattach.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcoord.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfstrftime.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjson.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdebug.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdferror.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfunicodedata.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfutil.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxmlm.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfyojson.cmx
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdf.cmxa
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdf.a
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcommand.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfportfolio.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjs.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdrawcontrol.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcolours.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfshape.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcomposition.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraw.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimage.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpng.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg2000.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftoc.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftexttopdf.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfua.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfprinttree.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftweak.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfchop.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimpose.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxobject.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfannot.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcreate.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagelabels.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfspot.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraft.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfsqueeze.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfocg.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpad.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfaddtext.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftype.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdffont.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfembed.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfextracttext.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfremovetext.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftruetype.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpage.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfbookmarks.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfmetadata.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpresent.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfposition.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagespec.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfattach.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcoord.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfstrftime.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjson.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdebug.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdferror.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfunicodedata.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfutil.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxmlm.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfyojson.cmti
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcommand.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfportfolio.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjs.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdrawcontrol.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcolours.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfshape.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcomposition.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraw.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimage.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpng.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg2000.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftoc.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftexttopdf.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfua.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfprinttree.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftweak.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfchop.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimpose.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxobject.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfannot.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcreate.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagelabels.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfspot.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraft.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfsqueeze.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfocg.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpad.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfaddtext.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftype.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdffont.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfembed.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfextracttext.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfremovetext.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftruetype.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpage.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfbookmarks.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfmetadata.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpresent.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfposition.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagespec.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfattach.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcoord.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfstrftime.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjson.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdebug.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdferror.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfunicodedata.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfutil.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxmlm.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfyojson.cmi
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcommand.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfportfolio.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjs.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdrawcontrol.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcolours.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfshape.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcomposition.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraw.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimage.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpng.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg2000.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjpeg.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftoc.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftexttopdf.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfua.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfprinttree.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftweak.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfchop.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfimpose.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxobject.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfannot.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcreate.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagelabels.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfspot.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdraft.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfsqueeze.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfocg.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpad.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfaddtext.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftype.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdffont.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfembed.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfextracttext.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfremovetext.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdftruetype.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpage.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfbookmarks.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfmetadata.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpresent.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfposition.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfpagespec.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfattach.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfcoord.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfstrftime.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfjson.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfdebug.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdferror.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfunicodedata.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfutil.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfxmlm.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdfyojson.mli
- Installed /home/opam/.opam/5.4/lib/cpdf/cpdf.cma
- Installed /home/opam/.opam/5.4/lib/cpdf/META
- 
- Installation successful.
-> installed cpdf.2.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:39.25 ---> saved as "42739b7f6b93eb55d3e500efb46e834f2c950248fd21c4570778abf5d3939fb4"
Job succeeded
2026-03-25 19:39.31: Job succeeded