Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

INTERNAL: Add support for Heroku-24 stack #1

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

swishstache
Copy link

@swishstache swishstache commented Sep 6, 2024

Heroku is deprecating the Heroku-20 stack and we're migrating to Heroku-24.

Changes

  • Removes the heroku-16 & heroku-20 stacks
  • Removes the heroku-16 asset
  • Adds a build for heroku-24
  • Adds an asset for heroku-24
  • Changes build script so that it works with Ubuntu 24.04

The Heroku-20 asset is left in the repo so builds on that stack continue to work.

QA

  • ensure same version (see comparison below)
  • ensure same file type support (see comparison below)
  • test file types
  • confirm asset installs during an application build and works when called inside a dyno (requires approval of this PR)

@@ -0,0 +1 @@
.DS_Store
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Damn macOS litter


build-heroku-16:
Copy link
Author

@swishstache swishstache Sep 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

heroku hasn't supported this stack since April 2021

@echo "Building imagemagick in Docker for heroku-16..."
@docker run -v $(shell pwd):/buildpack --rm -it -e "STACK=heroku-16" -w /buildpack heroku/heroku:16-build scripts/build_imagemagick imagemagick-heroku-16.tar.gz

build-heroku-20:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This stack reaches end of life April 30, 2025

@docker run -v $(shell pwd):/buildpack --rm -it -e "STACK=heroku-20" -w /buildpack heroku/heroku:20-build scripts/build_imagemagick imagemagick-heroku-20.tar.gz
build-heroku-24:
@echo "Building imagemagick in Docker for heroku-24..."
@docker run --user root -v $(shell pwd):/buildpack --rm -it -e "STACK=heroku-24" -w /buildpack heroku/heroku:24-build scripts/build_imagemagick imagemagick-heroku-24.tar.gz
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unlike past heroku/heroku:N-build images, "heroku/heroku:24-build" sets the default user to "heroku" as its last step. That means the build_imagemagick script fails in a few places due to lack of permissions (such as writing to "/etc/apt/"). I set the user to root to ensure the script can execute without changes.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

heroku hasn't supported this stack since April 2021. We don't have (and can't have) any applications using Heroku-16 so, this is safe to delete.

@@ -13,56 +13,23 @@ function handle_error() {
}
trap handle_error EXIT SIGINT

function add_xenial_repositories() {
Copy link
Author

@swishstache swishstache Sep 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even when building for Heroku-20, this script was reaching back to xenial so it could apt-get install libjasper-dev for imagemagick. That library has been superseded by https://github.com/uclouvain/openjpeg which is included in Heroku-24.

$ ldconfig -p | grep libopenjp2
libopenjp2.so.7 (libc6,x86-64) => /lib/x86_64-linux-gnu/libopenjp2.so.7
libopenjp2.so (libc6,x86-64) => /lib/x86_64-linux-gnu/libopenjp2.so


echo "⚙️ Getting libraries and dependencies..."
apt-get update -y
apt-get install -y build-essential autoconf libtool git-core
if [[ $STACK == "heroku-20" ]]; then
echo "⚙️ Getting additional dependencies for the selected stack..."
apt-get install -y libomp5 libomp-10-dev libjasper-dev
Copy link
Author

@swishstache swishstache Sep 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See comment about libjasper-dev..

libomp5 libomp-10-dev are for OpenMP support. "heroku/heroku:24-build" uses gcc 13.2.0 which has support for OpenMP built-in (see https://gcc.gnu.org/wiki/openmp. and https://www.openmp.org/resources/openmp-compilers-tools/).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

$ apt show libomp-dev
Package: libomp-dev
Version: 1:18.0-59~exp2
Priority: extra
Section: universe/libdevel
Source: llvm-defaults (0.59~exp2)
Origin: Ubuntu
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: LLVM Packaging Team <[email protected]>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 11.3 kB
Depends: libomp-18-dev (>= 18~)
Download-Size: 5366 B
APT-Sources: http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages
Description: LLVM OpenMP runtime - dev package

$ apt show libomp5
Package: libomp5
Version: 1:18.0-59~exp2
Priority: extra
Section: universe/libs
Source: llvm-defaults (0.59~exp2)
Origin: Ubuntu
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: LLVM Packaging Team <[email protected]>
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 11.3 kB
Depends: libomp5-18 (>= 18~)
Download-Size: 5348 B
APT-Sources: http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages
Description: LLVM OpenMP runtime

Comment on lines -62 to -65
cp /usr/local/lib/libde265.so.0 $WORK_DIR/imagemagick/lib
cp /usr/local/lib/libheif.so.1 $WORK_DIR/imagemagick/lib
cp /usr/lib/x86_64-linux-gnu/libomp.so.5 $WORK_DIR/imagemagick/lib
cp /usr/lib/x86_64-linux-gnu/libiomp5.so $WORK_DIR/imagemagick/lib
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these ship with the heroku-24 image

cd $WORK_DIR/libde265
./autogen.sh && ./configure && make && make install

# install the libheif library
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This lib is now part of heroku-24

$ ldconfig -p | grep libheif
libheif.so.1 (libc6,x86-64) => /lib/x86_64-linux-gnu/libheif.so.1
libheif.so (libc6,x86-64) => /lib/x86_64-linux-gnu/libheif.so

apt-get build-dep -y imagemagick libmagickcore-dev

# install the libde265 library
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This lib is now part of heroku-24

$ ldconfig -p | grep libde265
libde265.so.0 (libc6,x86-64) => /lib/x86_64-linux-gnu/libde265.so.0
libde265.so (libc6,x86-64) => /lib/x86_64-linux-gnu/libde265.so

git clone https://github.com/ImageMagick/ImageMagick.git $WORK_DIR/imagemagick
# get, configure and install imagemagick
echo "⚙️ Installing imagemagick version 7.0.11-5..."
git clone --depth 1 --branch 7.0.11-5 https://github.com/ImageMagick/ImageMagick.git $WORK_DIR/imagemagick
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

---depth 1 - don't clone the whole repo.

--branch 7.0.11-5 - only clone the tag "7.0.11-5".

@swishstache
Copy link
Author

Build script output

⚙️ Getting libraries and dependencies...
Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
Get:2 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [409 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB]
Get:4 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [356 kB]
Get:5 https://apt.postgresql.org/pub/repos/apt noble-pgdg InRelease [129 kB]
Get:6 https://apt.postgresql.org/pub/repos/apt noble-pgdg/main amd64 Packages [476 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble/universe Sources [24.3 MB]
Get:10 http://archive.ubuntu.com/ubuntu noble/main Sources [1713 kB]
Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1808 kB]
Get:12 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB]
Get:13 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [467 kB]
Get:14 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [603 kB]
Get:15 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [11.5 kB]
Fetched 50.2 MB in 5s (10.9 MB/s)
Reading package lists... Done
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Note, selecting 'git' instead of 'git-core'
build-essential is already the newest version (12.10ubuntu1).
autoconf is already the newest version (2.71-3).
libtool is already the newest version (2.4.7-7build1).
git is already the newest version (1:2.43.0-1ubuntu7.1).
0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
Reading package lists... Done
Picking 'imagemagick' as source package instead of 'libmagickcore-dev'
Building dependency tree... Done
Reading state information... Done
The following NEW packages will be installed:
  autopoint bsdextrautils chrpath cm-super-minimal debhelper debugedit dh-autoreconf dh-exec dh-strip-nondeterminism diffstat doxygen doxygen-latex dwz fonts-lmodern fonts-tuffy ghostscript gir1.2-pango-1.0
  graphviz groff-base intltool-debian iso-codes jdupes libaliased-perl libann0 libapache-pom-java libapt-pkg-perl libarchive-zip-perl libavahi-client3 libavahi-common-data libavahi-common3
  libb-hooks-endofscope-perl libb-hooks-op-check-perl libberkeleydb-perl libcapture-tiny-perl libcdt5 libcgi-pm-perl libcgraph6 libclang-cpp18 libclang1-18 libclass-data-inheritable-perl
  libclass-method-modifiers-perl libclass-xsaccessor-perl libclone-perl libcommons-logging-java libcommons-parent-java libconfig-tiny-perl libconst-fast-perl libcpanel-json-xs-perl libcups2t64
  libdata-dpath-perl libdata-messagepack-perl libdata-optlist-perl libdata-validate-domain-perl libdata-validate-ip-perl libdata-validate-uri-perl libdatrie-dev libdbus-1-3 libdebhelper-perl
  libdevel-callchecker-perl libdevel-size-perl libdevel-stacktrace-perl libdw1t64 libdynaloader-functions-perl libemail-address-xs-perl libencode-locale-perl libexception-class-perl libfftw3-bin
  libfftw3-dev libfftw3-long3 libfftw3-quad3 libfftw3-single3 libfile-basedir-perl libfile-find-rule-perl libfile-homedir-perl libfile-listing-perl libfile-stripnondeterminism-perl libfile-which-perl
  libfmt9 libfont-ttf-perl libfontbox-java libfribidi-dev libgraphite2-dev libgs-common libgs10 libgs10-common libgts-0.7-5t64 libgvc6 libgvpr2 libharfbuzz-cairo0 libharfbuzz-dev libharfbuzz-subset0
  libhtml-form-perl libhtml-html5-entities-perl libhtml-parser-perl libhtml-tagset-perl libhtml-tokeparser-simple-perl libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl libhttp-message-perl
  libhttp-negotiate-perl libijs-0.35 libimport-into-perl libio-html-perl libio-interactive-perl libio-socket-ssl-perl libio-string-perl libipc-run3-perl libipc-system-simple-perl libiterator-perl
  libiterator-util-perl libjbig2dec0 libjodycode3t64 libjs-jquery libjson-maybexs-perl libkpathsea6 liblab-gamut1 liblist-compare-perl liblist-someutils-perl liblist-utilsby-perl libllvm18
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmarkdown2 libmime-charset-perl libmldbm-perl libmodule-implementation-perl libmodule-runtime-perl libmoo-perl libmoox-aliases-perl libmouse-perl
  libnamespace-clean-perl libnet-domain-tld-perl libnet-http-perl libnet-ipv6addr-perl libnet-netmask-perl libnet-ssleay-perl libnetaddr-ip-perl libnumber-compare-perl libpackage-stash-perl libpango1.0-dev
  libpangoxft-1.0-0 libpaper-utils libpaper1 libparams-classify-perl libparams-util-perl libpath-tiny-perl libpathplan4 libpdfbox-java libperl-dev libperlio-gzip-perl libperlio-utf8-strict-perl libpipeline1
  libpotrace0 libproc-processtable-perl libptexenc1 libraw-dev libregexp-wildcards-perl librole-tiny-perl librsvg2-bin libsereal-decoder-perl libsereal-encoder-perl libsombok3 libsort-versions-perl
  libstrictures-perl libsub-exporter-perl libsub-exporter-progressive-perl libsub-identify-perl libsub-install-perl libsub-name-perl libsub-override-perl libsub-quote-perl libsynctex2
  libsyntax-keyword-try-perl libteckit0 libterm-readkey-perl libtexlua53-5 libtext-glob-perl libtext-levenshteinxs-perl libtext-markdown-discount-perl libtext-xslate-perl libthai-dev libtime-duration-perl
  libtime-moment-perl libtimedate-perl libtry-tiny-perl libuchardet0 libunicode-linebreak-perl libunicode-utf8-perl liburi-perl libvariable-magic-perl libwww-mechanize-perl libwww-perl
  libwww-robotrules-perl libxapian30 libxaw7 libxft-dev libxft2 libxi6 libxml-libxml-perl libxml-namespacesupport-perl libxml-sax-base-perl libxml-sax-perl libxml2-utils libxmu6 libxs-parse-keyword-perl
  libyaml-libyaml-perl libyaml-tiny-perl libzzip-0-13t64 lintian lmodern lzip lzop man-db pango1.0-tools patchutils perl-openssl-defaults pkg-kde-tools po-debconf poppler-data preview-latex-style t1utils
  tex-common texlive-base texlive-binaries texlive-extra-utils texlive-font-utils texlive-fonts-recommended texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-luatex texlive-pictures
  texlive-plain-generic xdg-utils xsltproc
0 upgraded, 236 newly installed, 0 to remove and 3 not upgraded.
Need to get 324 MB of archives.
After this operation, 973 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu noble/main amd64 poppler-data all 0.4.12-1 [2060 kB]
Get:2 http://archive.ubuntu.com/ubuntu noble/main amd64 iso-codes all 4.16.0-1 [3492 kB]
Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdbus-1-3 amd64 1.14.10-4ubuntu4.1 [210 kB]
Get:4 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 bsdextrautils amd64 2.39.3-9ubuntu6.1 [73.6 kB]
Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 libuchardet0 amd64 0.0.8-1build1 [75.3 kB]
Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 groff-base amd64 1.23.0-3build2 [1020 kB]
Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libpipeline1 amd64 1.5.7-2 [23.6 kB]
Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 man-db amd64 2.12.0-4build2 [1237 kB]
Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 autopoint all 0.21-14ubuntu2 [422 kB]
Get:10 http://archive.ubuntu.com/ubuntu noble/universe amd64 chrpath amd64 0.16-2build1 [12.8 kB]
Get:11 http://archive.ubuntu.com/ubuntu noble/universe amd64 tex-common all 6.18 [32.8 kB]
Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 libpaper1 amd64 1.1.29build1 [13.4 kB]
Get:13 http://archive.ubuntu.com/ubuntu noble/main amd64 libpaper-utils amd64 1.1.29build1 [8650 B]
Get:14 http://archive.ubuntu.com/ubuntu noble/main amd64 libkpathsea6 amd64 2023.20230311.66589-9build3 [63.0 kB]
Get:15 http://archive.ubuntu.com/ubuntu noble/main amd64 libptexenc1 amd64 2023.20230311.66589-9build3 [40.4 kB]
Get:16 http://archive.ubuntu.com/ubuntu noble/main amd64 libsynctex2 amd64 2023.20230311.66589-9build3 [59.6 kB]
Get:17 http://archive.ubuntu.com/ubuntu noble/main amd64 libtexlua53-5 amd64 2023.20230311.66589-9build3 [123 kB]
Get:18 http://archive.ubuntu.com/ubuntu noble/main amd64 t1utils amd64 1.41-4build3 [61.3 kB]
Get:19 http://archive.ubuntu.com/ubuntu noble/universe amd64 libpotrace0 amd64 1.16-2build1 [17.7 kB]
Get:20 http://archive.ubuntu.com/ubuntu noble/universe amd64 libteckit0 amd64 2.5.12+ds1-1 [411 kB]
Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmu6 amd64 2:1.1.3-3build2 [47.6 kB]
Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 libxaw7 amd64 2:1.0.14-1build2 [187 kB]
Get:23 http://archive.ubuntu.com/ubuntu noble/main amd64 libxi6 amd64 2:1.8.1-1build1 [32.4 kB]
Get:24 http://archive.ubuntu.com/ubuntu noble/universe amd64 libzzip-0-13t64 amd64 0.13.72+dfsg.1-1.2build1 [28.1 kB]
Get:25 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-binaries amd64 2023.20230311.66589-9build3 [8529 kB]
Get:26 http://archive.ubuntu.com/ubuntu noble/main amd64 xdg-utils all 1.1.3-4.1ubuntu3 [62.0 kB]
Get:27 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-base all 2023.20240207-1 [21.7 MB]
Get:28 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-lmodern all 2.005-1 [4799 kB]
Get:29 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-latex-base all 2023.20240207-1 [1238 kB]
Get:30 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-latex-recommended all 2023.20240207-1 [8826 kB]
Get:31 http://archive.ubuntu.com/ubuntu noble/universe amd64 cm-super-minimal all 0.3.4-17 [5777 kB]
Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 libdebhelper-perl all 13.14.1ubuntu5 [89.8 kB]
Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 dh-autoreconf all 20 [16.1 kB]
Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libarchive-zip-perl all 1.68-1 [90.2 kB]
Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-override-perl all 0.10-1 [10.0 kB]
Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-stripnondeterminism-perl all 1.13.1-1 [18.1 kB]
Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 dh-strip-nondeterminism all 1.13.1-1 [5362 B]
Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libdw1t64 amd64 0.190-1.1build4 [261 kB]
Get:39 http://archive.ubuntu.com/ubuntu noble/main amd64 debugedit amd64 1:5.0-5build2 [46.1 kB]
Get:40 http://archive.ubuntu.com/ubuntu noble/main amd64 dwz amd64 0.15-1build6 [115 kB]
Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 intltool-debian all 0.35.0+20060710.6 [23.2 kB]
Get:42 http://archive.ubuntu.com/ubuntu noble/main amd64 po-debconf all 1.0.21+nmu1 [233 kB]
Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 debhelper all 13.14.1ubuntu5 [869 kB]
Get:44 http://archive.ubuntu.com/ubuntu noble/main amd64 diffstat amd64 1.66-1build1 [29.7 kB]
Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libllvm18 amd64 1:18.1.3-1ubuntu1 [27.5 MB]
Get:46 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libclang-cpp18 amd64 1:18.1.3-1ubuntu1 [13.5 MB]
Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libclang1-18 amd64 1:18.1.3-1ubuntu1 [7803 kB]
Get:48 http://archive.ubuntu.com/ubuntu noble/universe amd64 libfmt9 amd64 9.1.0+ds1-2 [63.0 kB]
Get:49 http://archive.ubuntu.com/ubuntu noble/universe amd64 libxapian30 amd64 1.4.22-1build1 [716 kB]
Get:50 http://archive.ubuntu.com/ubuntu noble/universe amd64 doxygen amd64 1.9.8+ds-2build5 [5201 kB]
Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-which-perl all 1.27-2 [12.5 kB]
Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-homedir-perl all 1.006-2 [37.0 kB]
Get:53 http://archive.ubuntu.com/ubuntu noble/universe amd64 libsombok3 amd64 2.4.0-2build1 [29.4 kB]
Get:54 http://archive.ubuntu.com/ubuntu noble/universe amd64 libmime-charset-perl all 1.013.1-2 [31.0 kB]
Get:55 http://archive.ubuntu.com/ubuntu noble/universe amd64 libunicode-linebreak-perl amd64 0.0.20190101-1build7 [92.6 kB]
Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libyaml-tiny-perl all 1.74-1 [25.3 kB]
Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 libjs-jquery all 3.6.1+dfsg+~3.5.14-1 [328 kB]
Get:58 http://archive.ubuntu.com/ubuntu noble/universe amd64 lmodern all 2.005-1 [9542 kB]
Get:59 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-luatex all 2023.20240207-1 [25.8 MB]
Get:60 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-plain-generic all 2023.20240207-1 [29.0 MB]
Get:61 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-extra-utils all 2023.20240207-1 [63.0 MB]
Get:62 http://archive.ubuntu.com/ubuntu noble/universe amd64 libapache-pom-java all 29-2 [5284 B]
Get:63 http://archive.ubuntu.com/ubuntu noble/universe amd64 libcommons-parent-java all 56-1 [10.7 kB]
Get:64 http://archive.ubuntu.com/ubuntu noble/universe amd64 libcommons-logging-java all 1.3.0-1ubuntu1 [63.8 kB]
Get:65 http://archive.ubuntu.com/ubuntu noble/universe amd64 libfontbox-java all 1:1.8.16-5 [208 kB]
Get:66 http://archive.ubuntu.com/ubuntu noble/universe amd64 libpdfbox-java all 1:1.8.16-5 [5521 kB]
Get:67 http://archive.ubuntu.com/ubuntu noble/universe amd64 preview-latex-style all 13.2-1 [347 kB]
Get:68 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-pictures all 2023.20240207-1 [16.7 MB]
Get:69 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-latex-extra all 2023.20240207-1 [19.2 MB]
Get:70 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-font-utils all 2023.20240207-1 [7035 kB]
Get:71 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgs-common all 10.02.1~dfsg1-0ubuntu7.3 [175 kB]
Get:72 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgs10-common all 10.02.1~dfsg1-0ubuntu7.3 [488 kB]
Get:73 http://archive.ubuntu.com/ubuntu noble/main amd64 libavahi-common-data amd64 0.8-13ubuntu6 [29.7 kB]
Get:74 http://archive.ubuntu.com/ubuntu noble/main amd64 libavahi-common3 amd64 0.8-13ubuntu6 [23.3 kB]
Get:75 http://archive.ubuntu.com/ubuntu noble/main amd64 libavahi-client3 amd64 0.8-13ubuntu6 [26.8 kB]
Get:76 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libcups2t64 amd64 2.4.7-1.2ubuntu7.2 [272 kB]
Get:77 http://archive.ubuntu.com/ubuntu noble/main amd64 libijs-0.35 amd64 0.35-15.1build1 [15.3 kB]
Get:78 http://archive.ubuntu.com/ubuntu noble/main amd64 libjbig2dec0 amd64 0.20-1build3 [65.0 kB]
Get:79 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgs10 amd64 10.02.1~dfsg1-0ubuntu7.3 [3896 kB]
Get:80 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 ghostscript amd64 10.02.1~dfsg1-0ubuntu7.3 [43.4 kB]
Get:81 http://archive.ubuntu.com/ubuntu noble/universe amd64 texlive-fonts-recommended all 2023.20240207-1 [4973 kB]
Get:82 http://archive.ubuntu.com/ubuntu noble/universe amd64 doxygen-latex all 1.9.8+ds-2build5 [4334 B]
Get:83 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-tuffy all 20120614-3 [231 kB]
Get:84 http://archive.ubuntu.com/ubuntu noble/main amd64 libxft2 amd64 2.3.6-1build1 [45.3 kB]
Get:85 http://archive.ubuntu.com/ubuntu noble/main amd64 libpangoxft-1.0-0 amd64 1.52.1+ds-1build1 [20.3 kB]
Get:86 http://archive.ubuntu.com/ubuntu noble/main amd64 gir1.2-pango-1.0 amd64 1.52.1+ds-1build1 [34.8 kB]
Get:87 http://archive.ubuntu.com/ubuntu noble/universe amd64 libann0 amd64 1.1.2+doc-9build1 [25.5 kB]
Get:88 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 libcdt5 amd64 2.42.2-9ubuntu0.1 [21.6 kB]
Get:89 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 libcgraph6 amd64 2.42.2-9ubuntu0.1 [44.6 kB]
Get:90 http://archive.ubuntu.com/ubuntu noble/universe amd64 libgts-0.7-5t64 amd64 0.7.6+darcs121130-5.2build1 [161 kB]
Get:91 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 libpathplan4 amd64 2.42.2-9ubuntu0.1 [24.0 kB]
Get:92 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 libgvc6 amd64 2.42.2-9ubuntu0.1 [716 kB]
Get:93 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 libgvpr2 amd64 2.42.2-9ubuntu0.1 [187 kB]
Get:94 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 liblab-gamut1 amd64 2.42.2-9ubuntu0.1 [1886 kB]
Get:95 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 graphviz amd64 2.42.2-9ubuntu0.1 [642 kB]
Get:96 http://archive.ubuntu.com/ubuntu noble/universe amd64 libjodycode3t64 amd64 3.1-6.1ubuntu1 [17.4 kB]
Get:97 http://archive.ubuntu.com/ubuntu noble/universe amd64 jdupes amd64 1.27.3-5build1 [53.6 kB]
Get:98 http://archive.ubuntu.com/ubuntu noble/main amd64 libaliased-perl all 0.34-3 [12.8 kB]
Get:99 http://archive.ubuntu.com/ubuntu noble/main amd64 libapt-pkg-perl amd64 0.1.40build7 [68.4 kB]
Get:100 http://archive.ubuntu.com/ubuntu noble/main amd64 libb-hooks-op-check-perl amd64 0.22-3build1 [9518 B]
Get:101 http://archive.ubuntu.com/ubuntu noble/main amd64 libdynaloader-functions-perl all 0.003-3 [12.1 kB]
Get:102 http://archive.ubuntu.com/ubuntu noble/main amd64 libdevel-callchecker-perl amd64 0.008-2build3 [13.2 kB]
Get:103 http://archive.ubuntu.com/ubuntu noble/main amd64 libparams-classify-perl amd64 0.015-2build5 [20.1 kB]
Get:104 http://archive.ubuntu.com/ubuntu noble/main amd64 libmodule-runtime-perl all 0.016-2 [16.4 kB]
Get:105 http://archive.ubuntu.com/ubuntu noble/main amd64 libtry-tiny-perl all 0.31-2 [20.8 kB]
Get:106 http://archive.ubuntu.com/ubuntu noble/main amd64 libmodule-implementation-perl all 0.09-2 [12.0 kB]
Get:107 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-exporter-progressive-perl all 0.001013-3 [6718 B]
Get:108 http://archive.ubuntu.com/ubuntu noble/main amd64 libvariable-magic-perl amd64 0.63-1build3 [35.1 kB]
Get:109 http://archive.ubuntu.com/ubuntu noble/main amd64 libb-hooks-endofscope-perl all 0.28-1 [15.8 kB]
Get:110 http://archive.ubuntu.com/ubuntu noble/main amd64 libberkeleydb-perl amd64 0.64-2build4 [120 kB]
Get:111 http://archive.ubuntu.com/ubuntu noble/main amd64 libcapture-tiny-perl all 0.48-2 [20.2 kB]
Get:112 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-tagset-perl all 3.20-6 [11.3 kB]
Get:113 http://archive.ubuntu.com/ubuntu noble/main amd64 liburi-perl all 5.27-1 [88.0 kB]
Get:114 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-parser-perl amd64 3.81-1build3 [85.8 kB]
Get:115 http://archive.ubuntu.com/ubuntu noble/main amd64 libcgi-pm-perl all 4.63-1 [185 kB]
Get:116 http://archive.ubuntu.com/ubuntu noble/main amd64 libclass-data-inheritable-perl all 0.08-3 [8084 B]
Get:117 http://archive.ubuntu.com/ubuntu noble/main amd64 libclass-method-modifiers-perl all 2.15-1 [16.1 kB]
Get:118 http://archive.ubuntu.com/ubuntu noble/main amd64 libclass-xsaccessor-perl amd64 1.19-4build4 [33.1 kB]
Get:119 http://archive.ubuntu.com/ubuntu noble/main amd64 libclone-perl amd64 0.46-1build3 [10.7 kB]
Get:120 http://archive.ubuntu.com/ubuntu noble/main amd64 libconfig-tiny-perl all 2.30-1 [14.7 kB]
Get:121 http://archive.ubuntu.com/ubuntu noble/main amd64 libparams-util-perl amd64 1.102-2build3 [21.2 kB]
Get:122 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-install-perl all 0.929-1 [9764 B]
Get:123 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-optlist-perl all 0.114-1 [9708 B]
Get:124 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-exporter-perl all 0.990-1 [49.0 kB]
Get:125 http://archive.ubuntu.com/ubuntu noble/main amd64 libconst-fast-perl all 0.014-2 [8034 B]
Get:126 http://archive.ubuntu.com/ubuntu noble/main amd64 libcpanel-json-xs-perl amd64 4.37-1build3 [114 kB]
Get:127 http://archive.ubuntu.com/ubuntu noble/main amd64 libdevel-stacktrace-perl all 2.0500-1 [22.1 kB]
Get:128 http://archive.ubuntu.com/ubuntu noble/main amd64 libexception-class-perl all 1.45-1 [28.6 kB]
Get:129 http://archive.ubuntu.com/ubuntu noble/main amd64 libiterator-perl all 0.03+ds1-2 [18.8 kB]
Get:130 http://archive.ubuntu.com/ubuntu noble/main amd64 libiterator-util-perl all 0.02+ds1-2 [14.1 kB]
Get:131 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-dpath-perl all 0.59-1 [39.2 kB]
Get:132 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-messagepack-perl amd64 1.02-1build4 [31.1 kB]
Get:133 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-domain-tld-perl all 1.75-3 [29.4 kB]
Get:134 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-validate-domain-perl all 0.10-1.1 [9992 B]
Get:135 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-ipv6addr-perl all 1.02-1 [21.0 kB]
Get:136 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-netmask-perl all 2.0002-2 [24.8 kB]
Get:137 http://archive.ubuntu.com/ubuntu noble/main amd64 libnetaddr-ip-perl amd64 4.079+dfsg-2build4 [79.9 kB]
Get:138 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-validate-ip-perl all 0.31-1 [17.2 kB]
Get:139 http://archive.ubuntu.com/ubuntu noble/main amd64 libdata-validate-uri-perl all 0.07-3 [10.8 kB]
Get:140 http://archive.ubuntu.com/ubuntu noble/main amd64 libdatrie-dev amd64 0.2.13-3build1 [19.4 kB]
Get:141 http://archive.ubuntu.com/ubuntu noble/main amd64 libemail-address-xs-perl amd64 1.05-1build4 [29.1 kB]
Get:142 http://archive.ubuntu.com/ubuntu noble/main amd64 libencode-locale-perl all 1.05-3 [11.6 kB]
Get:143 http://archive.ubuntu.com/ubuntu noble/main amd64 libfftw3-long3 amd64 3.3.10-1ubuntu3 [374 kB]
Get:144 http://archive.ubuntu.com/ubuntu noble/main amd64 libfftw3-quad3 amd64 3.3.10-1ubuntu3 [658 kB]
Get:145 http://archive.ubuntu.com/ubuntu noble/main amd64 libfftw3-single3 amd64 3.3.10-1ubuntu3 [868 kB]
Get:146 http://archive.ubuntu.com/ubuntu noble/main amd64 libfftw3-bin amd64 3.3.10-1ubuntu3 [39.2 kB]
Get:147 http://archive.ubuntu.com/ubuntu noble/main amd64 libfftw3-dev amd64 3.3.10-1ubuntu3 [2372 kB]
Get:148 http://archive.ubuntu.com/ubuntu noble/main amd64 libipc-system-simple-perl all 1.30-2 [22.3 kB]
Get:149 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-basedir-perl all 0.09-2 [14.4 kB]
Get:150 http://archive.ubuntu.com/ubuntu noble/main amd64 libnumber-compare-perl all 0.03-3 [5974 B]
Get:151 http://archive.ubuntu.com/ubuntu noble/main amd64 libtext-glob-perl all 0.11-3 [6780 B]
Get:152 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-find-rule-perl all 0.34-3 [24.4 kB]
Get:153 http://archive.ubuntu.com/ubuntu noble/main amd64 libtimedate-perl all 2.3300-2 [34.0 kB]
Get:154 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-date-perl all 6.06-1 [10.2 kB]
Get:155 http://archive.ubuntu.com/ubuntu noble/main amd64 libfile-listing-perl all 6.16-1 [11.3 kB]
Get:156 http://archive.ubuntu.com/ubuntu noble/main amd64 libio-string-perl all 1.08-4 [11.1 kB]
Get:157 http://archive.ubuntu.com/ubuntu noble/main amd64 libfont-ttf-perl all 1.06-2 [323 kB]
Get:158 http://archive.ubuntu.com/ubuntu noble/main amd64 libfribidi-dev amd64 1.0.13-3build1 [64.8 kB]
Get:159 http://archive.ubuntu.com/ubuntu noble/main amd64 libgraphite2-dev amd64 1.3.14-2build1 [14.7 kB]
Get:160 http://archive.ubuntu.com/ubuntu noble/main amd64 libharfbuzz-cairo0 amd64 8.3.0-2build2 [26.2 kB]
Get:161 http://archive.ubuntu.com/ubuntu noble/main amd64 libharfbuzz-subset0 amd64 8.3.0-2build2 [448 kB]
Get:162 http://archive.ubuntu.com/ubuntu noble/main amd64 libharfbuzz-dev amd64 8.3.0-2build2 [142 kB]
Get:163 http://archive.ubuntu.com/ubuntu noble/main amd64 libio-html-perl all 1.004-3 [15.9 kB]
Get:164 http://archive.ubuntu.com/ubuntu noble/main amd64 liblwp-mediatypes-perl all 6.04-2 [20.1 kB]
Get:165 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-message-perl all 6.45-1ubuntu1 [78.2 kB]
Get:166 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-form-perl all 6.11-1 [32.1 kB]
Get:167 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-html5-entities-perl all 0.004-3 [21.6 kB]
Get:168 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-tree-perl all 5.07-3 [200 kB]
Get:169 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-cookies-perl all 6.11-1 [18.2 kB]
Get:170 http://archive.ubuntu.com/ubuntu noble/main amd64 libhttp-negotiate-perl all 6.01-2 [12.4 kB]
Get:171 http://archive.ubuntu.com/ubuntu noble/main amd64 perl-openssl-defaults amd64 7build3 [6626 B]
Get:172 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-ssleay-perl amd64 1.94-1build4 [316 kB]
Get:173 http://archive.ubuntu.com/ubuntu noble/main amd64 libio-socket-ssl-perl all 2.085-1 [195 kB]
Get:174 http://archive.ubuntu.com/ubuntu noble/main amd64 libnet-http-perl all 6.23-1 [22.3 kB]
Get:175 http://archive.ubuntu.com/ubuntu noble/main amd64 liblwp-protocol-https-perl all 6.13-1 [9006 B]
Get:176 http://archive.ubuntu.com/ubuntu noble/main amd64 libwww-robotrules-perl all 6.02-1 [12.6 kB]
Get:177 http://archive.ubuntu.com/ubuntu noble/main amd64 libwww-perl all 6.76-1 [138 kB]
Get:178 http://archive.ubuntu.com/ubuntu noble/main amd64 libhtml-tokeparser-simple-perl all 3.16-4 [38.0 kB]
Get:179 http://archive.ubuntu.com/ubuntu noble/main amd64 libimport-into-perl all 1.002005-2 [10.7 kB]
Get:180 http://archive.ubuntu.com/ubuntu noble/main amd64 libio-interactive-perl all 1.025-1 [10.4 kB]
Get:181 http://archive.ubuntu.com/ubuntu noble/main amd64 libjson-maybexs-perl all 1.004005-1 [11.3 kB]
Get:182 http://archive.ubuntu.com/ubuntu noble/main amd64 liblist-compare-perl all 0.55-2 [62.9 kB]
Get:183 http://archive.ubuntu.com/ubuntu noble/main amd64 liblist-someutils-perl all 0.59-1 [30.4 kB]
Get:184 http://archive.ubuntu.com/ubuntu noble/main amd64 liblist-utilsby-perl all 0.12-2 [14.9 kB]
Get:185 http://archive.ubuntu.com/ubuntu noble/main amd64 libmarkdown2 amd64 2.2.7-2build1 [37.5 kB]
Get:186 http://archive.ubuntu.com/ubuntu noble/main amd64 libmldbm-perl all 2.05-4 [16.0 kB]
Get:187 http://archive.ubuntu.com/ubuntu noble/main amd64 librole-tiny-perl all 2.002004-1 [16.3 kB]
Get:188 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-quote-perl all 2.006008-1ubuntu1 [20.7 kB]
Get:189 http://archive.ubuntu.com/ubuntu noble/main amd64 libmoo-perl all 2.005005-1 [47.4 kB]
Get:190 http://archive.ubuntu.com/ubuntu noble/main amd64 libstrictures-perl all 2.000006-1 [16.3 kB]
Get:191 http://archive.ubuntu.com/ubuntu noble/main amd64 libmoox-aliases-perl all 0.001006-2 [6796 B]
Get:192 http://archive.ubuntu.com/ubuntu noble/main amd64 libmouse-perl amd64 2.5.10-1build8 [133 kB]
Get:193 http://archive.ubuntu.com/ubuntu noble/main amd64 libpackage-stash-perl all 0.40-1 [19.5 kB]
Get:194 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-identify-perl amd64 0.14-3build3 [9786 B]
Get:195 http://archive.ubuntu.com/ubuntu noble/main amd64 libsub-name-perl amd64 0.27-1build3 [10.8 kB]
Get:196 http://archive.ubuntu.com/ubuntu noble/main amd64 libnamespace-clean-perl all 0.27-2 [14.0 kB]
Get:197 http://archive.ubuntu.com/ubuntu noble/main amd64 libthai-dev amd64 0.1.29-2build1 [26.6 kB]
Get:198 http://archive.ubuntu.com/ubuntu noble/main amd64 libxft-dev amd64 2.3.6-1build1 [64.3 kB]
Get:199 http://archive.ubuntu.com/ubuntu noble/main amd64 pango1.0-tools amd64 1.52.1+ds-1build1 [36.7 kB]
Get:200 http://archive.ubuntu.com/ubuntu noble/main amd64 libpango1.0-dev amd64 1.52.1+ds-1build1 [147 kB]
Get:201 http://archive.ubuntu.com/ubuntu noble/main amd64 libpath-tiny-perl all 0.144-1 [47.7 kB]
Get:202 http://archive.ubuntu.com/ubuntu noble/main amd64 libperl-dev amd64 5.38.2-3.2build2 [1183 kB]
Get:203 http://archive.ubuntu.com/ubuntu noble/main amd64 libperlio-gzip-perl amd64 0.20-1build4 [14.6 kB]
Get:204 http://archive.ubuntu.com/ubuntu noble/main amd64 libperlio-utf8-strict-perl amd64 0.010-1build3 [11.1 kB]
Get:205 http://archive.ubuntu.com/ubuntu noble/main amd64 libproc-processtable-perl amd64 0.636-1build3 [35.7 kB]
Get:206 http://archive.ubuntu.com/ubuntu noble/main amd64 libregexp-wildcards-perl all 1.05-3 [12.9 kB]
Get:207 http://archive.ubuntu.com/ubuntu noble/universe amd64 librsvg2-bin amd64 2.58.0+dfsg-1build1 [2299 kB]
Get:208 http://archive.ubuntu.com/ubuntu noble/main amd64 libsereal-decoder-perl amd64 5.004+ds-1build3 [99.5 kB]
Get:209 http://archive.ubuntu.com/ubuntu noble/main amd64 libsereal-encoder-perl amd64 5.004+ds-1build3 [103 kB]
Get:210 http://archive.ubuntu.com/ubuntu noble/main amd64 libsort-versions-perl all 1.62-3 [7378 B]
Get:211 http://archive.ubuntu.com/ubuntu noble/main amd64 libxs-parse-keyword-perl amd64 0.39-1build3 [54.7 kB]
Get:212 http://archive.ubuntu.com/ubuntu noble/main amd64 libsyntax-keyword-try-perl amd64 0.29-1build3 [24.3 kB]
Get:213 http://archive.ubuntu.com/ubuntu noble/main amd64 libterm-readkey-perl amd64 2.38-2build4 [23.1 kB]
Get:214 http://archive.ubuntu.com/ubuntu noble/main amd64 libtext-levenshteinxs-perl amd64 0.03-5build4 [7966 B]
Get:215 http://archive.ubuntu.com/ubuntu noble/main amd64 libtext-markdown-discount-perl amd64 0.16-1build3 [12.1 kB]
Get:216 http://archive.ubuntu.com/ubuntu noble/main amd64 libtext-xslate-perl amd64 3.5.9-1build5 [161 kB]
Get:217 http://archive.ubuntu.com/ubuntu noble/main amd64 libtime-duration-perl all 1.21-2 [12.3 kB]
Get:218 http://archive.ubuntu.com/ubuntu noble/main amd64 libtime-moment-perl amd64 0.44-2build4 [70.9 kB]
Get:219 http://archive.ubuntu.com/ubuntu noble/main amd64 libunicode-utf8-perl amd64 0.62-2build3 [18.1 kB]
Get:220 http://archive.ubuntu.com/ubuntu noble/main amd64 libwww-mechanize-perl all 2.18-1ubuntu1 [93.1 kB]
Get:221 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml-namespacesupport-perl all 1.12-2 [13.5 kB]
Get:222 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml-sax-base-perl all 1.09-3 [18.9 kB]
Get:223 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml-sax-perl all 1.02+dfsg-3 [57.0 kB]
Get:224 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml-libxml-perl amd64 2.0207+dfsg+really+2.0134-1build4 [304 kB]
Get:225 http://archive.ubuntu.com/ubuntu noble/main amd64 libxml2-utils amd64 2.9.14+dfsg-1.3ubuntu3 [39.4 kB]
Get:226 http://archive.ubuntu.com/ubuntu noble/main amd64 libyaml-libyaml-perl amd64 0.89+ds-1build2 [30.5 kB]
Get:227 http://archive.ubuntu.com/ubuntu noble/main amd64 libdevel-size-perl amd64 0.83-2build4 [19.6 kB]
Get:228 http://archive.ubuntu.com/ubuntu noble/main amd64 libipc-run3-perl all 0.049-1 [28.8 kB]
Get:229 http://archive.ubuntu.com/ubuntu noble/main amd64 lzip amd64 1.24.1-1build1 [83.1 kB]
Get:230 http://archive.ubuntu.com/ubuntu noble/main amd64 lzop amd64 1.04-2build3 [82.2 kB]
Get:231 http://archive.ubuntu.com/ubuntu noble/main amd64 patchutils amd64 0.4.2-1build3 [77.0 kB]
Get:232 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 lintian all 2.117.0ubuntu1.1 [1066 kB]
Get:233 http://archive.ubuntu.com/ubuntu noble/main amd64 xsltproc amd64 1.1.39-0exp1build1 [15.0 kB]
Get:234 http://archive.ubuntu.com/ubuntu noble/main amd64 dh-exec amd64 0.29build1 [25.7 kB]
Get:235 http://archive.ubuntu.com/ubuntu noble/main amd64 libraw-dev amd64 0.21.2-2.1build1 [438 kB]
Get:236 http://archive.ubuntu.com/ubuntu noble/universe amd64 pkg-kde-tools amd64 0.15.38ubuntu4 [94.6 kB]
Fetched 324 MB in 34s (9437 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
Selecting previously unselected package poppler-data.
(Reading database ... 28111 files and directories currently installed.)
Preparing to unpack .../000-poppler-data_0.4.12-1_all.deb ...
Unpacking poppler-data (0.4.12-1) ...
Selecting previously unselected package iso-codes.
Preparing to unpack .../001-iso-codes_4.16.0-1_all.deb ...
Unpacking iso-codes (4.16.0-1) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../002-libdbus-1-3_1.14.10-4ubuntu4.1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.14.10-4ubuntu4.1) ...
Selecting previously unselected package bsdextrautils.
Preparing to unpack .../003-bsdextrautils_2.39.3-9ubuntu6.1_amd64.deb ...
Unpacking bsdextrautils (2.39.3-9ubuntu6.1) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../004-libuchardet0_0.0.8-1build1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.8-1build1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../005-groff-base_1.23.0-3build2_amd64.deb ...
Unpacking groff-base (1.23.0-3build2) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../006-libpipeline1_1.5.7-2_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.7-2) ...
Selecting previously unselected package man-db.
Preparing to unpack .../007-man-db_2.12.0-4build2_amd64.deb ...
Unpacking man-db (2.12.0-4build2) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../008-autopoint_0.21-14ubuntu2_all.deb ...
Unpacking autopoint (0.21-14ubuntu2) ...
Selecting previously unselected package chrpath.
Preparing to unpack .../009-chrpath_0.16-2build1_amd64.deb ...
Unpacking chrpath (0.16-2build1) ...
Selecting previously unselected package tex-common.
Preparing to unpack .../010-tex-common_6.18_all.deb ...
Unpacking tex-common (6.18) ...
Selecting previously unselected package libpaper1:amd64.
Preparing to unpack .../011-libpaper1_1.1.29build1_amd64.deb ...
Unpacking libpaper1:amd64 (1.1.29build1) ...
Selecting previously unselected package libpaper-utils.
Preparing to unpack .../012-libpaper-utils_1.1.29build1_amd64.deb ...
Unpacking libpaper-utils (1.1.29build1) ...
Selecting previously unselected package libkpathsea6:amd64.
Preparing to unpack .../013-libkpathsea6_2023.20230311.66589-9build3_amd64.deb ...
Unpacking libkpathsea6:amd64 (2023.20230311.66589-9build3) ...
Selecting previously unselected package libptexenc1:amd64.
Preparing to unpack .../014-libptexenc1_2023.20230311.66589-9build3_amd64.deb ...
Unpacking libptexenc1:amd64 (2023.20230311.66589-9build3) ...
Selecting previously unselected package libsynctex2:amd64.
Preparing to unpack .../015-libsynctex2_2023.20230311.66589-9build3_amd64.deb ...
Unpacking libsynctex2:amd64 (2023.20230311.66589-9build3) ...
Selecting previously unselected package libtexlua53-5:amd64.
Preparing to unpack .../016-libtexlua53-5_2023.20230311.66589-9build3_amd64.deb ...
Unpacking libtexlua53-5:amd64 (2023.20230311.66589-9build3) ...
Selecting previously unselected package t1utils.
Preparing to unpack .../017-t1utils_1.41-4build3_amd64.deb ...
Unpacking t1utils (1.41-4build3) ...
Selecting previously unselected package libpotrace0:amd64.
Preparing to unpack .../018-libpotrace0_1.16-2build1_amd64.deb ...
Unpacking libpotrace0:amd64 (1.16-2build1) ...
Selecting previously unselected package libteckit0:amd64.
Preparing to unpack .../019-libteckit0_2.5.12+ds1-1_amd64.deb ...
Unpacking libteckit0:amd64 (2.5.12+ds1-1) ...
Selecting previously unselected package libxmu6:amd64.
Preparing to unpack .../020-libxmu6_2%3a1.1.3-3build2_amd64.deb ...
Unpacking libxmu6:amd64 (2:1.1.3-3build2) ...
Selecting previously unselected package libxaw7:amd64.
Preparing to unpack .../021-libxaw7_2%3a1.0.14-1build2_amd64.deb ...
Unpacking libxaw7:amd64 (2:1.0.14-1build2) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../022-libxi6_2%3a1.8.1-1build1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.8.1-1build1) ...
Selecting previously unselected package libzzip-0-13t64:amd64.
Preparing to unpack .../023-libzzip-0-13t64_0.13.72+dfsg.1-1.2build1_amd64.deb ...
Unpacking libzzip-0-13t64:amd64 (0.13.72+dfsg.1-1.2build1) ...
Selecting previously unselected package texlive-binaries.
Preparing to unpack .../024-texlive-binaries_2023.20230311.66589-9build3_amd64.deb ...
Unpacking texlive-binaries (2023.20230311.66589-9build3) ...
Selecting previously unselected package xdg-utils.
Preparing to unpack .../025-xdg-utils_1.1.3-4.1ubuntu3_all.deb ...
Unpacking xdg-utils (1.1.3-4.1ubuntu3) ...
Selecting previously unselected package texlive-base.
Preparing to unpack .../026-texlive-base_2023.20240207-1_all.deb ...
Unpacking texlive-base (2023.20240207-1) ...
Selecting previously unselected package fonts-lmodern.
Preparing to unpack .../027-fonts-lmodern_2.005-1_all.deb ...
Unpacking fonts-lmodern (2.005-1) ...
Selecting previously unselected package texlive-latex-base.
Preparing to unpack .../028-texlive-latex-base_2023.20240207-1_all.deb ...
Unpacking texlive-latex-base (2023.20240207-1) ...
Selecting previously unselected package texlive-latex-recommended.
Preparing to unpack .../029-texlive-latex-recommended_2023.20240207-1_all.deb ...
Unpacking texlive-latex-recommended (2023.20240207-1) ...
Selecting previously unselected package cm-super-minimal.
Preparing to unpack .../030-cm-super-minimal_0.3.4-17_all.deb ...
Unpacking cm-super-minimal (0.3.4-17) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../031-libdebhelper-perl_13.14.1ubuntu5_all.deb ...
Unpacking libdebhelper-perl (13.14.1ubuntu5) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../032-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../033-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libsub-override-perl.
Preparing to unpack .../034-libsub-override-perl_0.10-1_all.deb ...
Unpacking libsub-override-perl (0.10-1) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../035-libfile-stripnondeterminism-perl_1.13.1-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.13.1-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../036-dh-strip-nondeterminism_1.13.1-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.13.1-1) ...
Selecting previously unselected package libdw1t64:amd64.
Preparing to unpack .../037-libdw1t64_0.190-1.1build4_amd64.deb ...
Unpacking libdw1t64:amd64 (0.190-1.1build4) ...
Selecting previously unselected package debugedit.
Preparing to unpack .../038-debugedit_1%3a5.0-5build2_amd64.deb ...
Unpacking debugedit (1:5.0-5build2) ...
Selecting previously unselected package dwz.
Preparing to unpack .../039-dwz_0.15-1build6_amd64.deb ...
Unpacking dwz (0.15-1build6) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../040-intltool-debian_0.35.0+20060710.6_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.6) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../041-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../042-debhelper_13.14.1ubuntu5_all.deb ...
Unpacking debhelper (13.14.1ubuntu5) ...
Selecting previously unselected package diffstat.
Preparing to unpack .../043-diffstat_1.66-1build1_amd64.deb ...
Unpacking diffstat (1.66-1build1) ...
Selecting previously unselected package libllvm18:amd64.
Preparing to unpack .../044-libllvm18_1%3a18.1.3-1ubuntu1_amd64.deb ...
Unpacking libllvm18:amd64 (1:18.1.3-1ubuntu1) ...
Selecting previously unselected package libclang-cpp18.
Preparing to unpack .../045-libclang-cpp18_1%3a18.1.3-1ubuntu1_amd64.deb ...
Unpacking libclang-cpp18 (1:18.1.3-1ubuntu1) ...
Selecting previously unselected package libclang1-18.
Preparing to unpack .../046-libclang1-18_1%3a18.1.3-1ubuntu1_amd64.deb ...
Unpacking libclang1-18 (1:18.1.3-1ubuntu1) ...
Selecting previously unselected package libfmt9:amd64.
Preparing to unpack .../047-libfmt9_9.1.0+ds1-2_amd64.deb ...
Unpacking libfmt9:amd64 (9.1.0+ds1-2) ...
Selecting previously unselected package libxapian30:amd64.
Preparing to unpack .../048-libxapian30_1.4.22-1build1_amd64.deb ...
Unpacking libxapian30:amd64 (1.4.22-1build1) ...
Selecting previously unselected package doxygen.
Preparing to unpack .../049-doxygen_1.9.8+ds-2build5_amd64.deb ...
Unpacking doxygen (1.9.8+ds-2build5) ...
Selecting previously unselected package libfile-which-perl.
Preparing to unpack .../050-libfile-which-perl_1.27-2_all.deb ...
Unpacking libfile-which-perl (1.27-2) ...
Selecting previously unselected package libfile-homedir-perl.
Preparing to unpack .../051-libfile-homedir-perl_1.006-2_all.deb ...
Unpacking libfile-homedir-perl (1.006-2) ...
Selecting previously unselected package libsombok3:amd64.
Preparing to unpack .../052-libsombok3_2.4.0-2build1_amd64.deb ...
Unpacking libsombok3:amd64 (2.4.0-2build1) ...
Selecting previously unselected package libmime-charset-perl.
Preparing to unpack .../053-libmime-charset-perl_1.013.1-2_all.deb ...
Unpacking libmime-charset-perl (1.013.1-2) ...
Selecting previously unselected package libunicode-linebreak-perl.
Preparing to unpack .../054-libunicode-linebreak-perl_0.0.20190101-1build7_amd64.deb ...
Unpacking libunicode-linebreak-perl (0.0.20190101-1build7) ...
Selecting previously unselected package libyaml-tiny-perl.
Preparing to unpack .../055-libyaml-tiny-perl_1.74-1_all.deb ...
Unpacking libyaml-tiny-perl (1.74-1) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../056-libjs-jquery_3.6.1+dfsg+~3.5.14-1_all.deb ...
Unpacking libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Selecting previously unselected package lmodern.
Preparing to unpack .../057-lmodern_2.005-1_all.deb ...
Unpacking lmodern (2.005-1) ...
Selecting previously unselected package texlive-luatex.
Preparing to unpack .../058-texlive-luatex_2023.20240207-1_all.deb ...
Unpacking texlive-luatex (2023.20240207-1) ...
Selecting previously unselected package texlive-plain-generic.
Preparing to unpack .../059-texlive-plain-generic_2023.20240207-1_all.deb ...
Unpacking texlive-plain-generic (2023.20240207-1) ...
Selecting previously unselected package texlive-extra-utils.
Preparing to unpack .../060-texlive-extra-utils_2023.20240207-1_all.deb ...
Unpacking texlive-extra-utils (2023.20240207-1) ...
Selecting previously unselected package libapache-pom-java.
Preparing to unpack .../061-libapache-pom-java_29-2_all.deb ...
Unpacking libapache-pom-java (29-2) ...
Selecting previously unselected package libcommons-parent-java.
Preparing to unpack .../062-libcommons-parent-java_56-1_all.deb ...
Unpacking libcommons-parent-java (56-1) ...
Selecting previously unselected package libcommons-logging-java.
Preparing to unpack .../063-libcommons-logging-java_1.3.0-1ubuntu1_all.deb ...
Unpacking libcommons-logging-java (1.3.0-1ubuntu1) ...
Selecting previously unselected package libfontbox-java.
Preparing to unpack .../064-libfontbox-java_1%3a1.8.16-5_all.deb ...
Unpacking libfontbox-java (1:1.8.16-5) ...
Selecting previously unselected package libpdfbox-java.
Preparing to unpack .../065-libpdfbox-java_1%3a1.8.16-5_all.deb ...
Unpacking libpdfbox-java (1:1.8.16-5) ...
Selecting previously unselected package preview-latex-style.
Preparing to unpack .../066-preview-latex-style_13.2-1_all.deb ...
Unpacking preview-latex-style (13.2-1) ...
Selecting previously unselected package texlive-pictures.
Preparing to unpack .../067-texlive-pictures_2023.20240207-1_all.deb ...
Unpacking texlive-pictures (2023.20240207-1) ...
Selecting previously unselected package texlive-latex-extra.
Preparing to unpack .../068-texlive-latex-extra_2023.20240207-1_all.deb ...
Unpacking texlive-latex-extra (2023.20240207-1) ...
Selecting previously unselected package texlive-font-utils.
Preparing to unpack .../069-texlive-font-utils_2023.20240207-1_all.deb ...
Unpacking texlive-font-utils (2023.20240207-1) ...
Selecting previously unselected package libgs-common.
Preparing to unpack .../070-libgs-common_10.02.1~dfsg1-0ubuntu7.3_all.deb ...
Unpacking libgs-common (10.02.1~dfsg1-0ubuntu7.3) ...
Selecting previously unselected package libgs10-common.
Preparing to unpack .../071-libgs10-common_10.02.1~dfsg1-0ubuntu7.3_all.deb ...
Unpacking libgs10-common (10.02.1~dfsg1-0ubuntu7.3) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../072-libavahi-common-data_0.8-13ubuntu6_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.8-13ubuntu6) ...
Selecting previously unselected package libavahi-common3:amd64.
Preparing to unpack .../073-libavahi-common3_0.8-13ubuntu6_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.8-13ubuntu6) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../074-libavahi-client3_0.8-13ubuntu6_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.8-13ubuntu6) ...
Selecting previously unselected package libcups2t64:amd64.
Preparing to unpack .../075-libcups2t64_2.4.7-1.2ubuntu7.2_amd64.deb ...
Unpacking libcups2t64:amd64 (2.4.7-1.2ubuntu7.2) ...
Selecting previously unselected package libijs-0.35:amd64.
Preparing to unpack .../076-libijs-0.35_0.35-15.1build1_amd64.deb ...
Unpacking libijs-0.35:amd64 (0.35-15.1build1) ...
Selecting previously unselected package libjbig2dec0:amd64.
Preparing to unpack .../077-libjbig2dec0_0.20-1build3_amd64.deb ...
Unpacking libjbig2dec0:amd64 (0.20-1build3) ...
Selecting previously unselected package libgs10:amd64.
Preparing to unpack .../078-libgs10_10.02.1~dfsg1-0ubuntu7.3_amd64.deb ...
Unpacking libgs10:amd64 (10.02.1~dfsg1-0ubuntu7.3) ...
Selecting previously unselected package ghostscript.
Preparing to unpack .../079-ghostscript_10.02.1~dfsg1-0ubuntu7.3_amd64.deb ...
Unpacking ghostscript (10.02.1~dfsg1-0ubuntu7.3) ...
Selecting previously unselected package texlive-fonts-recommended.
Preparing to unpack .../080-texlive-fonts-recommended_2023.20240207-1_all.deb ...
Unpacking texlive-fonts-recommended (2023.20240207-1) ...
Selecting previously unselected package doxygen-latex.
Preparing to unpack .../081-doxygen-latex_1.9.8+ds-2build5_all.deb ...
Unpacking doxygen-latex (1.9.8+ds-2build5) ...
Selecting previously unselected package fonts-tuffy.
Preparing to unpack .../082-fonts-tuffy_20120614-3_all.deb ...
Unpacking fonts-tuffy (20120614-3) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../083-libxft2_2.3.6-1build1_amd64.deb ...
Unpacking libxft2:amd64 (2.3.6-1build1) ...
Selecting previously unselected package libpangoxft-1.0-0:amd64.
Preparing to unpack .../084-libpangoxft-1.0-0_1.52.1+ds-1build1_amd64.deb ...
Unpacking libpangoxft-1.0-0:amd64 (1.52.1+ds-1build1) ...
Selecting previously unselected package gir1.2-pango-1.0:amd64.
Preparing to unpack .../085-gir1.2-pango-1.0_1.52.1+ds-1build1_amd64.deb ...
Unpacking gir1.2-pango-1.0:amd64 (1.52.1+ds-1build1) ...
Selecting previously unselected package libann0.
Preparing to unpack .../086-libann0_1.1.2+doc-9build1_amd64.deb ...
Unpacking libann0 (1.1.2+doc-9build1) ...
Selecting previously unselected package libcdt5:amd64.
Preparing to unpack .../087-libcdt5_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking libcdt5:amd64 (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package libcgraph6:amd64.
Preparing to unpack .../088-libcgraph6_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking libcgraph6:amd64 (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package libgts-0.7-5t64:amd64.
Preparing to unpack .../089-libgts-0.7-5t64_0.7.6+darcs121130-5.2build1_amd64.deb ...
Unpacking libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2build1) ...
Selecting previously unselected package libpathplan4:amd64.
Preparing to unpack .../090-libpathplan4_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking libpathplan4:amd64 (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package libgvc6.
Preparing to unpack .../091-libgvc6_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking libgvc6 (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package libgvpr2:amd64.
Preparing to unpack .../092-libgvpr2_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking libgvpr2:amd64 (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package liblab-gamut1:amd64.
Preparing to unpack .../093-liblab-gamut1_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking liblab-gamut1:amd64 (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package graphviz.
Preparing to unpack .../094-graphviz_2.42.2-9ubuntu0.1_amd64.deb ...
Unpacking graphviz (2.42.2-9ubuntu0.1) ...
Selecting previously unselected package libjodycode3t64:amd64.
Preparing to unpack .../095-libjodycode3t64_3.1-6.1ubuntu1_amd64.deb ...
Unpacking libjodycode3t64:amd64 (3.1-6.1ubuntu1) ...
Selecting previously unselected package jdupes.
Preparing to unpack .../096-jdupes_1.27.3-5build1_amd64.deb ...
Unpacking jdupes (1.27.3-5build1) ...
Selecting previously unselected package libaliased-perl.
Preparing to unpack .../097-libaliased-perl_0.34-3_all.deb ...
Unpacking libaliased-perl (0.34-3) ...
Selecting previously unselected package libapt-pkg-perl.
Preparing to unpack .../098-libapt-pkg-perl_0.1.40build7_amd64.deb ...
Unpacking libapt-pkg-perl (0.1.40build7) ...
Selecting previously unselected package libb-hooks-op-check-perl:amd64.
Preparing to unpack .../099-libb-hooks-op-check-perl_0.22-3build1_amd64.deb ...
Unpacking libb-hooks-op-check-perl:amd64 (0.22-3build1) ...
Selecting previously unselected package libdynaloader-functions-perl.
Preparing to unpack .../100-libdynaloader-functions-perl_0.003-3_all.deb ...
Unpacking libdynaloader-functions-perl (0.003-3) ...
Selecting previously unselected package libdevel-callchecker-perl:amd64.
Preparing to unpack .../101-libdevel-callchecker-perl_0.008-2build3_amd64.deb ...
Unpacking libdevel-callchecker-perl:amd64 (0.008-2build3) ...
Selecting previously unselected package libparams-classify-perl:amd64.
Preparing to unpack .../102-libparams-classify-perl_0.015-2build5_amd64.deb ...
Unpacking libparams-classify-perl:amd64 (0.015-2build5) ...
Selecting previously unselected package libmodule-runtime-perl.
Preparing to unpack .../103-libmodule-runtime-perl_0.016-2_all.deb ...
Unpacking libmodule-runtime-perl (0.016-2) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../104-libtry-tiny-perl_0.31-2_all.deb ...
Unpacking libtry-tiny-perl (0.31-2) ...
Selecting previously unselected package libmodule-implementation-perl.
Preparing to unpack .../105-libmodule-implementation-perl_0.09-2_all.deb ...
Unpacking libmodule-implementation-perl (0.09-2) ...
Selecting previously unselected package libsub-exporter-progressive-perl.
Preparing to unpack .../106-libsub-exporter-progressive-perl_0.001013-3_all.deb ...
Unpacking libsub-exporter-progressive-perl (0.001013-3) ...
Selecting previously unselected package libvariable-magic-perl.
Preparing to unpack .../107-libvariable-magic-perl_0.63-1build3_amd64.deb ...
Unpacking libvariable-magic-perl (0.63-1build3) ...
Selecting previously unselected package libb-hooks-endofscope-perl.
Preparing to unpack .../108-libb-hooks-endofscope-perl_0.28-1_all.deb ...
Unpacking libb-hooks-endofscope-perl (0.28-1) ...
Selecting previously unselected package libberkeleydb-perl:amd64.
Preparing to unpack .../109-libberkeleydb-perl_0.64-2build4_amd64.deb ...
Unpacking libberkeleydb-perl:amd64 (0.64-2build4) ...
Selecting previously unselected package libcapture-tiny-perl.
Preparing to unpack .../110-libcapture-tiny-perl_0.48-2_all.deb ...
Unpacking libcapture-tiny-perl (0.48-2) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../111-libhtml-tagset-perl_3.20-6_all.deb ...
Unpacking libhtml-tagset-perl (3.20-6) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../112-liburi-perl_5.27-1_all.deb ...
Unpacking liburi-perl (5.27-1) ...
Selecting previously unselected package libhtml-parser-perl:amd64.
Preparing to unpack .../113-libhtml-parser-perl_3.81-1build3_amd64.deb ...
Unpacking libhtml-parser-perl:amd64 (3.81-1build3) ...
Selecting previously unselected package libcgi-pm-perl.
Preparing to unpack .../114-libcgi-pm-perl_4.63-1_all.deb ...
Unpacking libcgi-pm-perl (4.63-1) ...
Selecting previously unselected package libclass-data-inheritable-perl.
Preparing to unpack .../115-libclass-data-inheritable-perl_0.08-3_all.deb ...
Unpacking libclass-data-inheritable-perl (0.08-3) ...
Selecting previously unselected package libclass-method-modifiers-perl.
Preparing to unpack .../116-libclass-method-modifiers-perl_2.15-1_all.deb ...
Unpacking libclass-method-modifiers-perl (2.15-1) ...
Selecting previously unselected package libclass-xsaccessor-perl.
Preparing to unpack .../117-libclass-xsaccessor-perl_1.19-4build4_amd64.deb ...
Unpacking libclass-xsaccessor-perl (1.19-4build4) ...
Selecting previously unselected package libclone-perl:amd64.
Preparing to unpack .../118-libclone-perl_0.46-1build3_amd64.deb ...
Unpacking libclone-perl:amd64 (0.46-1build3) ...
Selecting previously unselected package libconfig-tiny-perl.
Preparing to unpack .../119-libconfig-tiny-perl_2.30-1_all.deb ...
Unpacking libconfig-tiny-perl (2.30-1) ...
Selecting previously unselected package libparams-util-perl.
Preparing to unpack .../120-libparams-util-perl_1.102-2build3_amd64.deb ...
Unpacking libparams-util-perl (1.102-2build3) ...
Selecting previously unselected package libsub-install-perl.
Preparing to unpack .../121-libsub-install-perl_0.929-1_all.deb ...
Unpacking libsub-install-perl (0.929-1) ...
Selecting previously unselected package libdata-optlist-perl.
Preparing to unpack .../122-libdata-optlist-perl_0.114-1_all.deb ...
Unpacking libdata-optlist-perl (0.114-1) ...
Selecting previously unselected package libsub-exporter-perl.
Preparing to unpack .../123-libsub-exporter-perl_0.990-1_all.deb ...
Unpacking libsub-exporter-perl (0.990-1) ...
Selecting previously unselected package libconst-fast-perl.
Preparing to unpack .../124-libconst-fast-perl_0.014-2_all.deb ...
Unpacking libconst-fast-perl (0.014-2) ...
Selecting previously unselected package libcpanel-json-xs-perl:amd64.
Preparing to unpack .../125-libcpanel-json-xs-perl_4.37-1build3_amd64.deb ...
Unpacking libcpanel-json-xs-perl:amd64 (4.37-1build3) ...
Selecting previously unselected package libdevel-stacktrace-perl.
Preparing to unpack .../126-libdevel-stacktrace-perl_2.0500-1_all.deb ...
Unpacking libdevel-stacktrace-perl (2.0500-1) ...
Selecting previously unselected package libexception-class-perl.
Preparing to unpack .../127-libexception-class-perl_1.45-1_all.deb ...
Unpacking libexception-class-perl (1.45-1) ...
Selecting previously unselected package libiterator-perl.
Preparing to unpack .../128-libiterator-perl_0.03+ds1-2_all.deb ...
Unpacking libiterator-perl (0.03+ds1-2) ...
Selecting previously unselected package libiterator-util-perl.
Preparing to unpack .../129-libiterator-util-perl_0.02+ds1-2_all.deb ...
Unpacking libiterator-util-perl (0.02+ds1-2) ...
Selecting previously unselected package libdata-dpath-perl.
Preparing to unpack .../130-libdata-dpath-perl_0.59-1_all.deb ...
Unpacking libdata-dpath-perl (0.59-1) ...
Selecting previously unselected package libdata-messagepack-perl.
Preparing to unpack .../131-libdata-messagepack-perl_1.02-1build4_amd64.deb ...
Unpacking libdata-messagepack-perl (1.02-1build4) ...
Selecting previously unselected package libnet-domain-tld-perl.
Preparing to unpack .../132-libnet-domain-tld-perl_1.75-3_all.deb ...
Unpacking libnet-domain-tld-perl (1.75-3) ...
Selecting previously unselected package libdata-validate-domain-perl.
Preparing to unpack .../133-libdata-validate-domain-perl_0.10-1.1_all.deb ...
Unpacking libdata-validate-domain-perl (0.10-1.1) ...
Selecting previously unselected package libnet-ipv6addr-perl.
Preparing to unpack .../134-libnet-ipv6addr-perl_1.02-1_all.deb ...
Unpacking libnet-ipv6addr-perl (1.02-1) ...
Selecting previously unselected package libnet-netmask-perl.
Preparing to unpack .../135-libnet-netmask-perl_2.0002-2_all.deb ...
Unpacking libnet-netmask-perl (2.0002-2) ...
Selecting previously unselected package libnetaddr-ip-perl.
Preparing to unpack .../136-libnetaddr-ip-perl_4.079+dfsg-2build4_amd64.deb ...
Unpacking libnetaddr-ip-perl (4.079+dfsg-2build4) ...
Selecting previously unselected package libdata-validate-ip-perl.
Preparing to unpack .../137-libdata-validate-ip-perl_0.31-1_all.deb ...
Unpacking libdata-validate-ip-perl (0.31-1) ...
Selecting previously unselected package libdata-validate-uri-perl.
Preparing to unpack .../138-libdata-validate-uri-perl_0.07-3_all.deb ...
Unpacking libdata-validate-uri-perl (0.07-3) ...
Selecting previously unselected package libdatrie-dev:amd64.
Preparing to unpack .../139-libdatrie-dev_0.2.13-3build1_amd64.deb ...
Unpacking libdatrie-dev:amd64 (0.2.13-3build1) ...
Selecting previously unselected package libemail-address-xs-perl.
Preparing to unpack .../140-libemail-address-xs-perl_1.05-1build4_amd64.deb ...
Unpacking libemail-address-xs-perl (1.05-1build4) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../141-libencode-locale-perl_1.05-3_all.deb ...
Unpacking libencode-locale-perl (1.05-3) ...
Selecting previously unselected package libfftw3-long3:amd64.
Preparing to unpack .../142-libfftw3-long3_3.3.10-1ubuntu3_amd64.deb ...
Unpacking libfftw3-long3:amd64 (3.3.10-1ubuntu3) ...
Selecting previously unselected package libfftw3-quad3:amd64.
Preparing to unpack .../143-libfftw3-quad3_3.3.10-1ubuntu3_amd64.deb ...
Unpacking libfftw3-quad3:amd64 (3.3.10-1ubuntu3) ...
Selecting previously unselected package libfftw3-single3:amd64.
Preparing to unpack .../144-libfftw3-single3_3.3.10-1ubuntu3_amd64.deb ...
Unpacking libfftw3-single3:amd64 (3.3.10-1ubuntu3) ...
Selecting previously unselected package libfftw3-bin.
Preparing to unpack .../145-libfftw3-bin_3.3.10-1ubuntu3_amd64.deb ...
Unpacking libfftw3-bin (3.3.10-1ubuntu3) ...
Selecting previously unselected package libfftw3-dev:amd64.
Preparing to unpack .../146-libfftw3-dev_3.3.10-1ubuntu3_amd64.deb ...
Unpacking libfftw3-dev:amd64 (3.3.10-1ubuntu3) ...
Selecting previously unselected package libipc-system-simple-perl.
Preparing to unpack .../147-libipc-system-simple-perl_1.30-2_all.deb ...
Unpacking libipc-system-simple-perl (1.30-2) ...
Selecting previously unselected package libfile-basedir-perl.
Preparing to unpack .../148-libfile-basedir-perl_0.09-2_all.deb ...
Unpacking libfile-basedir-perl (0.09-2) ...
Selecting previously unselected package libnumber-compare-perl.
Preparing to unpack .../149-libnumber-compare-perl_0.03-3_all.deb ...
Unpacking libnumber-compare-perl (0.03-3) ...
Selecting previously unselected package libtext-glob-perl.
Preparing to unpack .../150-libtext-glob-perl_0.11-3_all.deb ...
Unpacking libtext-glob-perl (0.11-3) ...
Selecting previously unselected package libfile-find-rule-perl.
Preparing to unpack .../151-libfile-find-rule-perl_0.34-3_all.deb ...
Unpacking libfile-find-rule-perl (0.34-3) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../152-libtimedate-perl_2.3300-2_all.deb ...
Unpacking libtimedate-perl (2.3300-2) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../153-libhttp-date-perl_6.06-1_all.deb ...
Unpacking libhttp-date-perl (6.06-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../154-libfile-listing-perl_6.16-1_all.deb ...
Unpacking libfile-listing-perl (6.16-1) ...
Selecting previously unselected package libio-string-perl.
Preparing to unpack .../155-libio-string-perl_1.08-4_all.deb ...
Unpacking libio-string-perl (1.08-4) ...
Selecting previously unselected package libfont-ttf-perl.
Preparing to unpack .../156-libfont-ttf-perl_1.06-2_all.deb ...
Unpacking libfont-ttf-perl (1.06-2) ...
Selecting previously unselected package libfribidi-dev:amd64.
Preparing to unpack .../157-libfribidi-dev_1.0.13-3build1_amd64.deb ...
Unpacking libfribidi-dev:amd64 (1.0.13-3build1) ...
Selecting previously unselected package libgraphite2-dev:amd64.
Preparing to unpack .../158-libgraphite2-dev_1.3.14-2build1_amd64.deb ...
Unpacking libgraphite2-dev:amd64 (1.3.14-2build1) ...
Selecting previously unselected package libharfbuzz-cairo0:amd64.
Preparing to unpack .../159-libharfbuzz-cairo0_8.3.0-2build2_amd64.deb ...
Unpacking libharfbuzz-cairo0:amd64 (8.3.0-2build2) ...
Selecting previously unselected package libharfbuzz-subset0:amd64.
Preparing to unpack .../160-libharfbuzz-subset0_8.3.0-2build2_amd64.deb ...
Unpacking libharfbuzz-subset0:amd64 (8.3.0-2build2) ...
Selecting previously unselected package libharfbuzz-dev:amd64.
Preparing to unpack .../161-libharfbuzz-dev_8.3.0-2build2_amd64.deb ...
Unpacking libharfbuzz-dev:amd64 (8.3.0-2build2) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../162-libio-html-perl_1.004-3_all.deb ...
Unpacking libio-html-perl (1.004-3) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../163-liblwp-mediatypes-perl_6.04-2_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-2) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../164-libhttp-message-perl_6.45-1ubuntu1_all.deb ...
Unpacking libhttp-message-perl (6.45-1ubuntu1) ...
Selecting previously unselected package libhtml-form-perl.
Preparing to unpack .../165-libhtml-form-perl_6.11-1_all.deb ...
Unpacking libhtml-form-perl (6.11-1) ...
Selecting previously unselected package libhtml-html5-entities-perl.
Preparing to unpack .../166-libhtml-html5-entities-perl_0.004-3_all.deb ...
Unpacking libhtml-html5-entities-perl (0.004-3) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../167-libhtml-tree-perl_5.07-3_all.deb ...
Unpacking libhtml-tree-perl (5.07-3) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../168-libhttp-cookies-perl_6.11-1_all.deb ...
Unpacking libhttp-cookies-perl (6.11-1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../169-libhttp-negotiate-perl_6.01-2_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-2) ...
Selecting previously unselected package perl-openssl-defaults:amd64.
Preparing to unpack .../170-perl-openssl-defaults_7build3_amd64.deb ...
Unpacking perl-openssl-defaults:amd64 (7build3) ...
Selecting previously unselected package libnet-ssleay-perl:amd64.
Preparing to unpack .../171-libnet-ssleay-perl_1.94-1build4_amd64.deb ...
Unpacking libnet-ssleay-perl:amd64 (1.94-1build4) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../172-libio-socket-ssl-perl_2.085-1_all.deb ...
Unpacking libio-socket-ssl-perl (2.085-1) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../173-libnet-http-perl_6.23-1_all.deb ...
Unpacking libnet-http-perl (6.23-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../174-liblwp-protocol-https-perl_6.13-1_all.deb ...
Unpacking liblwp-protocol-https-perl (6.13-1) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../175-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../176-libwww-perl_6.76-1_all.deb ...
Unpacking libwww-perl (6.76-1) ...
Selecting previously unselected package libhtml-tokeparser-simple-perl.
Preparing to unpack .../177-libhtml-tokeparser-simple-perl_3.16-4_all.deb ...
Unpacking libhtml-tokeparser-simple-perl (3.16-4) ...
Selecting previously unselected package libimport-into-perl.
Preparing to unpack .../178-libimport-into-perl_1.002005-2_all.deb ...
Unpacking libimport-into-perl (1.002005-2) ...
Selecting previously unselected package libio-interactive-perl.
Preparing to unpack .../179-libio-interactive-perl_1.025-1_all.deb ...
Unpacking libio-interactive-perl (1.025-1) ...
Selecting previously unselected package libjson-maybexs-perl.
Preparing to unpack .../180-libjson-maybexs-perl_1.004005-1_all.deb ...
Unpacking libjson-maybexs-perl (1.004005-1) ...
Selecting previously unselected package liblist-compare-perl.
Preparing to unpack .../181-liblist-compare-perl_0.55-2_all.deb ...
Unpacking liblist-compare-perl (0.55-2) ...
Selecting previously unselected package liblist-someutils-perl.
Preparing to unpack .../182-liblist-someutils-perl_0.59-1_all.deb ...
Unpacking liblist-someutils-perl (0.59-1) ...
Selecting previously unselected package liblist-utilsby-perl.
Preparing to unpack .../183-liblist-utilsby-perl_0.12-2_all.deb ...
Unpacking liblist-utilsby-perl (0.12-2) ...
Selecting previously unselected package libmarkdown2:amd64.
Preparing to unpack .../184-libmarkdown2_2.2.7-2build1_amd64.deb ...
Unpacking libmarkdown2:amd64 (2.2.7-2build1) ...
Selecting previously unselected package libmldbm-perl.
Preparing to unpack .../185-libmldbm-perl_2.05-4_all.deb ...
Unpacking libmldbm-perl (2.05-4) ...
Selecting previously unselected package librole-tiny-perl.
Preparing to unpack .../186-librole-tiny-perl_2.002004-1_all.deb ...
Unpacking librole-tiny-perl (2.002004-1) ...
Selecting previously unselected package libsub-quote-perl.
Preparing to unpack .../187-libsub-quote-perl_2.006008-1ubuntu1_all.deb ...
Unpacking libsub-quote-perl (2.006008-1ubuntu1) ...
Selecting previously unselected package libmoo-perl.
Preparing to unpack .../188-libmoo-perl_2.005005-1_all.deb ...
Unpacking libmoo-perl (2.005005-1) ...
Selecting previously unselected package libstrictures-perl.
Preparing to unpack .../189-libstrictures-perl_2.000006-1_all.deb ...
Unpacking libstrictures-perl (2.000006-1) ...
Selecting previously unselected package libmoox-aliases-perl.
Preparing to unpack .../190-libmoox-aliases-perl_0.001006-2_all.deb ...
Unpacking libmoox-aliases-perl (0.001006-2) ...
Selecting previously unselected package libmouse-perl.
Preparing to unpack .../191-libmouse-perl_2.5.10-1build8_amd64.deb ...
Unpacking libmouse-perl (2.5.10-1build8) ...
Selecting previously unselected package libpackage-stash-perl.
Preparing to unpack .../192-libpackage-stash-perl_0.40-1_all.deb ...
Unpacking libpackage-stash-perl (0.40-1) ...
Selecting previously unselected package libsub-identify-perl.
Preparing to unpack .../193-libsub-identify-perl_0.14-3build3_amd64.deb ...
Unpacking libsub-identify-perl (0.14-3build3) ...
Selecting previously unselected package libsub-name-perl:amd64.
Preparing to unpack .../194-libsub-name-perl_0.27-1build3_amd64.deb ...
Unpacking libsub-name-perl:amd64 (0.27-1build3) ...
Selecting previously unselected package libnamespace-clean-perl.
Preparing to unpack .../195-libnamespace-clean-perl_0.27-2_all.deb ...
Unpacking libnamespace-clean-perl (0.27-2) ...
Selecting previously unselected package libthai-dev:amd64.
Preparing to unpack .../196-libthai-dev_0.1.29-2build1_amd64.deb ...
Unpacking libthai-dev:amd64 (0.1.29-2build1) ...
Selecting previously unselected package libxft-dev:amd64.
Preparing to unpack .../197-libxft-dev_2.3.6-1build1_amd64.deb ...
Unpacking libxft-dev:amd64 (2.3.6-1build1) ...
Selecting previously unselected package pango1.0-tools.
Preparing to unpack .../198-pango1.0-tools_1.52.1+ds-1build1_amd64.deb ...
Unpacking pango1.0-tools (1.52.1+ds-1build1) ...
Selecting previously unselected package libpango1.0-dev:amd64.
Preparing to unpack .../199-libpango1.0-dev_1.52.1+ds-1build1_amd64.deb ...
Unpacking libpango1.0-dev:amd64 (1.52.1+ds-1build1) ...
Selecting previously unselected package libpath-tiny-perl.
Preparing to unpack .../200-libpath-tiny-perl_0.144-1_all.deb ...
Unpacking libpath-tiny-perl (0.144-1) ...
Selecting previously unselected package libperl-dev:amd64.
Preparing to unpack .../201-libperl-dev_5.38.2-3.2build2_amd64.deb ...
Unpacking libperl-dev:amd64 (5.38.2-3.2build2) ...
Selecting previously unselected package libperlio-gzip-perl.
Preparing to unpack .../202-libperlio-gzip-perl_0.20-1build4_amd64.deb ...
Unpacking libperlio-gzip-perl (0.20-1build4) ...
Selecting previously unselected package libperlio-utf8-strict-perl.
Preparing to unpack .../203-libperlio-utf8-strict-perl_0.010-1build3_amd64.deb ...
Unpacking libperlio-utf8-strict-perl (0.010-1build3) ...
Selecting previously unselected package libproc-processtable-perl:amd64.
Preparing to unpack .../204-libproc-processtable-perl_0.636-1build3_amd64.deb ...
Unpacking libproc-processtable-perl:amd64 (0.636-1build3) ...
Selecting previously unselected package libregexp-wildcards-perl.
Preparing to unpack .../205-libregexp-wildcards-perl_1.05-3_all.deb ...
Unpacking libregexp-wildcards-perl (1.05-3) ...
Selecting previously unselected package librsvg2-bin.
Preparing to unpack .../206-librsvg2-bin_2.58.0+dfsg-1build1_amd64.deb ...
Unpacking librsvg2-bin (2.58.0+dfsg-1build1) ...
Selecting previously unselected package libsereal-decoder-perl.
Preparing to unpack .../207-libsereal-decoder-perl_5.004+ds-1build3_amd64.deb ...
Unpacking libsereal-decoder-perl (5.004+ds-1build3) ...
Selecting previously unselected package libsereal-encoder-perl.
Preparing to unpack .../208-libsereal-encoder-perl_5.004+ds-1build3_amd64.deb ...
Unpacking libsereal-encoder-perl (5.004+ds-1build3) ...
Selecting previously unselected package libsort-versions-perl.
Preparing to unpack .../209-libsort-versions-perl_1.62-3_all.deb ...
Unpacking libsort-versions-perl (1.62-3) ...
Selecting previously unselected package libxs-parse-keyword-perl.
Preparing to unpack .../210-libxs-parse-keyword-perl_0.39-1build3_amd64.deb ...
Unpacking libxs-parse-keyword-perl (0.39-1build3) ...
Selecting previously unselected package libsyntax-keyword-try-perl.
Preparing to unpack .../211-libsyntax-keyword-try-perl_0.29-1build3_amd64.deb ...
Unpacking libsyntax-keyword-try-perl (0.29-1build3) ...
Selecting previously unselected package libterm-readkey-perl.
Preparing to unpack .../212-libterm-readkey-perl_2.38-2build4_amd64.deb ...
Unpacking libterm-readkey-perl (2.38-2build4) ...
Selecting previously unselected package libtext-levenshteinxs-perl.
Preparing to unpack .../213-libtext-levenshteinxs-perl_0.03-5build4_amd64.deb ...
Unpacking libtext-levenshteinxs-perl (0.03-5build4) ...
Selecting previously unselected package libtext-markdown-discount-perl.
Preparing to unpack .../214-libtext-markdown-discount-perl_0.16-1build3_amd64.deb ...
Unpacking libtext-markdown-discount-perl (0.16-1build3) ...
Selecting previously unselected package libtext-xslate-perl:amd64.
Preparing to unpack .../215-libtext-xslate-perl_3.5.9-1build5_amd64.deb ...
Unpacking libtext-xslate-perl:amd64 (3.5.9-1build5) ...
Selecting previously unselected package libtime-duration-perl.
Preparing to unpack .../216-libtime-duration-perl_1.21-2_all.deb ...
Unpacking libtime-duration-perl (1.21-2) ...
Selecting previously unselected package libtime-moment-perl.
Preparing to unpack .../217-libtime-moment-perl_0.44-2build4_amd64.deb ...
Unpacking libtime-moment-perl (0.44-2build4) ...
Selecting previously unselected package libunicode-utf8-perl.
Preparing to unpack .../218-libunicode-utf8-perl_0.62-2build3_amd64.deb ...
Unpacking libunicode-utf8-perl (0.62-2build3) ...
Selecting previously unselected package libwww-mechanize-perl.
Preparing to unpack .../219-libwww-mechanize-perl_2.18-1ubuntu1_all.deb ...
Unpacking libwww-mechanize-perl (2.18-1ubuntu1) ...
Selecting previously unselected package libxml-namespacesupport-perl.
Preparing to unpack .../220-libxml-namespacesupport-perl_1.12-2_all.deb ...
Unpacking libxml-namespacesupport-perl (1.12-2) ...
Selecting previously unselected package libxml-sax-base-perl.
Preparing to unpack .../221-libxml-sax-base-perl_1.09-3_all.deb ...
Unpacking libxml-sax-base-perl (1.09-3) ...
Selecting previously unselected package libxml-sax-perl.
Preparing to unpack .../222-libxml-sax-perl_1.02+dfsg-3_all.deb ...
Unpacking libxml-sax-perl (1.02+dfsg-3) ...
Selecting previously unselected package libxml-libxml-perl.
Preparing to unpack .../223-libxml-libxml-perl_2.0207+dfsg+really+2.0134-1build4_amd64.deb ...
Unpacking libxml-libxml-perl (2.0207+dfsg+really+2.0134-1build4) ...
Selecting previously unselected package libxml2-utils.
Preparing to unpack .../224-libxml2-utils_2.9.14+dfsg-1.3ubuntu3_amd64.deb ...
Unpacking libxml2-utils (2.9.14+dfsg-1.3ubuntu3) ...
Selecting previously unselected package libyaml-libyaml-perl.
Preparing to unpack .../225-libyaml-libyaml-perl_0.89+ds-1build2_amd64.deb ...
Unpacking libyaml-libyaml-perl (0.89+ds-1build2) ...
Selecting previously unselected package libdevel-size-perl.
Preparing to unpack .../226-libdevel-size-perl_0.83-2build4_amd64.deb ...
Unpacking libdevel-size-perl (0.83-2build4) ...
Selecting previously unselected package libipc-run3-perl.
Preparing to unpack .../227-libipc-run3-perl_0.049-1_all.deb ...
Unpacking libipc-run3-perl (0.049-1) ...
Selecting previously unselected package lzip.
Preparing to unpack .../228-lzip_1.24.1-1build1_amd64.deb ...
Unpacking lzip (1.24.1-1build1) ...
Selecting previously unselected package lzop.
Preparing to unpack .../229-lzop_1.04-2build3_amd64.deb ...
Unpacking lzop (1.04-2build3) ...
Selecting previously unselected package patchutils.
Preparing to unpack .../230-patchutils_0.4.2-1build3_amd64.deb ...
Unpacking patchutils (0.4.2-1build3) ...
Selecting previously unselected package lintian.
Preparing to unpack .../231-lintian_2.117.0ubuntu1.1_all.deb ...
Unpacking lintian (2.117.0ubuntu1.1) ...
Selecting previously unselected package xsltproc.
Preparing to unpack .../232-xsltproc_1.1.39-0exp1build1_amd64.deb ...
Unpacking xsltproc (1.1.39-0exp1build1) ...
Selecting previously unselected package dh-exec.
Preparing to unpack .../233-dh-exec_0.29build1_amd64.deb ...
Unpacking dh-exec (0.29build1) ...
Selecting previously unselected package libraw-dev:amd64.
Preparing to unpack .../234-libraw-dev_0.21.2-2.1build1_amd64.deb ...
Unpacking libraw-dev:amd64 (0.21.2-2.1build1) ...
Selecting previously unselected package pkg-kde-tools.
Preparing to unpack .../235-pkg-kde-tools_0.15.38ubuntu4_amd64.deb ...
Unpacking pkg-kde-tools (0.15.38ubuntu4) ...
Setting up libapt-pkg-perl (0.1.40build7) ...
Setting up libpipeline1:amd64 (1.5.7-2) ...
Setting up libberkeleydb-perl:amd64 (0.64-2build4) ...
Setting up librsvg2-bin (2.58.0+dfsg-1build1) ...
Setting up libxapian30:amd64 (1.4.22-1build1) ...
Setting up libpaper1:amd64 (1.1.29build1) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline

Creating config file /etc/papersize with new version
Setting up libraw-dev:amd64 (0.21.2-2.1build1) ...
Setting up libfile-which-perl (1.27-2) ...
Setting up libxft2:amd64 (2.3.6-1build1) ...
Setting up libxmu6:amd64 (2:1.1.3-3build2) ...
Setting up libunicode-utf8-perl (0.62-2build3) ...
Setting up libfftw3-single3:amd64 (3.3.10-1ubuntu3) ...
Setting up libmouse-perl (2.5.10-1build8) ...
Setting up bsdextrautils (2.39.3-9ubuntu6.1) ...
Setting up libpangoxft-1.0-0:amd64 (1.52.1+ds-1build1) ...
Setting up libxi6:amd64 (2:1.8.1-1build1) ...
Setting up libdata-messagepack-perl (1.02-1build4) ...
Setting up libdynaloader-functions-perl (0.003-3) ...
Setting up fonts-tuffy (20120614-3) ...
Setting up libtext-glob-perl (0.11-3) ...
Setting up libclass-method-modifiers-perl (2.15-1) ...
Setting up liblist-compare-perl (0.55-2) ...
Setting up libsombok3:amd64 (2.4.0-2build1) ...
Setting up libclone-perl:amd64 (0.46-1build3) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libsub-identify-perl (0.14-3build3) ...
Setting up libcpanel-json-xs-perl:amd64 (4.37-1build3) ...
Setting up libhtml-tagset-perl (3.20-6) ...
Setting up libijs-0.35:amd64 (0.35-15.1build1) ...
Setting up libfribidi-dev:amd64 (1.0.13-3build1) ...
Setting up libdevel-size-perl (0.83-2build4) ...
Setting up libdebhelper-perl (13.14.1ubuntu5) ...
Setting up libgs-common (10.02.1~dfsg1-0ubuntu7.3) ...
Setting up libfontbox-java (1:1.8.16-5) ...
Setting up liblwp-mediatypes-perl (6.04-2) ...
Setting up liblab-gamut1:amd64 (2.42.2-9ubuntu0.1) ...
Setting up xsltproc (1.1.39-0exp1build1) ...
Setting up libyaml-libyaml-perl (0.89+ds-1build2) ...
Setting up pango1.0-tools (1.52.1+ds-1build1) ...
Setting up libio-interactive-perl (1.025-1) ...
Setting up libtry-tiny-perl (0.31-2) ...
Setting up perl-openssl-defaults:amd64 (7build3) ...
Setting up libmldbm-perl (2.05-4) ...
Setting up libxml-namespacesupport-perl (1.12-2) ...
Setting up libfftw3-long3:amd64 (3.3.10-1ubuntu3) ...
Setting up libtime-moment-perl (0.44-2build4) ...
Setting up libencode-locale-perl (1.05-3) ...
Setting up libperl-dev:amd64 (5.38.2-3.2build2) ...
Setting up libxaw7:amd64 (2:1.0.14-1build2) ...
Setting up libpaper-utils (1.1.29build1) ...
Setting up libconfig-tiny-perl (2.30-1) ...
Setting up libsereal-encoder-perl (5.004+ds-1build3) ...
Setting up liblist-utilsby-perl (0.12-2) ...
Setting up libyaml-tiny-perl (1.74-1) ...
Setting up libnet-netmask-perl (2.0002-2) ...
Setting up libsub-install-perl (0.929-1) ...
Setting up poppler-data (0.4.12-1) ...
Setting up libnumber-compare-perl (0.03-3) ...
Setting up intltool-debian (0.35.0+20060710.6) ...
Setting up libdw1t64:amd64 (0.190-1.1build4) ...
Setting up patchutils (0.4.2-1build3) ...
Setting up tex-common (6.18) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline
update-language: texlive-base not installed and configured, doing nothing!
Setting up libjson-maybexs-perl (1.004005-1) ...
Setting up libxml-sax-base-perl (1.09-3) ...
Setting up libio-string-perl (1.08-4) ...
Setting up libnetaddr-ip-perl (4.079+dfsg-2build4) ...
Setting up libgraphite2-dev:amd64 (1.3.14-2build1) ...
Setting up gir1.2-pango-1.0:amd64 (1.52.1+ds-1build1) ...
Setting up libclass-data-inheritable-perl (0.08-3) ...
Setting up libxs-parse-keyword-perl (0.39-1build3) ...
Setting up libzzip-0-13t64:amd64 (0.13.72+dfsg.1-1.2build1) ...
Setting up libharfbuzz-cairo0:amd64 (8.3.0-2build2) ...
Setting up libfile-find-rule-perl (0.34-3) ...
Setting up libjbig2dec0:amd64 (0.20-1build3) ...
Setting up libipc-system-simple-perl (1.30-2) ...
Setting up libnet-domain-tld-perl (1.75-3) ...
Setting up libteckit0:amd64 (2.5.12+ds1-1) ...
Setting up libperlio-utf8-strict-perl (0.010-1build3) ...
Setting up libpathplan4:amd64 (2.42.2-9ubuntu0.1) ...
Setting up libapache-pom-java (29-2) ...
Setting up lzip (1.24.1-1build1) ...
update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip (lzip) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/lzip.1.gz because associated file /usr/share/man/man1/lzip.lzip.1.gz (of link group lzip) doesn't exist
update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-compressor (lzip-compressor) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/lzip-compressor.1.gz because associated file /usr/share/man/man1/lzip.lzip.1.gz (of link group lzip-compressor) doesn't exist
update-alternatives: using /usr/bin/lzip.lzip to provide /usr/bin/lzip-decompressor (lzip-decompressor) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/lzip-decompressor.1.gz because associated file /usr/share/man/man1/lzip.lzip.1.gz (of link group lzip-decompressor) doesn't exist
Setting up libavahi-common-data:amd64 (0.8-13ubuntu6) ...
Setting up libann0 (1.1.2+doc-9build1) ...
Setting up libdbus-1-3:amd64 (1.14.10-4ubuntu4.1) ...
Setting up libjodycode3t64:amd64 (3.1-6.1ubuntu1) ...
Setting up libfftw3-quad3:amd64 (3.3.10-1ubuntu3) ...
Setting up t1utils (1.41-4build3) ...
Setting up libtexlua53-5:amd64 (2023.20230311.66589-9build3) ...
Setting up diffstat (1.66-1build1) ...
Setting up libvariable-magic-perl (0.63-1build3) ...
Setting up libio-html-perl (1.004-3) ...
Setting up autopoint (0.21-14ubuntu2) ...
Setting up libb-hooks-op-check-perl:amd64 (0.22-3build1) ...
Setting up libparams-util-perl (1.102-2build3) ...
Setting up libkpathsea6:amd64 (2023.20230311.66589-9build3) ...
Setting up libtime-duration-perl (1.21-2) ...
Setting up libtext-xslate-perl:amd64 (3.5.9-1build5) ...
Setting up libsub-exporter-progressive-perl (0.001013-3) ...
Setting up libcapture-tiny-perl (0.48-2) ...
Setting up libfmt9:amd64 (9.1.0+ds1-2) ...
Setting up libtimedate-perl (2.3300-2) ...
Setting up libsub-name-perl:amd64 (0.27-1build3) ...
Setting up libsyntax-keyword-try-perl (0.29-1build3) ...
Setting up dwz (0.15-1build6) ...
Setting up libdata-validate-domain-perl (0.10-1.1) ...
Setting up libproc-processtable-perl:amd64 (0.636-1build3) ...
Setting up libdatrie-dev:amd64 (0.2.13-3build1) ...
Setting up libmime-charset-perl (1.013.1-2) ...
Setting up libpath-tiny-perl (0.144-1) ...
Setting up libuchardet0:amd64 (0.0.8-1build1) ...
Setting up lzop (1.04-2build3) ...
Setting up librole-tiny-perl (2.002004-1) ...
Setting up debugedit (1:5.0-5build2) ...
Setting up libipc-run3-perl (0.049-1) ...
Setting up libharfbuzz-subset0:amd64 (8.3.0-2build2) ...
Setting up libregexp-wildcards-perl (1.05-3) ...
Setting up fonts-lmodern (2.005-1) ...
Setting up libsub-override-perl (0.10-1) ...
Setting up libaliased-perl (0.34-3) ...
Setting up libgts-0.7-5t64:amd64 (0.7.6+darcs121130-5.2build1) ...
Setting up libstrictures-perl (2.000006-1) ...
Setting up libsub-quote-perl (2.006008-1ubuntu1) ...
Setting up libdevel-stacktrace-perl (2.0500-1) ...
Setting up libclass-xsaccessor-perl (1.19-4build4) ...
Setting up libcdt5:amd64 (2.42.2-9ubuntu0.1) ...
Setting up libcgraph6:amd64 (2.42.2-9ubuntu0.1) ...
Setting up libsort-versions-perl (1.62-3) ...
Setting up libjs-jquery (3.6.1+dfsg+~3.5.14-1) ...
Setting up libterm-readkey-perl (2.38-2build4) ...
Setting up libxml2-utils (2.9.14+dfsg-1.3ubuntu3) ...
Setting up libfont-ttf-perl (1.06-2) ...
Setting up libfile-homedir-perl (1.006-2) ...
Setting up libtext-levenshteinxs-perl (0.03-5build4) ...
Setting up libperlio-gzip-perl (0.20-1build4) ...
Setting up libhtml-html5-entities-perl (0.004-3) ...
Setting up xdg-utils (1.1.3-4.1ubuntu3) ...
update-alternatives: using /usr/bin/xdg-open to provide /usr/bin/open (open) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/open.1.gz because associated file /usr/share/man/man1/xdg-open.1.gz (of link group open) doesn't exist
Setting up libsereal-decoder-perl (5.004+ds-1build3) ...
Setting up libmarkdown2:amd64 (2.2.7-2build1) ...
Setting up liburi-perl (5.27-1) ...
Setting up iso-codes (4.16.0-1) ...
Setting up libnet-ipv6addr-perl (1.02-1) ...
Setting up chrpath (0.16-2build1) ...
Setting up libsynctex2:amd64 (2023.20230311.66589-9build3) ...
Setting up libllvm18:amd64 (1:18.1.3-1ubuntu1) ...
Setting up libdata-validate-ip-perl (0.31-1) ...
Setting up libxft-dev:amd64 (2.3.6-1build1) ...
Setting up libemail-address-xs-perl (1.05-1build4) ...
Setting up libpotrace0:amd64 (1.16-2build1) ...
Setting up libnet-ssleay-perl:amd64 (1.94-1build4) ...
Setting up libfile-stripnondeterminism-perl (1.13.1-1) ...
Setting up libgs10-common (10.02.1~dfsg1-0ubuntu7.3) ...
Setting up libclang1-18 (1:18.1.3-1ubuntu1) ...
Setting up libhttp-date-perl (6.06-1) ...
Setting up libharfbuzz-dev:amd64 (8.3.0-2build2) ...
Setting up libfile-basedir-perl (0.09-2) ...
Setting up libfile-listing-perl (6.16-1) ...
Setting up libpdfbox-java (1:1.8.16-5) ...
Setting up jdupes (1.27.3-5build1) ...
Setting up libfftw3-bin (3.3.10-1ubuntu3) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up preview-latex-style (13.2-1) ...
Setting up libcommons-parent-java (56-1) ...
Setting up libavahi-common3:amd64 (0.8-13ubuntu6) ...
Setting up libcommons-logging-java (1.3.0-1ubuntu1) ...
Setting up libnet-http-perl (6.23-1) ...
Setting up libtext-markdown-discount-perl (0.16-1build3) ...
Setting up libexception-class-perl (1.45-1) ...
Setting up libdevel-callchecker-perl:amd64 (0.008-2build3) ...
Setting up libxml-sax-perl (1.02+dfsg-3) ...
update-perl-sax-parsers: Registering Perl SAX parser XML::SAX::PurePerl with priority 10...
update-perl-sax-parsers: Updating overall Perl SAX parser modules info file...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline

Creating config file /etc/perl/XML/SAX/ParserDetails.ini with new version
Setting up dh-autoreconf (20) ...
Setting up libdata-validate-uri-perl (0.07-3) ...
Setting up libptexenc1:amd64 (2023.20230311.66589-9build3) ...
Setting up libunicode-linebreak-perl (0.0.20190101-1build7) ...
Setting up libgvc6 (2.42.2-9ubuntu0.1) ...
Setting up libdata-optlist-perl (0.114-1) ...
Setting up libthai-dev:amd64 (0.1.29-2build1) ...
Setting up libxml-libxml-perl (2.0207+dfsg+really+2.0134-1build4) ...
update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX::Parser with priority 50...
update-perl-sax-parsers: Registering Perl SAX parser XML::LibXML::SAX with priority 50...
update-perl-sax-parsers: Updating overall Perl SAX parser modules info file...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline
Replacing config file /etc/perl/XML/SAX/ParserDetails.ini with new version
Setting up dh-strip-nondeterminism (1.13.1-1) ...
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up libgvpr2:amd64 (2.42.2-9ubuntu0.1) ...
Setting up texlive-binaries (2023.20230311.66589-9build3) ...
update-alternatives: using /usr/bin/xdvi-xaw to provide /usr/bin/xdvi.bin (xdvi.bin) in auto mode
update-alternatives: using /usr/bin/bibtex.original to provide /usr/bin/bibtex (bibtex) in auto mode
update-alternatives: warning: skip creation of /usr/share/man/man1/bibtex.1.gz because associated file /usr/share/man/man1/bibtex.original.1.gz (of link group bibtex) doesn't exist
Setting up groff-base (1.23.0-3build2) ...
Setting up lmodern (2.005-1) ...
Setting up libhtml-parser-perl:amd64 (3.81-1build3) ...
Setting up libclang-cpp18 (1:18.1.3-1ubuntu1) ...
Setting up texlive-base (2023.20240207-1) ...
mktexlsr: Updating /var/lib/texmf/ls-R-TEXLIVEDIST...
mktexlsr: Updating /var/lib/texmf/ls-R-TEXMFMAIN...
mktexlsr: Updating /var/lib/texmf/ls-R...
mktexlsr: Done.
tl-paper: setting paper size for dvips to a4: /var/lib/texmf/dvips/config/config-paper.ps
tl-paper: setting paper size for dvipdfmx to a4: /var/lib/texmf/dvipdfmx/dvipdfmx-paper.cfg
tl-paper: setting paper size for xdvi to a4: /var/lib/texmf/xdvi/XDvi-paper
tl-paper: setting paper size for pdftex to a4: /var/lib/texmf/tex/generic/tex-ini-files/pdftexconfig.tex
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline
Setting up libfftw3-dev:amd64 (3.3.10-1ubuntu3) ...
Setting up libavahi-client3:amd64 (0.8-13ubuntu6) ...
Setting up libio-socket-ssl-perl (2.085-1) ...
Setting up libsub-exporter-perl (0.990-1) ...
Setting up libhttp-message-perl (6.45-1ubuntu1) ...
Setting up libhtml-form-perl (6.11-1) ...
Setting up libiterator-perl (0.03+ds1-2) ...
Setting up graphviz (2.42.2-9ubuntu0.1) ...
Setting up libhttp-negotiate-perl (6.01-2) ...
Setting up libiterator-util-perl (0.02+ds1-2) ...
Setting up libhttp-cookies-perl (6.11-1) ...
Setting up texlive-luatex (2023.20240207-1) ...
Setting up libhtml-tree-perl (5.07-3) ...
Setting up libparams-classify-perl:amd64 (0.015-2build5) ...
Setting up libcgi-pm-perl (4.63-1) ...
Setting up texlive-plain-generic (2023.20240207-1) ...
Setting up texlive-font-utils (2023.20240207-1) ...
Setting up man-db (2.12.0-4build2) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline
Building database of manual pages ...
Setting up doxygen (1.9.8+ds-2build5) ...
Setting up texlive-latex-base (2023.20240207-1) ...
Setting up libmodule-runtime-perl (0.016-2) ...
Setting up texlive-extra-utils (2023.20240207-1) ...
Setting up libpango1.0-dev:amd64 (1.52.1+ds-1build1) ...
Setting up texlive-latex-recommended (2023.20240207-1) ...
Setting up texlive-pictures (2023.20240207-1) ...
Setting up libconst-fast-perl (0.014-2) ...
Setting up texlive-fonts-recommended (2023.20240207-1) ...
Setting up libdata-dpath-perl (0.59-1) ...
Setting up libcups2t64:amd64 (2.4.7-1.2ubuntu7.2) ...
Setting up cm-super-minimal (0.3.4-17) ...
Setting up libgs10:amd64 (10.02.1~dfsg1-0ubuntu7.3) ...
Setting up libmodule-implementation-perl (0.09-2) ...
Setting up libpackage-stash-perl (0.40-1) ...
Setting up libimport-into-perl (1.002005-2) ...
Setting up libmoo-perl (2.005005-1) ...
Setting up liblist-someutils-perl (0.59-1) ...
Setting up debhelper (13.14.1ubuntu5) ...
Setting up texlive-latex-extra (2023.20240207-1) ...
Setting up dh-exec (0.29build1) ...
Setting up ghostscript (10.02.1~dfsg1-0ubuntu7.3) ...
Setting up doxygen-latex (1.9.8+ds-2build5) ...
Setting up libmoox-aliases-perl (0.001006-2) ...
Setting up libb-hooks-endofscope-perl (0.28-1) ...
Setting up libnamespace-clean-perl (0.27-2) ...
Setting up libwww-perl (6.76-1) ...
Setting up libhtml-tokeparser-simple-perl (3.16-4) ...
Setting up libwww-mechanize-perl (2.18-1ubuntu1) ...
Setting up liblwp-protocol-https-perl (6.13-1) ...
Setting up lintian (2.117.0ubuntu1.1) ...
Setting up pkg-kde-tools (0.15.38ubuntu4) ...
Processing triggers for fontconfig (2.15.0-1.1ubuntu2) ...
Processing triggers for libc-bin (2.39-0ubuntu8.3) ...
Processing triggers for tex-common (6.18) ...
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line 79.)
debconf: falling back to frontend: Readline
Running updmap-sys. This may take some time... done.
Running mktexlsr /var/lib/texmf ... done.
Building format(s) --all.
	This may take some time... done.
⚙️ Installing imagemagick version 7.0.11-5...
Cloning into '/usr/src/imagemagick'...
remote: Enumerating objects: 2148, done.
remote: Counting objects: 100% (2148/2148), done.
remote: Compressing objects: 100% (1513/1513), done.
remote: Total 2148 (delta 1065), reused 1042 (delta 626), pack-reused 0 (from 0)
Receiving objects: 100% (2148/2148), 13.46 MiB | 12.10 MiB/s, done.
Resolving deltas: 100% (1065/1065), done.
Note: switching to '309fcfa1c770ad290c4d584021440706927ee450'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name>

Or undo this operation with:

  git switch -

Turn off this advice by setting config variable advice.detachedHead to false

checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '0' is supported by ustar format... yes
checking whether GID '0' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports nested variables... (cached) yes
Configuring ImageMagick 7.0.11-5
checking whether build environment is sane... yes
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for ar... ar
checking the archiver (ar) interface... ar
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking whether gcc understands -c and -o together... (cached) yes
checking dependency style of gcc... (cached) gcc3
checking how to run the C preprocessor... gcc -E
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking how to print strings... printf
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for ld used by gcc... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking for gcc option to accept ISO C99... none needed
checking for C compiler vendor... gnu
checking CFLAGS for most reasonable warnings... -Wall
checking whether make sets $(MAKE)... (cached) yes
checking whether ln -s works... yes
checking for a sed that does not truncate output... (cached) /usr/bin/sed
checking for gawk... (cached) mawk
checking for ranlib... ranlib
checking if malloc debugging is wanted... no
checking for __attribute__... yes
checking for gcc architecture flag...
checking for x86 cpuid 0 output... 16:756e6547:6c65746e:49656e69
checking for x86 cpuid 1 output... 906ea:b0c0800:feda3203:178bfbff
checking whether C compiler accepts -mtune=core2... yes
checking for gcc architecture flag... -mtune=core2
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.20... yes
checking for C compiler vendor... (cached) gnu
checking if LD -Wl,--version-script works... yes
checking for linker lazyload option... none
checking whether gcc is Clang... no
checking whether pthreads work with "-pthread" and "-lpthread"... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking whether more special flags are required for pthreads... no
checking for PTHREAD_PRIO_INHERIT... yes
checking for gcc option to support OpenMP... -fopenmp
checking for OpenCL library... disabled
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking for _LARGEFILE_SOURCE value needed for large files... no
checking Linux compatible sendfile()... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether to enable maintainer-specific portions of Makefiles... no
checking whether gcc needs -traditional... no
checking for ANSI C header files... (cached) yes
checking whether to enable assertions... yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking arm/limits.h usability... no
checking arm/limits.h presence... no
checking for arm/limits.h... no
checking arpa/inet.h usability... yes
checking arpa/inet.h presence... yes
checking for arpa/inet.h... yes
checking complex.h usability... yes
checking complex.h presence... yes
checking for complex.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking linux/unistd.h usability... yes
checking linux/unistd.h presence... yes
checking for linux/unistd.h... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking machine/param.h usability... no
checking machine/param.h presence... no
checking for machine/param.h... no
checking mach-o/dyld.h usability... no
checking mach-o/dyld.h presence... no
checking for mach-o/dyld.h... no
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking netinet/in.h usability... yes
checking netinet/in.h presence... yes
checking for netinet/in.h... yes
checking OS.h usability... no
checking OS.h presence... no
checking for OS.h... no
checking process.h usability... no
checking process.h presence... no
checking for process.h... no
checking sun_prefetch.h usability... no
checking sun_prefetch.h presence... no
checking for sun_prefetch.h... no
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking stddef.h usability... yes
checking stddef.h presence... yes
checking for stddef.h... yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking sys/sendfile.h usability... yes
checking sys/sendfile.h presence... yes
checking for sys/sendfile.h... yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking sys/syslimits.h usability... no
checking sys/syslimits.h presence... no
checking for sys/syslimits.h... no
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/timeb.h usability... yes
checking sys/timeb.h presence... yes
checking for sys/timeb.h... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking sys/uio.h usability... yes
checking sys/uio.h presence... yes
checking for sys/uio.h... yes
checking sys/wait.h usability... yes
checking sys/wait.h presence... yes
checking for sys/wait.h... yes
checking utime.h usability... yes
checking utime.h presence... yes
checking for utime.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking xlocale.h usability... no
checking xlocale.h presence... no
checking for xlocale.h... no
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for working volatile... yes
checking for preprocessor stringizing operator... yes
checking whether stat file-mode macros are broken... no
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking whether #! works in shell scripts... yes
checking whether char is unsigned... no
checking for an ANSI C-conforming const... yes
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking for working volatile... (cached) yes
checking whether byte ordering is bigendian... no
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking for intmax_t... yes
checking for intptr_t... yes
checking for mbstate_t... yes
checking for mode_t... yes
checking for off_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for ssize_t... yes
checking for uid_t in sys/types.h... yes
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for uintmax_t... yes
checking for uintptr_t... yes
checking size of float_t... 4
checking size of double_t... 8
checking size of float... 4
checking size of double... 8
checking size of long double... 16
checking size of unsigned long long... 8
checking size of ssize_t... 8
checking size of void *... 8
checking whether our compiler supports __func__... yes
checking whether closedir returns void... no
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for getpagesize... yes
checking for working mmap... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for working memcmp... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible realloc... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking for sys/socket.h... (cached) yes
checking types of arguments for select... int,fd_set *,struct timeval *
checking for working strtod... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking for vprintf... yes
checking for _doprnt... no
checking for sqrt in -lm... yes
checking for library containing gethostbyname... none required
checking for library containing socket... none required
checking for library containing clock_gettime... none required
checking whether clock_gettime supports CLOCK_REALTIME... yes
checking whether pread is declared... yes
checking whether pwrite is declared... yes
checking whether strlcpy is declared... no
checking whether vsnprintf is declared... yes
checking whether we are using the GNU C++ compiler... (cached) yes
checking whether g++ accepts -g... (cached) yes
checking dependency style of g++... (cached) gcc3
checking whether the compiler recognizes bool as a built-in type... yes
checking whether the compiler implements namespaces... yes
checking if g++ supports namespace std... yes
checking whether the compiler supports ISO C++ standard library... yes
checking for g++ option to support OpenMP... -fopenmp
checking whether C++ compiler is sufficient for Magick++... yes
checking for X11 configure files...
checking for GOMP_parallel_start in -lgomp... yes
-------------------------------------------------------------
checking for BZLIB...
checking bzlib.h usability... yes
checking bzlib.h presence... yes
checking for bzlib.h... yes
checking for BZ2_bzDecompress in -lbz2... yes
checking if BZLIB package is complete... yes
checking for X... libraries , headers
checking for gethostbyname... yes
checking for connect... yes
checking for remove... yes
checking for shmat... yes
checking for IceConnectionNumber in -lICE... yes
-------------------------------------------------------------
checking for X11...
checking for shmctl... yes
checking for XShmAttach in -lXext... yes
checking for XShapeCombineMask in -lXext... yes
checking for XtSetEventDispatcher in -lXt... yes
-------------------------------------------------------------
checking for libzip >= 1.0.0... yes

-------------------------------------------------------------
checking for zlib >= 1.0.0... yes

-------------------------------------------------------------
checking for libzstd >= 1.0.0... yes

-------------------------------------------------------------
checking for DPS...
checking DPS/dpsXclient.h usability... no
checking DPS/dpsXclient.h presence... no
checking for DPS/dpsXclient.h... no
checking for DPSInitialize in -ldps... no
checking for DPSInitialize in -ldps... no
checking for XDPSPixelsPerPoint in -ldpstk... no
checking if DPS package is complete... no
-------------------------------------------------------------
checking for FLIF...
checking flif.h usability... no
checking flif.h presence... no
checking for flif.h... no
checking for flif_create_decoder in -lflif... no
checking if FLIF package is complete... no
-------------------------------------------------------------
checking for FlashPIX...
checking fpxlib.h usability... no
checking fpxlib.h presence... no
checking for fpxlib.h... no
checking for FPX_OpenImageByFilename in -lfpx... no
checking if FlashPIX package is complete... no
-------------------------------------------------------------
checking for ddjvuapi >= 3.5.0... yes

-------------------------------------------------------------
checking for fontconfig >= 2.1.0... yes

-------------------------------------------------------------
checking for freetype2... yes

-------------------------------------------------------------
checking for raqm... no

checking for Windows GDI32 support...
checking windows.h usability... no
checking windows.h presence... no
checking for windows.h... no
checking for winuser.h... no
checking for wingdi.h... no
checking if Windows GDI32 support is complete... no
-------------------------------------------------------------
checking for libheif... yes

-------------------------------------------------------------
checking for JBIG...
checking jbig.h usability... yes
checking jbig.h presence... yes
checking for jbig.h... yes
checking for jbg_dec_init in -ljbig... yes
checking if JBIG package is complete... yes
-------------------------------------------------------------
checking for JPEG...
checking jconfig.h usability... yes
checking jconfig.h presence... yes
checking for jconfig.h... yes
checking jerror.h usability... yes
checking jerror.h presence... yes
checking for jerror.h... yes
checking jmorecfg.h usability... yes
checking jmorecfg.h presence... yes
checking for jmorecfg.h... yes
checking jpeglib.h usability... yes
checking jpeglib.h presence... yes
checking for jpeglib.h... yes
checking for jpeg_read_header in -ljpeg... yes
checking if JPEG package is complete... yes
-------------------------------------------------------------
checking for lcms2 >= 2.0.0... yes

checking lcms2/lcms2.h usability... no
checking lcms2/lcms2.h presence... no
checking for lcms2/lcms2.h... no
-------------------------------------------------------------
checking for libopenjp2 >= 2.1.0... yes

-------------------------------------------------------------
checking for lqr-1 >= 0.1.0... yes

-------------------------------------------------------------
checking for liblzma >= 2.9.0... yes

-------------------------------------------------------------
checking for OpenEXR >= 1.0.6... yes

-------------------------------------------------------------
checking for pangocairo >= 1.28.1... yes

checking for pango >= 1.28.1... yes

-------------------------------------------------------------
checking for libpng >= 1.0.0... yes

-------------------------------------------------------------
checking for libraw_r >= 0.14.8... yes

-------------------------------------------------------------
checking for TIFF...
checking tiff.h usability... yes
checking tiff.h presence... yes
checking for tiff.h... yes
checking tiffio.h usability... yes
checking tiffio.h presence... yes
checking for tiffio.h... yes
checking for TIFFOpen in -ltiff... yes
checking for TIFFClientOpen in -ltiff... yes
checking for TIFFIsByteSwapped in -ltiff... yes
checking for TIFFReadRGBATile in -ltiff... yes
checking for TIFFReadRGBAStrip in -ltiff... yes
checking if TIFF package is complete... yes
checking tiffconf.h usability... yes
checking tiffconf.h presence... yes
checking for tiffconf.h... yes
checking for TIFFIsCODECConfigured... yes
checking for TIFFMergeFieldInfo... yes
checking for TIFFIsBigEndian... yes
checking for TIFFSetErrorHandlerExt... yes
checking for TIFFSetTagExtender... yes
checking for TIFFReadEXIFDirectory... yes
checking for TIFFReadGPSDirectory... yes
checking for TIFFSetWarningHandlerExt... yes
checking for TIFFSwabArrayOfTriples... yes
-------------------------------------------------------------
checking for libwebp... yes
checking for libwebpmux >= 0.5.0 libwebpdemux >= 0.5.0... yes

checking if WMF package is complete... no
-------------------------------------------------------------
checking for libxml-2.0 >= 2.0.0... yes

checking for acosh... yes
checking for _aligned_malloc... no
checking for aligned_malloc... no
checking for asinh... yes
checking for atanh... yes
checking for atoll... yes
checking for atexit... yes
checking for cabs... yes
checking for carg... yes
checking for cimag... yes
checking for creal... yes
checking for clock... yes
checking for clock_getres... yes
checking for clock_gettime... yes
checking for ctime_r... yes
checking for directio... no
checking for erf... yes
checking for _exit... yes
checking for execvp... yes
checking for fchmod... yes
checking for floor... yes
checking for fork... (cached) yes
checking for ftime... yes
checking for ftruncate... yes
checking for getc_unlocked... yes
checking for getcwd... yes
checking for getpid... yes
checking for getexecname... no
checking for getdtablesize... yes
checking for getpagesize... (cached) yes
checking for getpwnam_r... yes
checking for getrlimit... yes
checking for getrusage... yes
checking for gettimeofday... yes
checking for gmtime_r... yes
checking for isnan... yes
checking for j0... yes
checking for j1... yes
checking for lltostr... no
checking for localtime_r... yes
checking for lstat... yes
checking for memmove... yes
checking for memset... yes
checking for mkdir... yes
checking for mkstemp... yes
checking for munmap... yes
checking for nanosleep... yes
checking for newlocale... yes
checking for _NSGetExecutablePath... no
checking for pclose... yes
checking for _pclose... no
checking for poll... yes
checking for popen... yes
checking for _popen... no
checking for posix_fadvise... yes
checking for posix_fallocate... yes
checking for posix_madvise... yes
checking for posix_memalign... yes
checking for posix_spawnp... yes
checking for pow... yes
checking for pread... yes
checking for putenv... yes
checking for pwrite... yes
checking for qsort_r... yes
checking for raise... yes
checking for rand_r... yes
checking for readlink... yes
checking for realpath... yes
checking for select... yes
checking for seekdir... yes
checking for sendfile... yes
checking for setlocale... yes
checking for socket... yes
checking for sqrt... yes
checking for setvbuf... yes
checking for stat... yes
checking for strcasestr... yes
checking for strchr... yes
checking for strrchr... yes
checking for strcspn... yes
checking for strdup... yes
checking for strpbrk... yes
checking for strspn... yes
checking for strstr... yes
checking for strtod... (cached) yes
checking for strtod_l... yes
checking for strtol... yes
checking for strtoul... yes
checking for symlink... yes
checking for sysconf... yes
checking for sigemptyset... yes
checking for sigaction... yes
checking for spawnvp... no
checking for strerror... yes
checking for strlcat... yes
checking for strlcpy... yes
checking for strcasecmp... yes
checking for strncasecmp... yes
checking for telldir... yes
checking for tempnam... yes
checking for times... yes
checking for ulltostr... no
checking for uselocale... yes
checking for usleep... yes
checking for utime... yes
checking for vfprintf... yes
checking for vfprintf_l... no
checking for vsprintf... yes
checking for vsnprintf... yes
checking for vsnprintf_l... no
checking for waitpid... yes
checking for _wfopen... no
checking for _wstat... no
-------------------------------------------------------------
checking for ImageMagick delegate programs...
checking for bpgdec... bpgdec
checking for bpgenc... bpgenc
checking for blender... blender
checking for xdg-open... /usr/bin/xdg-open
checking for ufraw-batch... ufraw-batch
checking for libreoffice... libreoffice
checking for dvips... /usr/bin/dvips
checking for magick... magick
checking for magick... magick
checking for xterm... xterm
checking for dot... /usr/bin/dot
checking for hp2xx... hp2xx
checking for html2ps... html2ps
checking for ilbmtoppm... ilbmtoppm
checking for ppmtoilbm... ppmtoilbm
checking for JxrDecApp... JxrDecApp
checking for JxrEncApp... JxrEncApp
checking for lepton... lepton
checking for lp... no
checking for lpr... lpr
checking for gimp... gimp
checking for magick... magick
checking for ffmpeg... ffmpeg
checking for ffmpeg... ffmpeg
checking for mrsidgeodecode... mrsidgeodecode
checking for mv... /usr/bin/mv
checking for pcl6... pcl6
checking for gsx... no
checking for gsc... no
checking for gs... /usr/bin/gs
checking for rm... /usr/bin/rm
checking for rsvg-convert... /usr/bin/rsvg-convert
checking for inkscape... inkscape
checking for tesseract... tesseract
checking for potrace... potrace
checking for fig2dev... fig2dev
checking for dwebp... dwebp
checking for cwebp... cwebp
checking for curl... /usr/bin/curl
checking for gxps... gxps
checking for Apple fonts directory... not found!
checking for Dejavu fonts directory... not found!
checking for Ghostscript fonts directory... /usr/share/ghostscript/fonts/
checking for URW-base35 fonts directory... not found!
checking for Windows fonts directory... not found!
checking for gnutar... no
checking for gtar... no
checking for tar... tar
checking for perl... perl
checking for rpmbuild... no
checking for rpm... no
checking for 7za... no
checking for zip... zip
-------------------------------------------------------------
checking for Ghostscript...
checking for Ghostscript version... 10.02.1
checking for gs color device... png16m
checking for gs alpha device... pngalpha
checking for gs CMYK device... pamcmyk32
checking for gs mono device... pbmraw
checking for gs PDF writing device... pdfwrite
checking for gs PS writing device... ps2write
checking for gs EPS writing device... eps2write
-------------------------------------------------------------
Update ImageMagick configuration
checking that generated files are newer than configure... done
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating common.shi
config.status: creating config/configure.xml
config.status: creating config/delegates.xml
config.status: creating config/ImageMagick.rdf
config.status: creating config/MagickCore.dox
config.status: creating config/MagickWand.dox
config.status: creating config/Magick++.dox
config.status: creating config/type-apple.xml
config.status: creating config/type-dejavu.xml
config.status: creating config/type-ghostscript.xml
config.status: creating config/type-urw-base35.xml
config.status: creating config/type-windows.xml
config.status: creating config/type.xml
config.status: creating ImageMagick.spec
config.status: creating Magick++/bin/Magick++-config
config.status: creating MagickCore/ImageMagick.pc
config.status: creating Magick++/lib/Magick++.pc
config.status: creating MagickCore/MagickCore-config
config.status: creating MagickCore/MagickCore.pc
config.status: creating MagickCore/version.h
config.status: creating Makefile
config.status: creating magick.sh
config.status: creating PerlMagick/check.sh
config.status: creating PerlMagick/default/Magick.pm
config.status: creating PerlMagick/Makefile.PL
config.status: creating PerlMagick/default/Makefile.PL
config.status: creating PerlMagick/quantum/Makefile.PL
config.status: creating PerlMagick/quantum/quantum.pm
config.status: creating PerlMagick/quantum/quantum.xs
config.status: creating PerlMagick/quantum/typemap
config.status: creating utilities/animate.1
config.status: creating utilities/compare.1
config.status: creating utilities/composite.1
config.status: creating utilities/conjure.1
config.status: creating utilities/convert.1
config.status: creating utilities/display.1
config.status: creating utilities/identify.1
config.status: creating utilities/ImageMagick.1
config.status: creating utilities/import.1
config.status: creating utilities/magick.1
config.status: creating utilities/magick-script.1
config.status: creating utilities/mogrify.1
config.status: creating utilities/montage.1
config.status: creating utilities/stream.1
config.status: creating MagickWand/MagickWand-config
config.status: creating MagickWand/MagickWand.pc
config.status: creating config/config.h
config.status: executing MagickCore/magick-baseconfig.h commands
config.status: creating MagickCore/magick-baseconfig.h - prefix MAGICKCORE for config/config.h defines
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing default commands
config.status: executing magick.sh.in commands
config.status: executing MagickCore-config.in commands
config.status: executing MagickWand-config.in commands
config.status: executing Magick++-config.in commands
config.status: executing PerlMagick/check.sh.in commands
configure:
==============================================================================
ImageMagick 7.0.11-5 is configured as follows. Please verify that this
configuration matches your expectations.

Host system type: x86_64-pc-linux-gnu
Build system type: x86_64-pc-linux-gnu

                  Option                        Value
------------------------------------------------------------------------------
Shared libraries  --enable-shared=yes		yes
Static libraries  --enable-static=yes		yes
Build utilities   --with-utilities=yes		yes
Module support    --with-modules=no		no
GNU ld            --with-gnu-ld=yes		yes
Quantum depth     --with-quantum-depth=16	16
High Dynamic Range Imagery
                  --enable-hdri=yes		yes

Install documentation:				yes

Memory allocation library:
  JEMalloc          --with-jemalloc=no		no
  TCMalloc          --with-tcmalloc=no		no
  UMem              --with-umem=no		no

Delegate library configuration:
  BZLIB             --with-bzlib=yes		yes
  Autotrace         --with-autotrace=no		no
  DJVU              --with-djvu=yes		yes
  DPS               --with-dps=yes		no
  FFTW              --with-fftw=no		no
  FLIF              --with-flif=yes		no
  FlashPIX          --with-fpx=yes		no
  FontConfig        --with-fontconfig=yes	yes
  FreeType          --with-freetype=yes		yes
  Ghostscript lib   --with-gslib=no		no
  Graphviz          --with-gvc=no
  HEIC              --with-heic=yes		yes
  JBIG              --with-jbig=yes		yes
  JPEG v1           --with-jpeg=yes		yes
  JPEG XL           --with-jxl=no		no
  LCMS              --with-lcms=yes		yes
  LQR               --with-lqr=yes		yes
  LTDL              --with-ltdl=no		no
  LZMA              --with-lzma=yes		yes
  Magick++          --with-magick-plus-plus=yes	yes
  OpenEXR           --with-openexr=yes		yes
  OpenJP2           --with-openjp2=yes		yes
  PANGO             --with-pango=yes		yes
  PERL              --with-perl=no		no
  PNG               --with-png=yes		yes
  RAQM              --with-raqm=yes		no
  RAW               --with-raw=yes		yes
  RSVG              --with-rsvg=no		no
  TIFF              --with-tiff=yes		yes
  WEBP              --with-webp=yes		yes
  WMF               --with-wmf=no		no
  X11               --with-x=			yes
  XML               --with-xml=yes		yes
  ZIP               --with-zip=yes		yes
  ZLIB              --with-zlib=yes		yes
  ZSTD              --with-zstd=yes		yes

Delegate program configuration:
  GhostPCL          None			pcl6 (unknown)
  GhostXPS          None			gxps (unknown)
  Ghostscript       None			gs (10.02.1)

Font configuration:
  Apple fonts       --with-apple-font-dir=default
  Dejavu fonts      --with-dejavu-font-dir=default	none
  Ghostscript fonts --with-gs-font-dir=default		/usr/share/ghostscript/fonts/
  URW-base35 fonts  --with-urw-base35-font-dir=default	none
  Windows fonts     --with-windows-font-dir=default	none

X11 configuration:
  X_CFLAGS        =
  X_PRE_LIBS      =  -lSM -lICE
  X_LIBS          =
  X_EXTRA_LIBS    =

Options used to compile and link:
  PREFIX          = /usr/src/imagemagick
  EXEC-PREFIX     = /usr/src/imagemagick
  VERSION         = 7.0.11-5
  CC              = gcc
  CFLAGS          = -I/usr/include/libxml2  -I/usr/include/webp  -I/usr/include/webp  -I/usr/include/libraw  -I/usr/include/libpng16   -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -pthread  -I/usr/include/OpenEXR -pthread -I/usr/include/Imath   -I/usr/include/lqr-1 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include  -I/usr/include/openjpeg-2.5   -I/usr/include/x86_64-linux-gnu -I/usr/include/webp  -I/usr/include/freetype2 -I/usr/include/libpng16  -I/usr/include/freetype2 -I/usr/include/libpng16  -pthread     -fopenmp -Wall -g -O2 -mtune=core2 -fexceptions -pthread -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16
  CPPFLAGS        =  -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16
  PCFLAGS         =
  DEFS            = -DHAVE_CONFIG_H
  LDFLAGS         =
  LIBS            =  -ljbig -llcms2  -ltiff -lfreetype   -ljpeg   -llqr-1 -lglib-2.0  -lpng16   -ldjvulibre     -lfontconfig -lfreetype  -lheif  -lwebpmux -lwebpdemux  -lwebp    -lXext -lXt   -lSM -lICE -lX11  -llzma  -lbz2 -lOpenEXR-3_1 -lOpenEXRUtil-3_1 -lOpenEXRCore-3_1 -lIex-3_1 -lIlmThread-3_1 -lImath-3_1  -lopenjp2  -lpangocairo-1.0 -lpango-1.0 -lgobject-2.0 -lglib-2.0 -lharfbuzz -lcairo  -lraw_r -lstdc++ -fopenmp -llcms2   -lxml2   -lz  -lzip     -lm    -lpthread
  CXX             = g++
  CXXFLAGS        =  -pthread
  FEATURES        = DPC HDRI Cipher OpenMP
  DELEGATES       = bzlib djvu fontconfig freetype heic jbig jng jpeg lcms lqr lzma openexr openjp2 pango png ps raw tiff webp x xml zip zlib zstd
==============================================================================

make  all-am
make[1]: Entering directory '/usr/src/imagemagick'
  CC       utilities/magick.o
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-accelerate.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-animate.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-annotate.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-artifact.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-attribute.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-blob.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-cache.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-cache-view.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-channel.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-cipher.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-client.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-coder.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-color.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-colormap.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-colorspace.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-compare.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-composite.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-compress.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-configure.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-constitute.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-decorate.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-delegate.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-deprecate.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-display.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-distort.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-distribute-cache.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-draw.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-effect.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-enhance.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-exception.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-feature.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-fourier.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-fx.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-gem.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-geometry.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-histogram.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-identify.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-image.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-image-view.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-layer.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-linked-list.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-list.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-locale.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-log.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-magic.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-magick.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-matrix.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-memory.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-mime.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-module.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-monitor.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-montage.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-morphology.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-opencl.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-option.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-paint.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-pixel.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-policy.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-prepress.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-property.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-profile.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-quantize.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-quantum.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-quantum-export.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-quantum-import.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-random.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-registry.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-resample.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-resize.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-resource.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-segment.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-semaphore.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-shear.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-signature.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-splay-tree.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-static.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-statistic.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-stream.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-string.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-thread.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-timer.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-token.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-transform.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-threshold.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-type.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-utility.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-version.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-visual-effects.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-vision.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-widget.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-xml-tree.lo
  CC       MagickCore/libMagickCore_7_Q16HDRI_la-xwindow.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-aai.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-art.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ashlar.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-avs.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-bgr.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-bmp.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-braille.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-cals.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-caption.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-cin.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-cip.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-clip.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-cmyk.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-cube.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-cut.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-dcm.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-dds.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-debug.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-dib.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-dng.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-dot.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-dpx.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-farbfeld.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-fax.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-fits.lo
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In file included from ./MagickCore/color-private.h:22,
                 from coders/fits.c:47:
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:695:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:700:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:704:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:708:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:712:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:718:7:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:722:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:726:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:730:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:733:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:738:7:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:743:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
coders/fits.c: In function 'WriteFITSImage':
coders/fits.c:629:10: warning: '__builtin_strncpy' specified bound depends on the length of the source argument [-Wstringop-truncation]
  629 |   (void) strncpy(buffer+offset,data,length);
      |          ^
In function 'CopyFitsRecord',
    inlined from 'CopyFitsRecord' at coders/fits.c:618:20,
    inlined from 'WriteFITSImage' at coders/fits.c:746:3:
coders/fits.c:626:20: note: length computed here
  626 |   length=MagickMin(strlen(data),80);
./MagickCore/image-private.h:37:28: note: in definition of macro 'MagickMin'
   37 | #define MagickMin(x,y)  (((x) < (y)) ? (x) : (y))
      |                            ^
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-fl32.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-gif.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-gradient.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-gray.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-hald.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-hdr.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-histogram.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-hrz.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-html.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-icon.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-info.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-inline.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ipl.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-jnx.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-json.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-kernel.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-label.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mac.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-magick.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-map.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mask.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mat.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-matte.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-meta.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-miff.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mono.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mpc.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mpr.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-msl.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mtv.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-mvg.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-null.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ora.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-otb.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-palm.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pango.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pattern.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pcd.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pcl.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pcx.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pdb.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pdf.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pes.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pgx.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pict.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pix.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-plasma.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pnm.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ps2.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ps3.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ps.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-psd.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-pwp.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-raw.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-rgb.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-rgf.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-rla.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-rle.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-scr.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-screenshot.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-sct.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-sfw.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-sgi.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-sixel.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-stegano.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-sun.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-svg.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-tga.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-thumbnail.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-tile.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-tim2.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-tim.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ttf.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-txt.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-uil.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-url.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-uyvy.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-vicar.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-vid.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-video.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-viff.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-vips.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-wbmp.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-wpg.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xbm.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xc.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xcf.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xpm.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xps.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xtrn.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-yaml.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ycbcr.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-yuv.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-djvu.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-exr.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-heic.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-jbig.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-jpeg.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-jp2.lo
coders/jp2.c: In function 'WriteJP2Image':
coders/jp2.c:998:5: warning: 'bpp' is deprecated: Use prec instead [-Wdeprecated-declarations]
  998 |     jp2_info[i].bpp=(OPJ_UINT32) image->depth;
      |     ^~~~~~~~
In file included from coders/jp2.c:74:
/usr/include/openjpeg-2.5/openjpeg.h:750:45: note: declared here
  750 |     OPJ_DEPRECATED_STRUCT_MEMBER(OPJ_UINT32 bpp, "Use prec instead");
      |                                             ^~~
/usr/include/openjpeg-2.5/openjpeg.h:80:83: note: in definition of macro 'OPJ_DEPRECATED_STRUCT_MEMBER'
   80 | #define OPJ_DEPRECATED_STRUCT_MEMBER(memb, msg) __attribute__ ((deprecated(msg))) memb
      |                                                                                   ^~~~
coders/jp2.c:1004:9: warning: 'bpp' is deprecated: Use prec instead [-Wdeprecated-declarations]
 1004 |         jp2_info[i].bpp++;
      |         ^~~~~~~~
/usr/include/openjpeg-2.5/openjpeg.h:750:45: note: declared here
  750 |     OPJ_DEPRECATED_STRUCT_MEMBER(OPJ_UINT32 bpp, "Use prec instead");
      |                                             ^~~
/usr/include/openjpeg-2.5/openjpeg.h:80:83: note: in definition of macro 'OPJ_DEPRECATED_STRUCT_MEMBER'
   80 | #define OPJ_DEPRECATED_STRUCT_MEMBER(memb, msg) __attribute__ ((deprecated(msg))) memb
      |                                                                                   ^~~~
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-png.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-ept.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-tiff.lo
coders/tiff.c: In function 'TIFFGetEXIFProperties':
coders/tiff.c:834:5: warning: 'uint64' is deprecated [-Wdeprecated-declarations]
  834 |     offset;
      |     ^~~~~~
coders/tiff.c: In function 'TIFFGetGPSProperties':
coders/tiff.c:873:5: warning: 'uint64' is deprecated [-Wdeprecated-declarations]
  873 |     offset;
      |     ^~~~~~
coders/tiff.c: At top level:
coders/tiff.c:920:1: warning: 'int32' is deprecated [-Wdeprecated-declarations]
  920 | {
      | ^
coders/tiff.c: In function 'TIFFReadPixels':
coders/tiff.c:922:5: warning: 'int32' is deprecated [-Wdeprecated-declarations]
  922 |     status;
      |     ^~~~~~
coders/tiff.c: In function 'GetJPEGMethod':
coders/tiff.c:994:5: warning: 'uint64' is deprecated [-Wdeprecated-declarations]
  994 |     *value;
      |     ^
coders/tiff.c: In function 'ReadTIFFImage':
coders/tiff.c:1898:9: warning: 'uint64' is deprecated [-Wdeprecated-declarations]
 1898 |         extent+=image->columns*sizeof(uint64);
      |         ^~~~~~
coders/tiff.c:1998:9: warning: 'uint64' is deprecated [-Wdeprecated-declarations]
 1998 |         extent+=columns*sizeof(uint64);
      |         ^~~~~~
coders/tiff.c:2096:9: warning: 'uint64' is deprecated [-Wdeprecated-declarations]
 2096 |         number_pixels+=image->columns*sizeof(uint64);
      |         ^~~~~~~~~~~~~
coders/tiff.c: At top level:
coders/tiff.c:2936:1: warning: 'int32' is deprecated [-Wdeprecated-declarations]
 2936 | {
      | ^
coders/tiff.c: In function 'TIFFWritePixels':
coders/tiff.c:2938:5: warning: 'int32' is deprecated [-Wdeprecated-declarations]
 2938 |     status;
      |     ^~~~~~
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-webp.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-x.lo
  CC       coders/MagickCore_libMagickCore_7_Q16HDRI_la-xwd.lo
  CC       filters/MagickCore_libMagickCore_7_Q16HDRI_la-analyze.lo
  CCLD     MagickCore/libMagickCore-7.Q16HDRI.la
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-animate.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-compare.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-composite.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-conjure.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-convert.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-deprecate.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-display.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-drawing-wand.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-identify.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-import.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-magick-cli.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-magick-image.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-magick-property.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-magick-wand.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-mogrify.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-montage.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-operation.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-pixel-iterator.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-pixel-wand.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-script-token.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-stream.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-wand.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-wandcli.lo
  CC       MagickWand/libMagickWand_7_Q16HDRI_la-wand-view.lo
  CCLD     MagickWand/libMagickWand-7.Q16HDRI.la
  CCLD     utilities/magick
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Blob.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-BlobRef.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-CoderInfo.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Color.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Drawable.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Exception.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Functions.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Geometry.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Image.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-ImageRef.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Montage.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Options.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Pixels.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-ResourceLimits.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-SecurityPolicy.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Statistic.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-STL.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-Thread.lo
  CXX      Magick++/lib/libMagick___7_Q16HDRI_la-TypeMetric.lo
  CXXLD    Magick++/lib/libMagick++-7.Q16HDRI.la
cp -f MagickCore/ImageMagick.pc MagickCore/ImageMagick-7.Q16HDRI.pc
cp -f MagickCore/MagickCore.pc MagickCore/MagickCore-7.Q16HDRI.pc
cp -f MagickWand/MagickWand.pc MagickWand/MagickWand-7.Q16HDRI.pc
cp -f Magick++/lib/Magick++.pc Magick++/lib/Magick++-7.Q16HDRI.pc
make[1]: Leaving directory '/usr/src/imagemagick'
make  install-am
make[1]: Entering directory '/usr/src/imagemagick'
make[2]: Entering directory '/usr/src/imagemagick'
 /usr/bin/mkdir -p '/usr/src/imagemagick/lib'
 /bin/bash ./libtool   --mode=install /usr/bin/install -c   MagickCore/libMagickCore-7.Q16HDRI.la MagickWand/libMagickWand-7.Q16HDRI.la Magick++/lib/libMagick++-7.Q16HDRI.la '/usr/src/imagemagick/lib'
libtool: install: /usr/bin/install -c MagickCore/.libs/libMagickCore-7.Q16HDRI.so.9.0.0 /usr/src/imagemagick/lib/libMagickCore-7.Q16HDRI.so.9.0.0
libtool: install: (cd /usr/src/imagemagick/lib && { ln -s -f libMagickCore-7.Q16HDRI.so.9.0.0 libMagickCore-7.Q16HDRI.so.9 || { rm -f libMagickCore-7.Q16HDRI.so.9 && ln -s libMagickCore-7.Q16HDRI.so.9.0.0 libMagickCore-7.Q16HDRI.so.9; }; })
libtool: install: (cd /usr/src/imagemagick/lib && { ln -s -f libMagickCore-7.Q16HDRI.so.9.0.0 libMagickCore-7.Q16HDRI.so || { rm -f libMagickCore-7.Q16HDRI.so && ln -s libMagickCore-7.Q16HDRI.so.9.0.0 libMagickCore-7.Q16HDRI.so; }; })
libtool: install: /usr/bin/install -c MagickCore/.libs/libMagickCore-7.Q16HDRI.lai /usr/src/imagemagick/lib/libMagickCore-7.Q16HDRI.la
libtool: warning: relinking 'MagickWand/libMagickWand-7.Q16HDRI.la'
libtool: install: (cd /usr/src/imagemagick; /bin/bash "/usr/src/imagemagick/libtool"  --silent --tag CC --mode=relink gcc -I/usr/include/libxml2 -I/usr/include/webp -I/usr/include/webp -I/usr/include/libraw -I/usr/include/libpng16 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/harfbuzz -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/fribidi -I/usr/include/cairo -I/usr/include/pixman-1 -pthread -I/usr/include/OpenEXR -pthread -I/usr/include/Imath -I/usr/include/lqr-1 -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/openjpeg-2.5 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/freetype2 -I/usr/include/libpng16 -pthread -fopenmp -Wall -g -O2 -mtune=core2 -fexceptions -pthread -DMAGICKCORE_HDRI_ENABLE=1 -DMAGICKCORE_QUANTUM_DEPTH=16 -no-undefined -Wl,--version-script=./MagickWand/libMagickWand.map -version-info 9:0:0 -o MagickWand/libMagickWand-7.Q16HDRI.la -rpath /usr/src/imagemagick/lib MagickWand/libMagickWand_7_Q16HDRI_la-animate.lo MagickWand/libMagickWand_7_Q16HDRI_la-compare.lo MagickWand/libMagickWand_7_Q16HDRI_la-composite.lo MagickWand/libMagickWand_7_Q16HDRI_la-conjure.lo MagickWand/libMagickWand_7_Q16HDRI_la-convert.lo MagickWand/libMagickWand_7_Q16HDRI_la-deprecate.lo MagickWand/libMagickWand_7_Q16HDRI_la-display.lo MagickWand/libMagickWand_7_Q16HDRI_la-drawing-wand.lo MagickWand/libMagickWand_7_Q16HDRI_la-identify.lo MagickWand/libMagickWand_7_Q16HDRI_la-import.lo MagickWand/libMagickWand_7_Q16HDRI_la-magick-cli.lo MagickWand/libMagickWand_7_Q16HDRI_la-magick-image.lo MagickWand/libMagickWand_7_Q16HDRI_la-magick-property.lo MagickWand/libMagickWand_7_Q16HDRI_la-magick-wand.lo MagickWand/libMagickWand_7_Q16HDRI_la-mogrify.lo MagickWand/libMagickWand_7_Q16HDRI_la-montage.lo MagickWand/libMagickWand_7_Q16HDRI_la-operation.lo MagickWand/libMagickWand_7_Q16HDRI_la-pixel-iterator.lo MagickWand/libMagickWand_7_Q16HDRI_la-pixel-wand.lo MagickWand/libMagickWand_7_Q16HDRI_la-script-token.lo MagickWand/libMagickWand_7_Q16HDRI_la-stream.lo MagickWand/libMagickWand_7_Q16HDRI_la-wand.lo MagickWand/libMagickWand_7_Q16HDRI_la-wandcli.lo MagickWand/libMagickWand_7_Q16HDRI_la-wand-view.lo MagickCore/libMagickCore-7.Q16HDRI.la -lSM -lICE -lX11 -lgomp -lm )
libtool: install: /usr/bin/install -c MagickWand/.libs/libMagickWand-7.Q16HDRI.so.9.0.0T /usr/src/imagemagick/lib/libMagickWand-7.Q16HDRI.so.9.0.0
libtool: install: (cd /usr/src/imagemagick/lib && { ln -s -f libMagickWand-7.Q16HDRI.so.9.0.0 libMagickWand-7.Q16HDRI.so.9 || { rm -f libMagickWand-7.Q16HDRI.so.9 && ln -s libMagickWand-7.Q16HDRI.so.9.0.0 libMagickWand-7.Q16HDRI.so.9; }; })
libtool: install: (cd /usr/src/imagemagick/lib && { ln -s -f libMagickWand-7.Q16HDRI.so.9.0.0 libMagickWand-7.Q16HDRI.so || { rm -f libMagickWand-7.Q16HDRI.so && ln -s libMagickWand-7.Q16HDRI.so.9.0.0 libMagickWand-7.Q16HDRI.so; }; })
libtool: install: /usr/bin/install -c MagickWand/.libs/libMagickWand-7.Q16HDRI.lai /usr/src/imagemagick/lib/libMagickWand-7.Q16HDRI.la
libtool: warning: relinking 'Magick++/lib/libMagick++-7.Q16HDRI.la'
libtool: install: (cd /usr/src/imagemagick; /bin/bash "/usr/src/imagemagick/libtool"  --silent --tag CXX --mode=relink g++ -pthread -no-undefined -version-info 5:0:0 -o Magick++/lib/libMagick++-7.Q16HDRI.la -rpath /usr/src/imagemagick/lib Magick++/lib/libMagick___7_Q16HDRI_la-Blob.lo Magick++/lib/libMagick___7_Q16HDRI_la-BlobRef.lo Magick++/lib/libMagick___7_Q16HDRI_la-CoderInfo.lo Magick++/lib/libMagick___7_Q16HDRI_la-Color.lo Magick++/lib/libMagick___7_Q16HDRI_la-Drawable.lo Magick++/lib/libMagick___7_Q16HDRI_la-Exception.lo Magick++/lib/libMagick___7_Q16HDRI_la-Functions.lo Magick++/lib/libMagick___7_Q16HDRI_la-Geometry.lo Magick++/lib/libMagick___7_Q16HDRI_la-Image.lo Magick++/lib/libMagick___7_Q16HDRI_la-ImageRef.lo Magick++/lib/libMagick___7_Q16HDRI_la-Montage.lo Magick++/lib/libMagick___7_Q16HDRI_la-Options.lo Magick++/lib/libMagick___7_Q16HDRI_la-Pixels.lo Magick++/lib/libMagick___7_Q16HDRI_la-ResourceLimits.lo Magick++/lib/libMagick___7_Q16HDRI_la-SecurityPolicy.lo Magick++/lib/libMagick___7_Q16HDRI_la-Statistic.lo Magick++/lib/libMagick___7_Q16HDRI_la-STL.lo Magick++/lib/libMagick___7_Q16HDRI_la-Thread.lo Magick++/lib/libMagick___7_Q16HDRI_la-TypeMetric.lo MagickCore/libMagickCore-7.Q16HDRI.la MagickWand/libMagickWand-7.Q16HDRI.la )
libtool: install: /usr/bin/install -c Magick++/lib/.libs/libMagick++-7.Q16HDRI.so.5.0.0T /usr/src/imagemagick/lib/libMagick++-7.Q16HDRI.so.5.0.0
libtool: install: (cd /usr/src/imagemagick/lib && { ln -s -f libMagick++-7.Q16HDRI.so.5.0.0 libMagick++-7.Q16HDRI.so.5 || { rm -f libMagick++-7.Q16HDRI.so.5 && ln -s libMagick++-7.Q16HDRI.so.5.0.0 libMagick++-7.Q16HDRI.so.5; }; })
libtool: install: (cd /usr/src/imagemagick/lib && { ln -s -f libMagick++-7.Q16HDRI.so.5.0.0 libMagick++-7.Q16HDRI.so || { rm -f libMagick++-7.Q16HDRI.so && ln -s libMagick++-7.Q16HDRI.so.5.0.0 libMagick++-7.Q16HDRI.so; }; })
libtool: install: /usr/bin/install -c Magick++/lib/.libs/libMagick++-7.Q16HDRI.lai /usr/src/imagemagick/lib/libMagick++-7.Q16HDRI.la
libtool: install: /usr/bin/install -c MagickCore/.libs/libMagickCore-7.Q16HDRI.a /usr/src/imagemagick/lib/libMagickCore-7.Q16HDRI.a
libtool: install: chmod 644 /usr/src/imagemagick/lib/libMagickCore-7.Q16HDRI.a
libtool: install: ranlib /usr/src/imagemagick/lib/libMagickCore-7.Q16HDRI.a
libtool: install: /usr/bin/install -c MagickWand/.libs/libMagickWand-7.Q16HDRI.a /usr/src/imagemagick/lib/libMagickWand-7.Q16HDRI.a
libtool: install: chmod 644 /usr/src/imagemagick/lib/libMagickWand-7.Q16HDRI.a
libtool: install: ranlib /usr/src/imagemagick/lib/libMagickWand-7.Q16HDRI.a
libtool: install: /usr/bin/install -c Magick++/lib/.libs/libMagick++-7.Q16HDRI.a /usr/src/imagemagick/lib/libMagick++-7.Q16HDRI.a
libtool: install: chmod 644 /usr/src/imagemagick/lib/libMagick++-7.Q16HDRI.a
libtool: install: ranlib /usr/src/imagemagick/lib/libMagick++-7.Q16HDRI.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/sbin" ldconfig -n /usr/src/imagemagick/lib
----------------------------------------------------------------------
Libraries have been installed in:
   /usr/src/imagemagick/lib

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the '-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the 'LD_RUN_PATH' environment variable
     during linking
   - use the '-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to '/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/usr/src/imagemagick/bin'
  /bin/bash ./libtool   --mode=install /usr/bin/install -c utilities/magick '/usr/src/imagemagick/bin'
libtool: install: /usr/bin/install -c utilities/.libs/magick /usr/src/imagemagick/bin/magick
 /usr/bin/mkdir -p '/usr/src/imagemagick/bin'
 /usr/bin/install -c MagickCore/MagickCore-config MagickWand/MagickWand-config Magick++/bin/Magick++-config '/usr/src/imagemagick/bin'
/bin/bash ./config/mkinstalldirs /usr/src/imagemagick/bin
cd /usr/src/imagemagick/bin ; \
magick=`echo "magick" | sed 's,^.*/,,;s/$//;s,x,x,;s/$//'`; \
for name in animate compare composite conjure convert display identify import magick-script mogrify montage stream ; \
do \
  target=`echo "$name" | sed 's,^.*/,,;s/$//;s,x,x,;s/$//'`; \
  rm -f $target ; \
  ln -s $magick $target ; \
done
 /usr/bin/mkdir -p '/usr/src/imagemagick/include/ImageMagick-7/MagickCore'
 /usr/bin/install -c -m 644 MagickCore/MagickCore.h MagickCore/animate.h MagickCore/annotate.h MagickCore/artifact.h MagickCore/attribute.h MagickCore/blob.h MagickCore/cache.h MagickCore/cache-view.h MagickCore/channel.h MagickCore/cipher.h MagickCore/client.h MagickCore/coder.h MagickCore/color.h MagickCore/colormap.h MagickCore/colorspace.h MagickCore/compare.h MagickCore/composite.h MagickCore/compress.h MagickCore/configure.h MagickCore/constitute.h MagickCore/decorate.h MagickCore/delegate.h MagickCore/deprecate.h MagickCore/display.h MagickCore/distort.h MagickCore/distribute-cache.h MagickCore/draw.h MagickCore/effect.h MagickCore/enhance.h MagickCore/exception.h MagickCore/feature.h MagickCore/fourier.h MagickCore/fx.h MagickCore/gem.h MagickCore/geometry.h MagickCore/histogram.h MagickCore/identify.h MagickCore/image.h MagickCore/image-view.h MagickCore/layer.h '/usr/src/imagemagick/include/ImageMagick-7/MagickCore'
 /usr/bin/install -c -m 644 MagickCore/linked-list.h MagickCore/list.h MagickCore/locale_.h MagickCore/log.h MagickCore/magic.h MagickCore/magick.h MagickCore/magick-config.h MagickCore/magick-type.h MagickCore/matrix.h MagickCore/memory_.h MagickCore/method-attribute.h MagickCore/methods.h MagickCore/mime.h MagickCore/module.h MagickCore/monitor.h MagickCore/montage.h MagickCore/morphology.h MagickCore/nt-base.h MagickCore/opencl.h MagickCore/option.h MagickCore/paint.h MagickCore/pixel.h MagickCore/pixel-accessor.h MagickCore/policy.h MagickCore/prepress.h MagickCore/profile.h MagickCore/property.h MagickCore/quantize.h MagickCore/quantum.h MagickCore/random_.h MagickCore/registry.h MagickCore/resample.h MagickCore/resize.h MagickCore/resource_.h MagickCore/segment.h MagickCore/semaphore.h MagickCore/shear.h MagickCore/signature.h MagickCore/splay-tree.h MagickCore/static.h '/usr/src/imagemagick/include/ImageMagick-7/MagickCore'
 /usr/bin/install -c -m 644 MagickCore/statistic.h MagickCore/stream.h MagickCore/string_.h MagickCore/studio.h MagickCore/timer.h MagickCore/token.h MagickCore/transform.h MagickCore/threshold.h MagickCore/type.h MagickCore/utility.h MagickCore/version.h MagickCore/vision.h MagickCore/visual-effects.h MagickCore/widget.h MagickCore/xml-tree.h MagickCore/xwindow.h '/usr/src/imagemagick/include/ImageMagick-7/MagickCore'
 /usr/bin/mkdir -p '/usr/src/imagemagick/include/ImageMagick-7/MagickCore'
 /usr/bin/install -c -m 644 MagickCore/magick-baseconfig.h '/usr/src/imagemagick/include/ImageMagick-7/MagickCore'
 /usr/bin/mkdir -p '/usr/src/imagemagick/include/ImageMagick-7/MagickWand'
 /usr/bin/install -c -m 644 MagickWand/MagickWand.h MagickWand/animate.h MagickWand/compare.h MagickWand/composite.h MagickWand/conjure.h MagickWand/convert.h MagickWand/deprecate.h MagickWand/display.h MagickWand/drawing-wand.h MagickWand/identify.h MagickWand/import.h MagickWand/magick-cli.h MagickWand/magick-image.h MagickWand/magick-property.h MagickWand/method-attribute.h MagickWand/mogrify.h MagickWand/montage.h MagickWand/operation.h MagickWand/pixel-iterator.h MagickWand/pixel-wand.h MagickWand/stream.h MagickWand/wandcli.h MagickWand/wand-view.h '/usr/src/imagemagick/include/ImageMagick-7/MagickWand'
 /usr/bin/mkdir -p '/usr/src/imagemagick/etc/ImageMagick-7/'
 /usr/bin/install -c -m 644 config/colors.xml config/delegates.xml config/log.xml config/mime.xml config/policy.xml config/quantization-table.xml config/thresholds.xml config/type.xml config/type-apple.xml config/type-dejavu.xml config/type-ghostscript.xml config/type-urw-base35.xml config/type-windows.xml '/usr/src/imagemagick/etc/ImageMagick-7/'
 /usr/bin/mkdir -p '/usr/src/imagemagick/share/ImageMagick-7'
 /usr/bin/install -c -m 644 config/english.xml config/francais.xml config/locale.xml '/usr/src/imagemagick/share/ImageMagick-7'
 /usr/bin/mkdir -p '/usr/src/imagemagick/lib/ImageMagick-7.0.11/config-Q16HDRI'
 /usr/bin/install -c -m 644 config/configure.xml '/usr/src/imagemagick/lib/ImageMagick-7.0.11/config-Q16HDRI'
/bin/bash ./config/mkinstalldirs /usr/src/imagemagick/share/doc/ImageMagick-7
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7
/usr/bin/install -c -m 644 ./index.html /usr/src/imagemagick/share/doc/ImageMagick-7
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/ImageMagick.ico /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/affine.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/annotate.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/arc.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/atop.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/background.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/bitcoin.svg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/black.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/bluebells_clipped.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/bluebells_darker.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/bluebells_lin.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/bluebells_log.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/button.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/color-thresholding-gray.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/color-thresholding-hsv-rgb.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/color-thresholding-hsv.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/color-thresholding-rgb.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/color-thresholding.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/color-thresholding.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/configure.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/convex-hull-barn-closure.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/convex-hull-barn.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/convex-hull-blocks-closure.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/convex-hull-blocks.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/convex-hull.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/cylinder_shaded.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/difference.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/examples.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/frame.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/fuzzy-magick.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/gaussian-blur.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/granite.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/imade_art2.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/label.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/logo-sm-flop.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/logo-sm-fx.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/logo-sm.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/logo.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/logo.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/montage.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/mountains-clahe.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/mountains-equalize.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/mountains.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/navy.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/objects.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/objects.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/objects.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/over.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/piechart.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/radial-gradient.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/reconstruct.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/red-ball.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/red-circle.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/right.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/rose-over.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/rose-sigmoidal.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/rose.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/rose.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/rose.pnm /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/script.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/smile.gif /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/sponsor.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/sprite.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/t-shirt.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/wand.ico /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/wand.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/white-highlight.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/wizard.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/images
/usr/bin/install -c -m 644 ./images/wizard.png /usr/src/imagemagick/share/doc/ImageMagick-7/images
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/bricks.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/checkerboard.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/circles.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/crosshatch.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/crosshatch30.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/crosshatch45.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/fishscales.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray0.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray10.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray100.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray15.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray20.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray25.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray30.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray35.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray40.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray45.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray5.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray50.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray55.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray60.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray65.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray70.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray75.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray80.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray85.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray90.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/gray95.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hexagons.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontal.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontal2.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontal3.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/horizontalsaw.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_bdiagonal.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_cross.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_diagcross.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_fdiagonal.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_horizontal.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/hs_vertical.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/left30.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/left45.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/leftshingle.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/octagons.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/right30.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/right45.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/rightshingle.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/smallfishscales.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/vertical.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/vertical2.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/vertical3.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalbricks.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalleftshingle.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalrightshingle.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
/usr/bin/install -c -m 644 ./images/patterns/verticalsaw.png /usr/src/imagemagick/share/doc/ImageMagick-7/images/patterns
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/ImageMagickObject.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/advanced-unix-installation.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/advanced-windows-installation.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/animate.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/architecture.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/changelog.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/cipher.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/cite.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/clahe.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/color-management.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/color-thresholding.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/color.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/command-line-options.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/command-line-processing.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/command-line-tools.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/compare.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/compose.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/composite.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/conjure.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/connected-components.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/contact.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/convert.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/convex-hull.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/defines.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/develop.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/display.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/distribute-pixel-cache.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/download.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/escape.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/examples.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/exception.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/export.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/favicon.ico /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/formats.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/fx.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/gradient.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/high-dynamic-range.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/history.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/identify.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/import.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/index.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/install-source.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/jp2.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/license.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/links.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/magick++.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/magick-core.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/magick-script.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/magick-vector-graphics.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/magick-wand.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/magick.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/miff.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/mirror.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/mogrify.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/montage.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/motion-picture.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/news.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/opencl.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/openmp.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/perl-magick.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/porting.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/quantize.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/resources.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/search.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/security-policy.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/sitemap.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/stream.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/support.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/wand.png /usr/src/imagemagick/share/doc/ImageMagick-7/www
/usr/bin/install -c -m 644 ./www/webp.html /usr/src/imagemagick/share/doc/ImageMagick-7/www
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/www/assets
/usr/bin/install -c -m 644 ./www/assets/magick.css /usr/src/imagemagick/share/doc/ImageMagick-7/www/assets
/usr/bin/install -c -m 644 ./www/assets/magick.js /usr/src/imagemagick/share/doc/ImageMagick-7/www/assets
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/Image++.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/animate.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/annotate.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/attribute.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/blob.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/cache-view.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/cache.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/channel.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/cipher.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/color.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/colormap.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/colorspace.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/compare.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/composite.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/constitute.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/decorate.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/deprecate.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/display.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/distort.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/draw.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/drawing-wand.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/effect.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/enhance.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/exception.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/feature.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/fourier.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/fx.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/histogram.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/image-view.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/image.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/layer.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/list.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/magick++-classes.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/magick-deprecate.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/magick-image.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/magick-property.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/magick-wand.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/magick.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/memory.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/mime.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/module.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/mogrify.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/monitor.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/montage.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/morphology.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/paint.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/pixel-iterator.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/pixel-wand.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/profile.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/property.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/quantize.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/registry.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/resize.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/resource.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/segment.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/shear.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/signature.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/statistic.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/stream.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/transform.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/version.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
/usr/bin/install -c -m 644 ./www/api/wand-view.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/api
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/analyze.c /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/coder.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/colors.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/configure.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/contrast.c /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/core.c /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/delegates.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/english.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/examples.pl /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/francais.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/incantation.msl /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/locale.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/log.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/magic.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/mgk.c /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/mime.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/piechart.mvg /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/piechart.svg /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/policy.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/quantization-table.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/thresholds.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/type-apple.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/type-dejavu.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/type-ghostscript.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/type-urw-base35.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/type-windows.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/type.xml /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
/usr/bin/install -c -m 644 ./www/source/wand.c /usr/src/imagemagick/share/doc/ImageMagick-7/www/source
mkdir -p -- /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Blob.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Cache.fig /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Cache.png /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Cache.svg /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/ChangeLog.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/CoderInfo.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Color.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Documentation.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Drawable.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Drawable_example_1.png /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Enumerations.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Exception.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/FormatCharacters.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Future.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Geometry.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image++.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image.fig /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Image.png /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/ImageDesign.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/ImageMagick.png /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Install.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Magick++.png /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Montage.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/NEWS.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/PixelPacket.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Pixels.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/Quantum.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/README.txt /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/STL.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/TypeMetric.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/index.html /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/magick.css /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/montage-sample-framed.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/right_triangle.png /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-framed.fig /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-framed.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-plain.fig /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-anatomy-plain.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-sample-framed.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
/usr/bin/install -c -m 644 ./www/Magick++/thumbnail-sample-plain.jpg /usr/src/imagemagick/share/doc/ImageMagick-7/www/Magick++
 /usr/bin/mkdir -p '/usr/src/imagemagick/share/doc/ImageMagick-7'
 /usr/bin/install -c -m 644 LICENSE ChangeLog NEWS.txt '/usr/src/imagemagick/share/doc/ImageMagick-7'
 /usr/bin/mkdir -p '/usr/src/imagemagick/include/ImageMagick-7/Magick++'
 /usr/bin/install -c -m 644 Magick++/lib/Magick++/Blob.h Magick++/lib/Magick++/CoderInfo.h Magick++/lib/Magick++/Color.h Magick++/lib/Magick++/Drawable.h Magick++/lib/Magick++/Exception.h Magick++/lib/Magick++/Functions.h Magick++/lib/Magick++/Geometry.h Magick++/lib/Magick++/Image.h Magick++/lib/Magick++/Include.h Magick++/lib/Magick++/Montage.h Magick++/lib/Magick++/Pixels.h Magick++/lib/Magick++/ResourceLimits.h Magick++/lib/Magick++/SecurityPolicy.h Magick++/lib/Magick++/Statistic.h Magick++/lib/Magick++/STL.h Magick++/lib/Magick++/TypeMetric.h '/usr/src/imagemagick/include/ImageMagick-7/Magick++'
 /usr/bin/mkdir -p '/usr/src/imagemagick/include/ImageMagick-7'
 /usr/bin/install -c -m 644 Magick++/lib/Magick++.h '/usr/src/imagemagick/include/ImageMagick-7'
 /usr/bin/mkdir -p '/usr/src/imagemagick/share/man/man1'
 /usr/bin/install -c -m 644 MagickCore/MagickCore-config.1 MagickWand/MagickWand-config.1 Magick++/bin/Magick++-config.1 utilities/ImageMagick.1 utilities/animate.1 utilities/compare.1 utilities/composite.1 utilities/conjure.1 utilities/convert.1 utilities/display.1 utilities/identify.1 utilities/import.1 utilities/magick.1 utilities/magick-script.1 utilities/mogrify.1 utilities/montage.1 utilities/stream.1 '/usr/src/imagemagick/share/man/man1'
 /usr/bin/mkdir -p '/usr/src/imagemagick/lib/pkgconfig'
 /usr/bin/install -c -m 644 MagickCore/ImageMagick.pc MagickCore/ImageMagick-7.Q16HDRI.pc MagickCore/MagickCore.pc MagickCore/MagickCore-7.Q16HDRI.pc MagickWand/MagickWand.pc MagickWand/MagickWand-7.Q16HDRI.pc Magick++/lib/Magick++.pc Magick++/lib/Magick++-7.Q16HDRI.pc '/usr/src/imagemagick/lib/pkgconfig'
make[2]: Leaving directory '/usr/src/imagemagick'
make[1]: Leaving directory '/usr/src/imagemagick'
🧹 Cleaning up...
🗄️ Compressing build...
✅ All done!
root@c790c04f6c83:/buildpack#

@swishstache
Copy link
Author

Comparison of supported file formats.

Production
production_capabilities.txt

This build.
image_capabilities.txt

Summary

We've lost

  • A*
  • ASHLAR*
  • B*
  • C*
  • CUBE*
  • DCR
  • FARBFELD*
  • FF*
  • FL32*
  • G*
  • write FLV VIDEO r-- Flash Video Stream
  • K*
  • M*
  • O*
  • ORF
  • PHM*
  • R*
  • RGB565*
  • SCREENSHOT*
  • TTC*
  • Y*
  • YAML

We've gained

  • read AVIF* --- AV1 Image File Format (1.11.0)
  • write H* MAGICK -w- Image expressed as a 'C/C++' char array
  • read,write J2C* JP2 rw- JPEG-2000 Code Stream Syntax (2.5.0)
  • read,write J2K* JP2 rw- JPEG-2000 Code Stream Syntax (2.5.0)
  • read,write JP2* JP2 rw- JPEG-2000 File Format Syntax (2.5.0)
  • read,write JPC* JP2 rw- JPEG-2000 Code Stream Syntax (2.5.0)
  • read,write JPM* JP2 rw- JPEG-2000 Code Stream Syntax (2.5.0)
  • read,write JPT* JP2 rw- JPEG-2000 File Format Syntax (2.5.0)
  • read,write MAGICK* MAGICK rw- Predefined Magick Image (LOGO, ROSE, etc.); output same as 'H'
  • write PREVIEW* PREVIEW -w- Show a preview an image enhancement, effect, or f/x
  • write TEXT* TXT rw+ Text
  • read,write VIDEO VIDEO rw+ MPEG Video Stream
  • read,write WEBP* WEBP rw+ WebP Image Format (libwebp 1.3.2 [020F])
  • read WMF* WMF r-- Windows Meta File
  • read WMZ* WMF r-- Compressed Windows Meta File
  • write WPG* WPG rw- Word Perfect Graphics

@swishstache
Copy link
Author

Version Comparison

Production

$ magick --version
Version: ImageMagick 7.0.11-5 Q16 x86_64 2021-03-20 https://imagemagick.org
Copyright: (C) 1999-2021 ImageMagick Studio LLC
License: https://imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP(4.5)
Delegates (built-in): bzlib djvu fontconfig freetype heic jbig jng jpeg lcms lqr lzma openexr pangocairo png tiff x xml zip zlib

This build

$ magick --version
Version: ImageMagick 7.0.11-5 Q16 x86_64 2021-03-20 https://imagemagick.org
Copyright: (C) 1999-2021 ImageMagick Studio LLC
License: https://imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP(4.5)
Delegates (built-in): bzlib djvu fontconfig freetype heic jbig jng jp2 jpeg lcms lqr lzma openexr pangocairo png raw tiff webp x xml zip zlib

Summary

We've expanded our support for:

  • JPEG-2000
  • RAW
  • WebP

@swishstache swishstache self-assigned this Sep 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant