Skip to content

build extend module with nginx docker is error #980

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

Open
freshgeek opened this issue Apr 21, 2025 · 6 comments
Open

build extend module with nginx docker is error #980

freshgeek opened this issue Apr 21, 2025 · 6 comments
Labels

Comments

@freshgeek
Copy link

Bug Overview

When I use a third-party module and there is no deb package, building an image will report an error. Here is the replication operation

mkdir -p ngx_waf

wget -O Dockerfile https://raw.githubusercontent.com/nginx/docker-nginx/refs/heads/master/modules/Dockerfile
 echo 'https://github.com/ADD-SP/ngx_waf/archive/refs/tags/v6.1.10.tar.gz' > ngx_waf/source
 
echo 'flex bison' > ngx_waf/build-deps
 
echo '' > ngx_waf/prebuild && chmod +x ngx_waf/prebuild 
 
 tree ngx_waf
 
docker build --build-arg ENABLED_MODULES="ngx_waf" -t third-nginx .



Here is the error log:

1.631 Fetched 9307 kB in 1s (6677 kB/s)
1.631 Reading package lists...
2.349 Reading package lists...
3.077 E: Unsupported file /tmp/packages/nginx-module-ngxwaf_1.27.5*.deb given on commandline
------
Dockerfile:73
--------------------
  72 |     FROM ${NGINX_FROM_IMAGE}
  73 | >>> RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder \
  74 | >>>     apt-get update \
  75 | >>>     && . /tmp/packages/modules.env \
  76 | >>>     && for module in $BUILT_MODULES; do \
  77 | >>>            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb; \
  78 | >>>        done \
  79 | >>>     && rm -rf /var/lib/apt/lists/
  80 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb;        done     && rm -rf /var/lib/apt/lists/" did not complete successfully: exit code: 100

Expected Behavior

1

Steps to Reproduce the Bug

1

Environment Details

docker

Additional Context

No response

@freshgeek freshgeek added the bug label Apr 21, 2025
@freshgeek
Copy link
Author

Is it an expected behavior? Or provide new features built without deb packages

@thresheek
Copy link
Member

Hi @freshgeek

This probably means that the build failed. You should examine the full log output.

@freshgeek
Copy link
Author

Yes, he failed to build. I copied the complete logs over, but the existing logs can explain the situation. Currently, modules without deb cannot be installed @thresheek

@freshgeek
Copy link
Author

[root@fand ~]# docker build --build-arg ENABLED_MODULES="ngx_waf" -t third-nginx .
[+] Building 66.4s (9/9) FINISHED                                                                                                                                    docker:default
 => [internal] load build definition from Dockerfile                                                                                                                           0.0s
 => => transferring dockerfile: 4.23kB                                                                                                                                         0.0s
 => [internal] load metadata for docker.io/library/nginx:mainline                                                                                                              1.8s
 => [internal] load .dockerignore                                                                                                                                              0.0s
 => => transferring context: 2B                                                                                                                                                0.0s
 => [internal] load build context                                                                                                                                              0.1s
 => => transferring context: 251.16kB                                                                                                                                          0.0s
 => CACHED [stage-1 1/2] FROM docker.io/library/nginx:mainline@sha256:5ed8fcc66f4ed123c1b2560ed708dc148755b6e4cbd8b943fab094f2c6bfa91e                                         0.0s
 => [builder 2/4] RUN if [ "ngx_waf" = "" ]; then         echo "No additional modules enabled, exiting";         exit 1;     fi                                                0.3s
 => [builder 3/4] COPY ./ /modules/                                                                                                                                            0.0s
 => [builder 4/4] RUN apt-get update     && apt-get install -y --no-install-suggests --no-install-recommends                 patch make wget git devscripts debhelper dpkg-d  61.0s
 => ERROR [stage-1 2/2] RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder     apt-get update     && . /tmp/packages/modules.env     && for modul  3.2s 
------                                                                                                                                                                              
 > [stage-1 2/2] RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder     apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_1.27.5*.deb;        done     && rm -rf /var/lib/apt/lists/:                                                                                                                                                                                  
0.251 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]                                                                                                                
0.267 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]                                                                                                       
0.267 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
0.355 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB]
0.496 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [512 B]
0.618 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [260 kB]
1.657 Fetched 9307 kB in 1s (6604 kB/s)
1.657 Reading package lists...
2.381 Reading package lists...
3.094 E: Unsupported file /tmp/packages/nginx-module-ngxwaf_1.27.5*.deb given on commandline
------
Dockerfile:73
--------------------
  72 |     FROM ${NGINX_FROM_IMAGE}
  73 | >>> RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder \
  74 | >>>     apt-get update \
  75 | >>>     && . /tmp/packages/modules.env \
  76 | >>>     && for module in $BUILT_MODULES; do \
  77 | >>>            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb; \
  78 | >>>        done \
  79 | >>>     && rm -rf /var/lib/apt/lists/
  80 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb;        done     && rm -rf /var/lib/apt/lists/" did not complete successfully: exit code: 100

@thresheek
Copy link
Member

That's not a full log - you'd need to add --progress=plain to your docker build command to get it.

@freshgeek
Copy link
Author

full log


docker build --build-arg ENABLED_MODULES="ngx_waf" --progress=plain -t third-nginx .
#0 building with "default" instance using docker driver

#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 4.23kB 0.0s done
#1 DONE 0.0s

#2 [internal] load metadata for docker.io/library/nginx:mainline
#2 DONE 2.8s

#3 [internal] load .dockerignore
#3 transferring context: 2B done
#3 DONE 0.0s

#4 [internal] load build context
#4 transferring context: 281.52kB 0.0s done
#4 DONE 0.0s

#5 [builder 1/4] FROM docker.io/library/nginx:mainline@sha256:c15da6c91de8d2f436196f3a768483ad32c258ed4e1beb3d367a27ed67253e66
#5 resolve docker.io/library/nginx:mainline@sha256:c15da6c91de8d2f436196f3a768483ad32c258ed4e1beb3d367a27ed67253e66 done
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 0B / 44.15MB 0.1s
#5 sha256:3e544d53ce49d405a41bd59e97d102d77cc5412a717b3bae2295d237ccdfb706 0B / 629B 0.1s
#5 sha256:c15da6c91de8d2f436196f3a768483ad32c258ed4e1beb3d367a27ed67253e66 10.25kB / 10.25kB done
#5 sha256:88b3388ea06c7262e410a3ab5c05dc4088b7b39dea569addd8c30766f4f47440 2.29kB / 2.29kB done
#5 sha256:a830707172e8069c09cf6c67a04e23e5a1a332d70a90a54999b76273a928b9ce 8.58kB / 8.58kB done
#5 sha256:254e724d77862dc53abbd3bf0e27f9d2f64293909cdd3d0aad6a8fe5a6680659 0B / 28.23MB 0.1s
#5 sha256:254e724d77862dc53abbd3bf0e27f9d2f64293909cdd3d0aad6a8fe5a6680659 6.29MB / 28.23MB 0.3s
#5 sha256:254e724d77862dc53abbd3bf0e27f9d2f64293909cdd3d0aad6a8fe5a6680659 26.21MB / 28.23MB 0.5s
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 7.34MB / 44.15MB 0.6s
#5 sha256:254e724d77862dc53abbd3bf0e27f9d2f64293909cdd3d0aad6a8fe5a6680659 28.23MB / 28.23MB 0.6s done
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 14.68MB / 44.15MB 0.7s
#5 extracting sha256:254e724d77862dc53abbd3bf0e27f9d2f64293909cdd3d0aad6a8fe5a6680659
#5 sha256:4f21ed9ac0c04aa7c64ffd32df025f4545ab9f007d175ce82c920903590daec7 0B / 955B 0.7s
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 24.12MB / 44.15MB 0.8s
#5 sha256:3e544d53ce49d405a41bd59e97d102d77cc5412a717b3bae2295d237ccdfb706 629B / 629B 0.7s done
#5 sha256:d38f2ef2d6f270e6bc87cad48e49a5ec4ebdd2f5d1d4955c4df3780dabbf2393 0B / 404B 0.8s
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 32.51MB / 44.15MB 0.9s
#5 sha256:4f21ed9ac0c04aa7c64ffd32df025f4545ab9f007d175ce82c920903590daec7 955B / 955B 0.9s done
#5 sha256:40a6e9f4e4564bc7213f3983964e76c27e1dc94ceb473f04a8460f5e95e365d1 0B / 1.21kB 0.9s
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 41.03MB / 44.15MB 1.0s
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 44.15MB / 44.15MB 1.1s
#5 sha256:d38f2ef2d6f270e6bc87cad48e49a5ec4ebdd2f5d1d4955c4df3780dabbf2393 404B / 404B 1.1s
#5 sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 44.15MB / 44.15MB 1.1s done
#5 sha256:d38f2ef2d6f270e6bc87cad48e49a5ec4ebdd2f5d1d4955c4df3780dabbf2393 404B / 404B 1.1s done
#5 sha256:40a6e9f4e4564bc7213f3983964e76c27e1dc94ceb473f04a8460f5e95e365d1 1.21kB / 1.21kB 1.2s done
#5 sha256:d3dc5ec71e9d6d1a06a1740efb4a875b28b102166509c8563c90b48f7c5e0bcb 0B / 1.40kB 1.2s
#5 sha256:d3dc5ec71e9d6d1a06a1740efb4a875b28b102166509c8563c90b48f7c5e0bcb 1.40kB / 1.40kB 1.4s done
#5 extracting sha256:254e724d77862dc53abbd3bf0e27f9d2f64293909cdd3d0aad6a8fe5a6680659 2.0s done
#5 extracting sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a
#5 extracting sha256:91311529275035c77ef310fe38a81841c8f3e0a324cf6a68d86b36f48a145d0a 1.5s done
#5 extracting sha256:3e544d53ce49d405a41bd59e97d102d77cc5412a717b3bae2295d237ccdfb706 done
#5 extracting sha256:4f21ed9ac0c04aa7c64ffd32df025f4545ab9f007d175ce82c920903590daec7 done
#5 extracting sha256:d38f2ef2d6f270e6bc87cad48e49a5ec4ebdd2f5d1d4955c4df3780dabbf2393 done
#5 extracting sha256:40a6e9f4e4564bc7213f3983964e76c27e1dc94ceb473f04a8460f5e95e365d1
#5 extracting sha256:40a6e9f4e4564bc7213f3983964e76c27e1dc94ceb473f04a8460f5e95e365d1 done
#5 extracting sha256:d3dc5ec71e9d6d1a06a1740efb4a875b28b102166509c8563c90b48f7c5e0bcb done
#5 DONE 4.6s

#6 [builder 2/4] RUN if [ "ngx_waf" = "" ]; then         echo "No additional modules enabled, exiting";         exit 1;     fi
#6 0.295 + '[' ngx_waf = '' ']'
#6 DONE 0.5s

#7 [builder 3/4] COPY ./ /modules/
#7 DONE 0.1s

#8 [builder 4/4] RUN apt-get update     && apt-get install -y --no-install-suggests --no-install-recommends                 patch make wget git devscripts debhelper dpkg-dev                 quilt lsb-release build-essential libxml2-utils xsltproc                 equivs git g++ libparse-recdescent-perl     && XSLSCRIPT_SHA512="f7194c5198daeab9b3b0c3aebf006922c7df1d345d454bd8474489ff2eb6b4bf8e2ffe442489a45d1aab80da6ecebe0097759a1e12cc26b5f0613d05b7c09ffa *stdin"     && wget -O /tmp/xslscript.pl https://raw.githubusercontent.com/nginx/xslscript/9204424259c343ca08a18a78915f40f28025e093/xslscript.pl     && if [ "$(cat /tmp/xslscript.pl | openssl sha512 -r)" = "$XSLSCRIPT_SHA512" ]; then         echo "XSLScript checksum verification succeeded!";         chmod +x /tmp/xslscript.pl;         mv /tmp/xslscript.pl /usr/local/bin/;     else         echo "XSLScript checksum verification failed!";         exit 1;     fi     && git clone -b 1.27.5-1 https://github.com/nginx/pkg-oss/     && cd pkg-oss     && mkdir /tmp/packages     && for module in ngx_waf; do         echo "Building $module for nginx-1.27.5";         if [ -d /modules/$module ]; then             echo "Building $module from user-supplied sources";             if [ ! -s /modules/$module/source ]; then                 echo "No source file for $module in modules/$module/source, exiting";                 exit 1;             fi;             if [ -f /modules/$module/build-deps ]; then                 echo "Installing $module build dependencies";                 apt-get update && apt-get install -y --no-install-suggests --no-install-recommends $(cat /modules/$module/build-deps | xargs);             fi;             if [ -x /modules/$module/prebuild ]; then                 echo "Running prebuild script for $module";                 /modules/$module/prebuild;             fi;             /pkg-oss/build_module.sh -v 1.27.5 -f -y -o /tmp/packages -n $module $(cat /modules/$module/source);             BUILT_MODULES="$BUILT_MODULES $(echo $module | tr '[A-Z]' '[a-z]' | tr -d '[/_\-\.\t ]')";         elif make -C /pkg-oss/debian list | grep -P "^$module\s+\d" > /dev/null; then             echo "Building $module from pkg-oss sources";             cd /pkg-oss/debian;             make rules-module-$module BASE_VERSION=1.27.5 NGINX_VERSION=1.27.5;             mk-build-deps --install --tool="apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes" debuild-module-$module/nginx-1.27.5/debian/control;             make module-$module BASE_VERSION=1.27.5 NGINX_VERSION=1.27.5;             find ../../ -maxdepth 1 -mindepth 1 -type f -name "*.deb" -exec mv -v {} /tmp/packages/ ;;             BUILT_MODULES="$BUILT_MODULES $module";         else             echo "Don't know how to build $module module, exiting";             exit 1;         fi;     done     && echo "BUILT_MODULES="$BUILT_MODULES"" > /tmp/packages/modules.env
#8 0.206 + apt-get update
#8 0.244 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
#8 0.259 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
#8 0.259 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#8 0.350 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB]
#8 0.503 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [512 B]
#8 0.609 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [257 kB]
#8 1.649 Fetched 9305 kB in 1s (6577 kB/s)
#8 1.649 Reading package lists...
#8 2.376 + apt-get install -y --no-install-suggests --no-install-recommends patch make wget git devscripts debhelper dpkg-dev quilt lsb-release build-essential libxml2-utils xsltproc equivs git g++ libparse-recdescent-perl
#8 2.386 Reading package lists...
#8 3.127 Building dependency tree...
#8 3.333 Reading state information...
#8 3.713 The following additional packages will be installed:
#8 3.713   autoconf automake autopoint autotools-dev binutils binutils-common
#8 3.715   binutils-x86-64-linux-gnu bsdextrautils bzip2 cpp cpp-12 dh-autoreconf
#8 3.715   dh-strip-nondeterminism diffstat dirmngr dwz ed fakeroot file g++-12 gcc
#8 3.715   gcc-12 gettext git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent
#8 3.716   gpg-wks-client gpg-wks-server gpgconf gpgsm groff-base intltool-debian
#8 3.716   libarchive-zip-perl libasan8 libassuan0 libatomic1 libb-hooks-op-check-perl
#8 3.716   libbinutils libc-dev-bin libc6-dev libcc1-0 libclass-method-modifiers-perl
#8 3.716   libclass-xsaccessor-perl libclone-perl libcrypt-dev libctf-nobfd0 libctf0
#8 3.716   libcurl3-gnutls libdebhelper-perl libdevel-callchecker-perl libdpkg-perl
#8 3.717   libdynaloader-functions-perl libelf1 libencode-locale-perl liberror-perl
#8 3.717   libfakeroot libfile-dirlist-perl libfile-homedir-perl libfile-listing-perl
#8 3.717   libfile-stripnondeterminism-perl libfile-touch-perl libfile-which-perl
#8 3.717   libgcc-12-dev libgdbm-compat4 libgdbm6 libgomp1 libgprofng0
#8 3.717   libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
#8 3.717   libhttp-cookies-perl libhttp-date-perl libhttp-message-perl
#8 3.717   libhttp-negotiate-perl libimport-into-perl libio-html-perl libio-pty-perl
#8 3.717   libio-socket-ssl-perl libipc-run-perl libisl23 libitm1 libjansson4 libksba8
#8 3.717   liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic-mgc
#8 3.721   libmagic1 libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libncursesw6
#8 3.721   libnet-http-perl libnet-ssleay-perl libnpth0 libnsl-dev libnsl2
#8 3.721   libparams-classify-perl libperl5.36 libpipeline1 libpython3-stdlib
#8 3.721   libpython3.11-minimal libpython3.11-stdlib libquadmath0 libreadline8
#8 3.721   libregexp-ipv6-perl librole-tiny-perl libsqlite3-0 libstdc++-12-dev
#8 3.721   libsub-override-perl libsub-quote-perl libtimedate-perl libtirpc-common
#8 3.721   libtirpc-dev libtirpc3 libtool libtry-tiny-perl libtsan2 libubsan1
#8 3.730   libuchardet0 liburi-perl libwww-perl libwww-robotrules-perl linux-libc-dev
#8 3.730   m4 man-db media-types netbase patchutils perl perl-modules-5.36
#8 3.730   perl-openssl-defaults pinentry-curses po-debconf python3 python3-minimal
#8 3.730   python3.11 python3.11-minimal readline-common rpcsvc-proto sensible-utils
#8 3.730   wdiff xz-utils
#8 3.732 Suggested packages:
#8 3.732   autoconf-archive gnu-standards autoconf-doc binutils-doc bzip2-doc cpp-doc
#8 3.732   gcc-12-locales cpp-12-doc dh-make adequate at autopkgtest bls-standalone
#8 3.732   bsd-mailx | mailx check-all-the-things cvs-buildpackage diffoscope
#8 3.732   disorderfs dose-extra duck elpa-devscripts faketime gnuplot how-can-i-help
#8 3.732   libauthen-sasl-perl libdbd-pg-perl libfile-desktopentry-perl
#8 3.732   libterm-size-perl libyaml-syck-perl mmdebstrap mozilla-devscripts mutt
#8 3.732   piuparts postgresql-client pristine-lfs ratt reprotest ssh-client
#8 3.732   svn-buildpackage w3m dbus-user-session libpam-systemd pinentry-gnome3 tor
#8 3.732   debian-keyring g++-multilib g++-12-multilib gcc-12-doc gcc-multilib
#8 3.732   manpages-dev flex bison gdb gcc-doc gcc-12-multilib gettext-doc
#8 3.732   libasprintf-dev libgettextpo-dev git-daemon-run | git-daemon-sysvinit
#8 3.732   git-doc git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn
#8 3.732   parcimonie xloadimage scdaemon groff glibc-doc bzr gdbm-l10n
#8 3.732   libdata-dump-perl libcrypt-ssleay-perl libscalar-number-perl
#8 3.732   libstdc++-12-doc libtool-doc gfortran | fortran95-compiler gcj-jdk
#8 3.732   libsub-name-perl libbusiness-isbn-perl libauthen-ntlm-perl m4-doc make-doc
#8 3.732   apparmor less www-browser diffutils-doc perl-doc libterm-readline-gnu-perl
#8 3.732   | libterm-readline-perl-perl libtap-harness-archive-perl pinentry-doc
#8 3.732   libmail-box-perl python3-doc python3-tk python3-venv python3.11-venv
#8 3.732   python3.11-doc binfmt-support default-mta | mail-transport-agent graphviz
#8 3.732   procmail readline-doc wdiff-doc
#8 3.732 Recommended packages:
#8 3.732   dctrl-tools dput | dupload libdistro-info-perl libgit-wrapper-perl
#8 3.732   libgitlab-api-v4-perl liblist-compare-perl libstring-shellquote-perl
#8 3.732   licensecheck lintian python3-apt python3-debian python3-magic
#8 3.732   python3-requests python3-unidiff python3-xdg strace unzip debian-keyring
#8 3.732   libsoap-lite-perl pristine-tar libalgorithm-merge-perl less ssh-client
#8 3.732   manpages manpages-dev libc-devtools libfile-fcntllock-perl
#8 3.732   liblocale-gettext-perl libarchive-cpio-perl libhtml-format-perl
#8 3.732   libnamespace-clean-perl libgpm2 libxstring-perl libltdl-dev
#8 3.732   libdata-dump-perl libhtml-form-perl libhttp-daemon-perl libmailtools-perl
#8 3.732   libmail-sendmail-perl
#8 4.717 The following NEW packages will be installed:
#8 4.717   autoconf automake autopoint autotools-dev binutils binutils-common
#8 4.718   binutils-x86-64-linux-gnu bsdextrautils build-essential bzip2 cpp cpp-12
#8 4.718   debhelper devscripts dh-autoreconf dh-strip-nondeterminism diffstat dirmngr
#8 4.719   dpkg-dev dwz ed equivs fakeroot file g++ g++-12 gcc gcc-12 gettext git
#8 4.719   git-man gnupg gnupg-l10n gnupg-utils gpg gpg-agent gpg-wks-client
#8 4.719   gpg-wks-server gpgconf gpgsm groff-base intltool-debian libarchive-zip-perl
#8 4.720   libasan8 libassuan0 libatomic1 libb-hooks-op-check-perl libbinutils
#8 4.720   libc-dev-bin libc6-dev libcc1-0 libclass-method-modifiers-perl
#8 4.720   libclass-xsaccessor-perl libclone-perl libcrypt-dev libctf-nobfd0 libctf0
#8 4.720   libcurl3-gnutls libdebhelper-perl libdevel-callchecker-perl libdpkg-perl
#8 4.720   libdynaloader-functions-perl libelf1 libencode-locale-perl liberror-perl
#8 4.720   libfakeroot libfile-dirlist-perl libfile-homedir-perl libfile-listing-perl
#8 4.720   libfile-stripnondeterminism-perl libfile-touch-perl libfile-which-perl
#8 4.721   libgcc-12-dev libgdbm-compat4 libgdbm6 libgomp1 libgprofng0
#8 4.721   libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
#8 4.721   libhttp-cookies-perl libhttp-date-perl libhttp-message-perl
#8 4.721   libhttp-negotiate-perl libimport-into-perl libio-html-perl libio-pty-perl
#8 4.721   libio-socket-ssl-perl libipc-run-perl libisl23 libitm1 libjansson4 libksba8
#8 4.721   liblsan0 liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic-mgc
#8 4.721   libmagic1 libmodule-runtime-perl libmoo-perl libmpc3 libmpfr6 libncursesw6
#8 4.723   libnet-http-perl libnet-ssleay-perl libnpth0 libnsl-dev libnsl2
#8 4.723   libparams-classify-perl libparse-recdescent-perl libperl5.36 libpipeline1
#8 4.723   libpython3-stdlib libpython3.11-minimal libpython3.11-stdlib libquadmath0
#8 4.724   libreadline8 libregexp-ipv6-perl librole-tiny-perl libsqlite3-0
#8 4.725   libstdc++-12-dev libsub-override-perl libsub-quote-perl libtimedate-perl
#8 4.725   libtirpc-common libtirpc-dev libtirpc3 libtool libtry-tiny-perl libtsan2
#8 4.725   libubsan1 libuchardet0 liburi-perl libwww-perl libwww-robotrules-perl
#8 4.725   libxml2-utils linux-libc-dev lsb-release m4 make man-db media-types netbase
#8 4.725   patch patchutils perl perl-modules-5.36 perl-openssl-defaults
#8 4.726   pinentry-curses po-debconf python3 python3-minimal python3.11
#8 4.727   python3.11-minimal quilt readline-common rpcsvc-proto sensible-utils wdiff
#8 4.727   wget xsltproc xz-utils
#8 4.780 0 upgraded, 162 newly installed, 0 to remove and 0 not upgraded.
#8 4.780 Need to get 111 MB of archives.
#8 4.780 After this operation, 452 MB of additional disk space will be used.
#8 4.780 Get:1 http://deb.debian.org/debian-security bookworm-security/main amd64 perl-modules-5.36 all 5.36.0-7+deb12u2 [2815 kB]
#8 4.807 Get:2 http://deb.debian.org/debian bookworm/main amd64 libgdbm6 amd64 1.23-3 [72.2 kB]
#8 4.809 Get:3 http://deb.debian.org/debian bookworm/main amd64 libgdbm-compat4 amd64 1.23-3 [48.2 kB]
#8 4.809 Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 libperl5.36 amd64 5.36.0-7+deb12u2 [4207 kB]
#8 4.850 Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 perl amd64 5.36.0-7+deb12u2 [239 kB]
#8 4.853 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6+deb12u5 [816 kB]
#8 4.863 Get:7 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6+deb12u5 [2067 kB]
#8 4.885 Get:8 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB]
#8 4.886 Get:9 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB]
#8 4.888 Get:10 http://deb.debian.org/debian bookworm/main amd64 libncursesw6 amd64 6.4-4 [134 kB]
#8 4.890 Get:11 http://deb.debian.org/debian bookworm/main amd64 libtirpc-common all 1.3.3+ds-1 [14.0 kB]
#8 4.892 Get:12 http://deb.debian.org/debian bookworm/main amd64 libtirpc3 amd64 1.3.3+ds-1 [85.2 kB]
#8 4.895 Get:13 http://deb.debian.org/debian bookworm/main amd64 libnsl2 amd64 1.3.0-2 [39.5 kB]
#8 4.895 Get:14 http://deb.debian.org/debian bookworm/main amd64 readline-common all 8.2-1.3 [69.0 kB]
#8 4.896 Get:15 http://deb.debian.org/debian bookworm/main amd64 libreadline8 amd64 8.2-1.3 [166 kB]
#8 4.899 Get:16 http://deb.debian.org/debian bookworm/main amd64 libsqlite3-0 amd64 3.40.1-2+deb12u1 [839 kB]
#8 4.909 Get:17 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6+deb12u5 [1797 kB]
#8 4.923 Get:18 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6+deb12u5 [573 kB]
#8 4.928 Get:19 http://deb.debian.org/debian bookworm/main amd64 libpython3-stdlib amd64 3.11.2-1+b1 [9312 B]
#8 4.929 Get:20 http://deb.debian.org/debian bookworm/main amd64 python3 amd64 3.11.2-1+b1 [26.3 kB]
#8 4.935 Get:21 http://deb.debian.org/debian bookworm/main amd64 netbase all 6.4 [12.8 kB]
#8 4.935 Get:22 http://deb.debian.org/debian bookworm/main amd64 sensible-utils all 0.0.17+nmu1 [19.0 kB]
#8 4.938 Get:23 http://deb.debian.org/debian bookworm/main amd64 bzip2 amd64 1.0.8-5+b1 [49.8 kB]
#8 4.938 Get:24 http://deb.debian.org/debian bookworm/main amd64 libmagic-mgc amd64 1:5.44-3 [305 kB]
#8 4.938 Get:25 http://deb.debian.org/debian bookworm/main amd64 libmagic1 amd64 1:5.44-3 [104 kB]
#8 4.947 Get:26 http://deb.debian.org/debian bookworm/main amd64 file amd64 1:5.44-3 [42.5 kB]
#8 4.947 Get:27 http://deb.debian.org/debian bookworm/main amd64 libuchardet0 amd64 0.0.7-1 [67.8 kB]
#8 4.947 Get:28 http://deb.debian.org/debian bookworm/main amd64 groff-base amd64 1.22.4-10 [916 kB]
#8 4.954 Get:29 http://deb.debian.org/debian bookworm/main amd64 bsdextrautils amd64 2.38.1-5+deb12u3 [87.0 kB]
#8 4.954 Get:30 http://deb.debian.org/debian bookworm/main amd64 libpipeline1 amd64 1.5.7-1 [38.5 kB]
#8 4.955 Get:31 http://deb.debian.org/debian bookworm/main amd64 man-db amd64 2.11.2-2 [1386 kB]
#8 4.969 Get:32 http://deb.debian.org/debian bookworm/main amd64 wget amd64 1.21.3-1+deb12u1 [937 kB]
#8 4.978 Get:33 http://deb.debian.org/debian-security bookworm-security/main amd64 xz-utils amd64 5.4.1-1 [471 kB]
#8 4.982 Get:34 http://deb.debian.org/debian bookworm/main amd64 m4 amd64 1.4.19-3 [287 kB]
#8 4.985 Get:35 http://deb.debian.org/debian bookworm/main amd64 autoconf all 2.71-3 [332 kB]
#8 4.988 Get:36 http://deb.debian.org/debian bookworm/main amd64 autotools-dev all 20220109.1 [51.6 kB]
#8 4.991 Get:37 http://deb.debian.org/debian bookworm/main amd64 automake all 1:1.16.5-1.3 [823 kB]
#8 4.998 Get:38 http://deb.debian.org/debian bookworm/main amd64 autopoint all 0.21-12 [495 kB]
#8 5.005 Get:39 http://deb.debian.org/debian bookworm/main amd64 binutils-common amd64 2.40-2 [2487 kB]
#8 5.025 Get:40 http://deb.debian.org/debian bookworm/main amd64 libbinutils amd64 2.40-2 [572 kB]
#8 5.033 Get:41 http://deb.debian.org/debian bookworm/main amd64 libctf-nobfd0 amd64 2.40-2 [153 kB]
#8 5.033 Get:42 http://deb.debian.org/debian bookworm/main amd64 libctf0 amd64 2.40-2 [89.8 kB]
#8 5.035 Get:43 http://deb.debian.org/debian bookworm/main amd64 libgprofng0 amd64 2.40-2 [812 kB]
#8 5.043 Get:44 http://deb.debian.org/debian bookworm/main amd64 libjansson4 amd64 2.14-2 [40.8 kB]
#8 5.050 Get:45 http://deb.debian.org/debian bookworm/main amd64 binutils-x86-64-linux-gnu amd64 2.40-2 [2246 kB]
#8 5.065 Get:46 http://deb.debian.org/debian bookworm/main amd64 binutils amd64 2.40-2 [65.0 kB]
#8 5.071 Get:47 http://deb.debian.org/debian bookworm/main amd64 libc-dev-bin amd64 2.36-9+deb12u10 [47.1 kB]
#8 5.071 Get:48 http://deb.debian.org/debian-security bookworm-security/main amd64 linux-libc-dev amd64 6.1.135-1 [2136 kB]
#8 5.084 Get:49 http://deb.debian.org/debian bookworm/main amd64 libcrypt-dev amd64 1:4.4.33-2 [118 kB]
#8 5.088 Get:50 http://deb.debian.org/debian bookworm/main amd64 libtirpc-dev amd64 1.3.3+ds-1 [191 kB]
#8 5.091 Get:51 http://deb.debian.org/debian bookworm/main amd64 libnsl-dev amd64 1.3.0-2 [66.4 kB]
#8 5.091 Get:52 http://deb.debian.org/debian bookworm/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB]
#8 5.093 Get:53 http://deb.debian.org/debian bookworm/main amd64 libc6-dev amd64 2.36-9+deb12u10 [1903 kB]
#8 5.109 Get:54 http://deb.debian.org/debian bookworm/main amd64 libisl23 amd64 0.25-1.1 [683 kB]
#8 5.115 Get:55 http://deb.debian.org/debian bookworm/main amd64 libmpfr6 amd64 4.2.0-1 [701 kB]
#8 5.122 Get:56 http://deb.debian.org/debian bookworm/main amd64 libmpc3 amd64 1.3.1-1 [51.5 kB]
#8 5.125 Get:57 http://deb.debian.org/debian bookworm/main amd64 cpp-12 amd64 12.2.0-14 [9764 kB]
#8 5.491 Get:58 http://deb.debian.org/debian bookworm/main amd64 cpp amd64 4:12.2.0-3 [6836 B]
#8 5.493 Get:59 http://deb.debian.org/debian bookworm/main amd64 libcc1-0 amd64 12.2.0-14 [41.7 kB]
#8 5.493 Get:60 http://deb.debian.org/debian bookworm/main amd64 libgomp1 amd64 12.2.0-14 [116 kB]
#8 5.496 Get:61 http://deb.debian.org/debian bookworm/main amd64 libitm1 amd64 12.2.0-14 [26.1 kB]
#8 5.499 Get:62 http://deb.debian.org/debian bookworm/main amd64 libatomic1 amd64 12.2.0-14 [9328 B]
#8 5.499 Get:63 http://deb.debian.org/debian bookworm/main amd64 libasan8 amd64 12.2.0-14 [2195 kB]
#8 5.584 Get:64 http://deb.debian.org/debian bookworm/main amd64 liblsan0 amd64 12.2.0-14 [969 kB]
#8 5.625 Get:65 http://deb.debian.org/debian bookworm/main amd64 libtsan2 amd64 12.2.0-14 [2196 kB]
#8 5.712 Get:66 http://deb.debian.org/debian bookworm/main amd64 libubsan1 amd64 12.2.0-14 [883 kB]
#8 5.748 Get:67 http://deb.debian.org/debian bookworm/main amd64 libquadmath0 amd64 12.2.0-14 [144 kB]
#8 5.754 Get:68 http://deb.debian.org/debian bookworm/main amd64 libgcc-12-dev amd64 12.2.0-14 [2437 kB]
#8 5.850 Get:69 http://deb.debian.org/debian bookworm/main amd64 gcc-12 amd64 12.2.0-14 [19.3 MB]
#8 6.628 Get:70 http://deb.debian.org/debian bookworm/main amd64 gcc amd64 4:12.2.0-3 [5216 B]
#8 6.628 Get:71 http://deb.debian.org/debian bookworm/main amd64 libstdc++-12-dev amd64 12.2.0-14 [2046 kB]
#8 6.700 Get:72 http://deb.debian.org/debian bookworm/main amd64 g++-12 amd64 12.2.0-14 [10.7 MB]
#8 7.133 Get:73 http://deb.debian.org/debian bookworm/main amd64 g++ amd64 4:12.2.0-3 [1356 B]
#8 7.133 Get:74 http://deb.debian.org/debian bookworm/main amd64 make amd64 4.3-4.1 [396 kB]
#8 7.148 Get:75 http://deb.debian.org/debian bookworm/main amd64 libdpkg-perl all 1.21.22 [603 kB]
#8 7.167 Get:76 http://deb.debian.org/debian bookworm/main amd64 patch amd64 2.7.6-7 [128 kB]
#8 7.172 Get:77 http://deb.debian.org/debian bookworm/main amd64 dpkg-dev all 1.21.22 [1353 kB]
#8 7.228 Get:78 http://deb.debian.org/debian bookworm/main amd64 build-essential amd64 12.9 [7704 B]
#8 7.228 Get:79 http://deb.debian.org/debian bookworm/main amd64 libdebhelper-perl all 13.11.4 [81.2 kB]
#8 7.232 Get:80 http://deb.debian.org/debian bookworm/main amd64 libtool all 2.4.7-7~deb12u1 [517 kB]
#8 7.252 Get:81 http://deb.debian.org/debian bookworm/main amd64 dh-autoreconf all 20 [17.1 kB]
#8 7.254 Get:82 http://deb.debian.org/debian bookworm/main amd64 libarchive-zip-perl all 1.68-1 [104 kB]
#8 7.257 Get:83 http://deb.debian.org/debian bookworm/main amd64 libsub-override-perl all 0.09-4 [9304 B]
#8 7.259 Get:84 http://deb.debian.org/debian bookworm/main amd64 libfile-stripnondeterminism-perl all 1.13.1-1 [19.4 kB]
#8 7.259 Get:85 http://deb.debian.org/debian bookworm/main amd64 dh-strip-nondeterminism all 1.13.1-1 [8620 B]
#8 7.261 Get:86 http://deb.debian.org/debian bookworm/main amd64 libelf1 amd64 0.188-2.1 [174 kB]
#8 7.264 Get:87 http://deb.debian.org/debian bookworm/main amd64 dwz amd64 0.15-1 [109 kB]
#8 7.267 Get:88 http://deb.debian.org/debian bookworm/main amd64 gettext amd64 0.21-12 [1300 kB]
#8 7.320 Get:89 http://deb.debian.org/debian bookworm/main amd64 intltool-debian all 0.35.0+20060710.6 [22.9 kB]
#8 7.322 Get:90 http://deb.debian.org/debian bookworm/main amd64 po-debconf all 1.0.21+nmu1 [248 kB]
#8 7.331 Get:91 http://deb.debian.org/debian bookworm/main amd64 debhelper all 13.11.4 [942 kB]
#8 7.370 Get:92 http://deb.debian.org/debian bookworm/main amd64 libfakeroot amd64 1.31-1.2 [28.3 kB]
#8 7.372 Get:93 http://deb.debian.org/debian bookworm/main amd64 fakeroot amd64 1.31-1.2 [66.9 kB]
#8 7.375 Get:94 http://deb.debian.org/debian bookworm/main amd64 libassuan0 amd64 2.5.5-5 [48.5 kB]
#8 7.377 Get:95 http://deb.debian.org/debian bookworm/main amd64 gpgconf amd64 2.2.40-1.1 [564 kB]
#8 7.400 Get:96 http://deb.debian.org/debian bookworm/main amd64 libksba8 amd64 1.6.3-2 [128 kB]
#8 7.405 Get:97 http://deb.debian.org/debian bookworm/main amd64 libnpth0 amd64 1.6-3 [19.0 kB]
#8 7.406 Get:98 http://deb.debian.org/debian bookworm/main amd64 dirmngr amd64 2.2.40-1.1 [792 kB]
#8 7.434 Get:99 http://deb.debian.org/debian bookworm/main amd64 gnupg-l10n all 2.2.40-1.1 [1093 kB]
#8 7.482 Get:100 http://deb.debian.org/debian bookworm/main amd64 gnupg-utils amd64 2.2.40-1.1 [927 kB]
#8 7.515 Get:101 http://deb.debian.org/debian bookworm/main amd64 gpg amd64 2.2.40-1.1 [949 kB]
#8 7.552 Get:102 http://deb.debian.org/debian bookworm/main amd64 pinentry-curses amd64 1.2.1-1 [77.4 kB]
#8 7.556 Get:103 http://deb.debian.org/debian bookworm/main amd64 gpg-agent amd64 2.2.40-1.1 [695 kB]
#8 7.581 Get:104 http://deb.debian.org/debian bookworm/main amd64 gpg-wks-client amd64 2.2.40-1.1 [541 kB]
#8 7.607 Get:105 http://deb.debian.org/debian bookworm/main amd64 gpg-wks-server amd64 2.2.40-1.1 [531 kB]
#8 7.630 Get:106 http://deb.debian.org/debian bookworm/main amd64 gpgsm amd64 2.2.40-1.1 [671 kB]
#8 7.656 Get:107 http://deb.debian.org/debian bookworm/main amd64 gnupg all 2.2.40-1.1 [846 kB]
#8 7.686 Get:108 http://deb.debian.org/debian bookworm/main amd64 libfile-dirlist-perl all 0.05-3 [7600 B]
#8 7.687 Get:109 http://deb.debian.org/debian bookworm/main amd64 libfile-which-perl all 1.27-2 [15.1 kB]
#8 7.689 Get:110 http://deb.debian.org/debian bookworm/main amd64 libfile-homedir-perl all 1.006-2 [42.4 kB]
#8 7.690 Get:111 http://deb.debian.org/debian bookworm/main amd64 libfile-touch-perl all 0.12-2 [8816 B]
#8 7.692 Get:112 http://deb.debian.org/debian bookworm/main amd64 libio-pty-perl amd64 1:1.17-1 [34.9 kB]
#8 7.693 Get:113 http://deb.debian.org/debian bookworm/main amd64 libipc-run-perl all 20220807.0-1 [104 kB]
#8 7.696 Get:114 http://deb.debian.org/debian bookworm/main amd64 libclass-method-modifiers-perl all 2.14-1 [18.1 kB]
#8 7.698 Get:115 http://deb.debian.org/debian bookworm/main amd64 libclass-xsaccessor-perl amd64 1.19-4+b1 [36.4 kB]
#8 7.702 Get:116 http://deb.debian.org/debian bookworm/main amd64 libb-hooks-op-check-perl amd64 0.22-2+b1 [10.5 kB]
#8 7.702 Get:117 http://deb.debian.org/debian bookworm/main amd64 libdynaloader-functions-perl all 0.003-3 [12.7 kB]
#8 7.702 Get:118 http://deb.debian.org/debian bookworm/main amd64 libdevel-callchecker-perl amd64 0.008-2 [15.8 kB]
#8 7.702 Get:119 http://deb.debian.org/debian bookworm/main amd64 libparams-classify-perl amd64 0.015-2+b1 [23.1 kB]
#8 7.704 Get:120 http://deb.debian.org/debian bookworm/main amd64 libmodule-runtime-perl all 0.016-2 [19.6 kB]
#8 7.706 Get:121 http://deb.debian.org/debian bookworm/main amd64 libimport-into-perl all 1.002005-2 [11.3 kB]
#8 7.708 Get:122 http://deb.debian.org/debian bookworm/main amd64 librole-tiny-perl all 2.002004-1 [21.4 kB]
#8 7.712 Get:123 http://deb.debian.org/debian bookworm/main amd64 libsub-quote-perl all 2.006008-1 [21.8 kB]
#8 7.714 Get:124 http://deb.debian.org/debian bookworm/main amd64 libmoo-perl all 2.005005-1 [58.0 kB]
#8 7.717 Get:125 http://deb.debian.org/debian bookworm/main amd64 libencode-locale-perl all 1.05-3 [12.9 kB]
#8 7.721 Get:126 http://deb.debian.org/debian bookworm/main amd64 libtimedate-perl all 2.3300-2 [39.3 kB]
#8 7.724 Get:127 http://deb.debian.org/debian bookworm/main amd64 libhttp-date-perl all 6.05-2 [10.5 kB]
#8 7.728 Get:128 http://deb.debian.org/debian bookworm/main amd64 libfile-listing-perl all 6.15-1 [12.6 kB]
#8 7.732 Get:129 http://deb.debian.org/debian bookworm/main amd64 libhtml-tagset-perl all 3.20-6 [11.7 kB]
#8 7.737 Get:130 http://deb.debian.org/debian bookworm/main amd64 libregexp-ipv6-perl all 0.03-3 [5212 B]
#8 7.740 Get:131 http://deb.debian.org/debian bookworm/main amd64 liburi-perl all 5.17-1 [90.4 kB]
#8 7.744 Get:132 http://deb.debian.org/debian bookworm/main amd64 libhtml-parser-perl amd64 3.81-1 [101 kB]
#8 7.748 Get:133 http://deb.debian.org/debian bookworm/main amd64 libhtml-tree-perl all 5.07-3 [211 kB]
#8 7.758 Get:134 http://deb.debian.org/debian bookworm/main amd64 libclone-perl amd64 0.46-1 [13.7 kB]
#8 7.758 Get:135 http://deb.debian.org/debian bookworm/main amd64 libio-html-perl all 1.004-3 [16.2 kB]
#8 7.760 Get:136 http://deb.debian.org/debian bookworm/main amd64 liblwp-mediatypes-perl all 6.04-2 [20.2 kB]
#8 7.760 Get:137 http://deb.debian.org/debian bookworm/main amd64 libhttp-message-perl all 6.44-1 [81.7 kB]
#8 7.764 Get:138 http://deb.debian.org/debian bookworm/main amd64 libhttp-cookies-perl all 6.10-1 [19.6 kB]
#8 7.764 Get:139 http://deb.debian.org/debian bookworm/main amd64 libhttp-negotiate-perl all 6.01-2 [13.1 kB]
#8 7.764 Get:140 http://deb.debian.org/debian bookworm/main amd64 perl-openssl-defaults amd64 7+b1 [7924 B]
#8 7.766 Get:141 http://deb.debian.org/debian bookworm/main amd64 libnet-ssleay-perl amd64 1.92-2+b1 [317 kB]
#8 7.776 Get:142 http://deb.debian.org/debian bookworm/main amd64 libio-socket-ssl-perl all 2.081-2 [219 kB]
#8 7.783 Get:143 http://deb.debian.org/debian bookworm/main amd64 libnet-http-perl all 6.22-1 [25.3 kB]
#8 7.785 Get:144 http://deb.debian.org/debian bookworm/main amd64 liblwp-protocol-https-perl all 6.10-1 [12.2 kB]
#8 7.786 Get:145 http://deb.debian.org/debian bookworm/main amd64 libtry-tiny-perl all 0.31-2 [22.6 kB]
#8 7.788 Get:146 http://deb.debian.org/debian bookworm/main amd64 libwww-robotrules-perl all 6.02-1 [12.9 kB]
#8 7.788 Get:147 http://deb.debian.org/debian bookworm/main amd64 libwww-perl all 6.68-1 [186 kB]
#8 7.791 Get:148 http://deb.debian.org/debian bookworm/main amd64 patchutils amd64 0.4.2-1 [77.5 kB]
#8 7.795 Get:149 http://deb.debian.org/debian bookworm/main amd64 wdiff amd64 1.2.2-5 [119 kB]
#8 7.798 Get:150 http://deb.debian.org/debian bookworm/main amd64 devscripts amd64 2.23.4+deb12u2 [1073 kB]
#8 7.836 Get:151 http://deb.debian.org/debian bookworm/main amd64 diffstat amd64 1.65-1 [33.3 kB]
#8 7.836 Get:152 http://deb.debian.org/debian bookworm/main amd64 ed amd64 1.19-1 [58.1 kB]
#8 7.836 Get:153 http://deb.debian.org/debian bookworm/main amd64 equivs all 2.3.1 [22.7 kB]
#8 7.836 Get:154 http://deb.debian.org/debian bookworm/main amd64 libcurl3-gnutls amd64 7.88.1-10+deb12u12 [386 kB]
#8 7.844 Get:155 http://deb.debian.org/debian bookworm/main amd64 liberror-perl all 0.17029-2 [29.0 kB]
#8 7.845 Get:156 http://deb.debian.org/debian bookworm/main amd64 git-man all 1:2.39.5-0+deb12u2 [2053 kB]
#8 7.923 Get:157 http://deb.debian.org/debian bookworm/main amd64 git amd64 1:2.39.5-0+deb12u2 [7260 kB]
#8 8.211 Get:158 http://deb.debian.org/debian bookworm/main amd64 libparse-recdescent-perl all 1.967015+dfsg-4 [147 kB]
#8 8.214 Get:159 http://deb.debian.org/debian bookworm/main amd64 libxml2-utils amd64 2.9.14+dfsg-1.3~deb12u1 [98.9 kB]
#8 8.219 Get:160 http://deb.debian.org/debian bookworm/main amd64 lsb-release all 12.0-1 [6416 B]
#8 8.219 Get:161 http://deb.debian.org/debian bookworm/main amd64 quilt all 0.67+really0.66-1 [303 kB]
#8 8.230 Get:162 http://deb.debian.org/debian-security bookworm-security/main amd64 xsltproc amd64 1.1.35-1+deb12u1 [114 kB]
#8 8.476 debconf: delaying package configuration, since apt-utils is not installed
#8 8.524 Fetched 111 MB in 3s (32.1 MB/s)
#8 8.559 Selecting previously unselected package perl-modules-5.36.
(Reading database ... 7582 files and directories currently installed.)
#8 8.564 Preparing to unpack .../0-perl-modules-5.36_5.36.0-7+deb12u2_all.deb ...
#8 8.566 Unpacking perl-modules-5.36 (5.36.0-7+deb12u2) ...
#8 9.055 Selecting previously unselected package libgdbm6:amd64.
#8 9.055 Preparing to unpack .../1-libgdbm6_1.23-3_amd64.deb ...
#8 9.059 Unpacking libgdbm6:amd64 (1.23-3) ...
#8 9.093 Selecting previously unselected package libgdbm-compat4:amd64.
#8 9.093 Preparing to unpack .../2-libgdbm-compat4_1.23-3_amd64.deb ...
#8 9.095 Unpacking libgdbm-compat4:amd64 (1.23-3) ...
#8 9.131 Selecting previously unselected package libperl5.36:amd64.
#8 9.131 Preparing to unpack .../3-libperl5.36_5.36.0-7+deb12u2_amd64.deb ...
#8 9.133 Unpacking libperl5.36:amd64 (5.36.0-7+deb12u2) ...
#8 9.653 Selecting previously unselected package perl.
#8 9.653 Preparing to unpack .../4-perl_5.36.0-7+deb12u2_amd64.deb ...
#8 9.664 Unpacking perl (5.36.0-7+deb12u2) ...
#8 9.717 Selecting previously unselected package libpython3.11-minimal:amd64.
#8 9.717 Preparing to unpack .../5-libpython3.11-minimal_3.11.2-6+deb12u5_amd64.deb ...
#8 9.720 Unpacking libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ...
#8 9.857 Selecting previously unselected package python3.11-minimal.
#8 9.857 Preparing to unpack .../6-python3.11-minimal_3.11.2-6+deb12u5_amd64.deb ...
#8 9.865 Unpacking python3.11-minimal (3.11.2-6+deb12u5) ...
#8 10.09 Setting up libpython3.11-minimal:amd64 (3.11.2-6+deb12u5) ...
#8 10.10 Setting up python3.11-minimal (3.11.2-6+deb12u5) ...
#8 11.18 Selecting previously unselected package python3-minimal.
(Reading database ... 9893 files and directories currently installed.)
#8 11.19 Preparing to unpack .../00-python3-minimal_3.11.2-1+b1_amd64.deb ...
#8 11.20 Unpacking python3-minimal (3.11.2-1+b1) ...
#8 11.23 Selecting previously unselected package media-types.
#8 11.23 Preparing to unpack .../01-media-types_10.0.0_all.deb ...
#8 11.23 Unpacking media-types (10.0.0) ...
#8 11.27 Selecting previously unselected package libncursesw6:amd64.
#8 11.27 Preparing to unpack .../02-libncursesw6_6.4-4_amd64.deb ...
#8 11.27 Unpacking libncursesw6:amd64 (6.4-4) ...
#8 11.31 Selecting previously unselected package libtirpc-common.
#8 11.31 Preparing to unpack .../03-libtirpc-common_1.3.3+ds-1_all.deb ...
#8 11.31 Unpacking libtirpc-common (1.3.3+ds-1) ...
#8 11.33 Selecting previously unselected package libtirpc3:amd64.
#8 11.33 Preparing to unpack .../04-libtirpc3_1.3.3+ds-1_amd64.deb ...
#8 11.34 Unpacking libtirpc3:amd64 (1.3.3+ds-1) ...
#8 11.37 Selecting previously unselected package libnsl2:amd64.
#8 11.37 Preparing to unpack .../05-libnsl2_1.3.0-2_amd64.deb ...
#8 11.38 Unpacking libnsl2:amd64 (1.3.0-2) ...
#8 11.40 Selecting previously unselected package readline-common.
#8 11.40 Preparing to unpack .../06-readline-common_8.2-1.3_all.deb ...
#8 11.41 Unpacking readline-common (8.2-1.3) ...
#8 11.44 Selecting previously unselected package libreadline8:amd64.
#8 11.44 Preparing to unpack .../07-libreadline8_8.2-1.3_amd64.deb ...
#8 11.44 Unpacking libreadline8:amd64 (8.2-1.3) ...
#8 11.48 Selecting previously unselected package libsqlite3-0:amd64.
#8 11.48 Preparing to unpack .../08-libsqlite3-0_3.40.1-2+deb12u1_amd64.deb ...
#8 11.49 Unpacking libsqlite3-0:amd64 (3.40.1-2+deb12u1) ...
#8 11.57 Selecting previously unselected package libpython3.11-stdlib:amd64.
#8 11.57 Preparing to unpack .../09-libpython3.11-stdlib_3.11.2-6+deb12u5_amd64.deb ...
#8 11.57 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ...
#8 11.81 Selecting previously unselected package python3.11.
#8 11.81 Preparing to unpack .../10-python3.11_3.11.2-6+deb12u5_amd64.deb ...
#8 11.81 Unpacking python3.11 (3.11.2-6+deb12u5) ...
#8 11.85 Selecting previously unselected package libpython3-stdlib:amd64.
#8 11.85 Preparing to unpack .../11-libpython3-stdlib_3.11.2-1+b1_amd64.deb ...
#8 11.86 Unpacking libpython3-stdlib:amd64 (3.11.2-1+b1) ...
#8 11.88 Setting up python3-minimal (3.11.2-1+b1) ...
#8 12.18 Selecting previously unselected package python3.
(Reading database ... 10364 files and directories currently installed.)
#8 12.19 Preparing to unpack .../000-python3_3.11.2-1+b1_amd64.deb ...
#8 12.20 Unpacking python3 (3.11.2-1+b1) ...
#8 12.22 Selecting previously unselected package netbase.
#8 12.22 Preparing to unpack .../001-netbase_6.4_all.deb ...
#8 12.23 Unpacking netbase (6.4) ...
#8 12.26 Selecting previously unselected package sensible-utils.
#8 12.26 Preparing to unpack .../002-sensible-utils_0.0.17+nmu1_all.deb ...
#8 12.26 Unpacking sensible-utils (0.0.17+nmu1) ...
#8 12.29 Selecting previously unselected package bzip2.
#8 12.29 Preparing to unpack .../003-bzip2_1.0.8-5+b1_amd64.deb ...
#8 12.29 Unpacking bzip2 (1.0.8-5+b1) ...
#8 12.32 Selecting previously unselected package libmagic-mgc.
#8 12.32 Preparing to unpack .../004-libmagic-mgc_1%3a5.44-3_amd64.deb ...
#8 12.32 Unpacking libmagic-mgc (1:5.44-3) ...
#8 12.42 Selecting previously unselected package libmagic1:amd64.
#8 12.42 Preparing to unpack .../005-libmagic1_1%3a5.44-3_amd64.deb ...
#8 12.42 Unpacking libmagic1:amd64 (1:5.44-3) ...
#8 12.46 Selecting previously unselected package file.
#8 12.46 Preparing to unpack .../006-file_1%3a5.44-3_amd64.deb ...
#8 12.46 Unpacking file (1:5.44-3) ...
#8 12.49 Selecting previously unselected package libuchardet0:amd64.
#8 12.49 Preparing to unpack .../007-libuchardet0_0.0.7-1_amd64.deb ...
#8 12.49 Unpacking libuchardet0:amd64 (0.0.7-1) ...
#8 12.52 Selecting previously unselected package groff-base.
#8 12.52 Preparing to unpack .../008-groff-base_1.22.4-10_amd64.deb ...
#8 12.53 Unpacking groff-base (1.22.4-10) ...
#8 12.66 Selecting previously unselected package bsdextrautils.
#8 12.66 Preparing to unpack .../009-bsdextrautils_2.38.1-5+deb12u3_amd64.deb ...
#8 12.66 Unpacking bsdextrautils (2.38.1-5+deb12u3) ...
#8 12.70 Selecting previously unselected package libpipeline1:amd64.
#8 12.70 Preparing to unpack .../010-libpipeline1_1.5.7-1_amd64.deb ...
#8 12.70 Unpacking libpipeline1:amd64 (1.5.7-1) ...
#8 12.73 Selecting previously unselected package man-db.
#8 12.73 Preparing to unpack .../011-man-db_2.11.2-2_amd64.deb ...
#8 12.74 Unpacking man-db (2.11.2-2) ...
#8 12.89 Selecting previously unselected package wget.
#8 12.89 Preparing to unpack .../012-wget_1.21.3-1+deb12u1_amd64.deb ...
#8 12.89 Unpacking wget (1.21.3-1+deb12u1) ...
#8 12.99 Selecting previously unselected package xz-utils.
#8 12.99 Preparing to unpack .../013-xz-utils_5.4.1-1_amd64.deb ...
#8 12.99 Unpacking xz-utils (5.4.1-1) ...
#8 13.06 Selecting previously unselected package m4.
#8 13.06 Preparing to unpack .../014-m4_1.4.19-3_amd64.deb ...
#8 13.07 Unpacking m4 (1.4.19-3) ...
#8 13.11 Selecting previously unselected package autoconf.
#8 13.11 Preparing to unpack .../015-autoconf_2.71-3_all.deb ...
#8 13.12 Unpacking autoconf (2.71-3) ...
#8 13.19 Selecting previously unselected package autotools-dev.
#8 13.19 Preparing to unpack .../016-autotools-dev_20220109.1_all.deb ...
#8 13.19 Unpacking autotools-dev (20220109.1) ...
#8 13.22 Selecting previously unselected package automake.
#8 13.22 Preparing to unpack .../017-automake_1%3a1.16.5-1.3_all.deb ...
#8 13.22 Unpacking automake (1:1.16.5-1.3) ...
#8 13.32 Selecting previously unselected package autopoint.
#8 13.32 Preparing to unpack .../018-autopoint_0.21-12_all.deb ...
#8 13.32 Unpacking autopoint (0.21-12) ...
#8 13.36 Selecting previously unselected package binutils-common:amd64.
#8 13.36 Preparing to unpack .../019-binutils-common_2.40-2_amd64.deb ...
#8 13.37 Unpacking binutils-common:amd64 (2.40-2) ...
#8 13.63 Selecting previously unselected package libbinutils:amd64.
#8 13.63 Preparing to unpack .../020-libbinutils_2.40-2_amd64.deb ...
#8 13.63 Unpacking libbinutils:amd64 (2.40-2) ...
#8 13.72 Selecting previously unselected package libctf-nobfd0:amd64.
#8 13.72 Preparing to unpack .../021-libctf-nobfd0_2.40-2_amd64.deb ...
#8 13.72 Unpacking libctf-nobfd0:amd64 (2.40-2) ...
#8 13.76 Selecting previously unselected package libctf0:amd64.
#8 13.76 Preparing to unpack .../022-libctf0_2.40-2_amd64.deb ...
#8 13.76 Unpacking libctf0:amd64 (2.40-2) ...
#8 13.80 Selecting previously unselected package libgprofng0:amd64.
#8 13.80 Preparing to unpack .../023-libgprofng0_2.40-2_amd64.deb ...
#8 13.80 Unpacking libgprofng0:amd64 (2.40-2) ...
#8 13.91 Selecting previously unselected package libjansson4:amd64.
#8 13.91 Preparing to unpack .../024-libjansson4_2.14-2_amd64.deb ...
#8 13.92 Unpacking libjansson4:amd64 (2.14-2) ...
#8 13.94 Selecting previously unselected package binutils-x86-64-linux-gnu.
#8 13.94 Preparing to unpack .../025-binutils-x86-64-linux-gnu_2.40-2_amd64.deb ...
#8 13.95 Unpacking binutils-x86-64-linux-gnu (2.40-2) ...
#8 14.22 Selecting previously unselected package binutils.
#8 14.22 Preparing to unpack .../026-binutils_2.40-2_amd64.deb ...
#8 14.22 Unpacking binutils (2.40-2) ...
#8 14.26 Selecting previously unselected package libc-dev-bin.
#8 14.26 Preparing to unpack .../027-libc-dev-bin_2.36-9+deb12u10_amd64.deb ...
#8 14.26 Unpacking libc-dev-bin (2.36-9+deb12u10) ...
#8 14.29 Selecting previously unselected package linux-libc-dev:amd64.
#8 14.29 Preparing to unpack .../028-linux-libc-dev_6.1.135-1_amd64.deb ...
#8 14.29 Unpacking linux-libc-dev:amd64 (6.1.135-1) ...
#8 14.56 Selecting previously unselected package libcrypt-dev:amd64.
#8 14.56 Preparing to unpack .../029-libcrypt-dev_1%3a4.4.33-2_amd64.deb ...
#8 14.57 Unpacking libcrypt-dev:amd64 (1:4.4.33-2) ...
#8 14.60 Selecting previously unselected package libtirpc-dev:amd64.
#8 14.60 Preparing to unpack .../030-libtirpc-dev_1.3.3+ds-1_amd64.deb ...
#8 14.61 Unpacking libtirpc-dev:amd64 (1.3.3+ds-1) ...
#8 14.65 Selecting previously unselected package libnsl-dev:amd64.
#8 14.65 Preparing to unpack .../031-libnsl-dev_1.3.0-2_amd64.deb ...
#8 14.65 Unpacking libnsl-dev:amd64 (1.3.0-2) ...
#8 14.69 Selecting previously unselected package rpcsvc-proto.
#8 14.69 Preparing to unpack .../032-rpcsvc-proto_1.4.3-1_amd64.deb ...
#8 14.69 Unpacking rpcsvc-proto (1.4.3-1) ...
#8 14.72 Selecting previously unselected package libc6-dev:amd64.
#8 14.72 Preparing to unpack .../033-libc6-dev_2.36-9+deb12u10_amd64.deb ...
#8 14.73 Unpacking libc6-dev:amd64 (2.36-9+deb12u10) ...
#8 15.01 Selecting previously unselected package libisl23:amd64.
#8 15.01 Preparing to unpack .../034-libisl23_0.25-1.1_amd64.deb ...
#8 15.01 Unpacking libisl23:amd64 (0.25-1.1) ...
#8 15.10 Selecting previously unselected package libmpfr6:amd64.
#8 15.10 Preparing to unpack .../035-libmpfr6_4.2.0-1_amd64.deb ...
#8 15.11 Unpacking libmpfr6:amd64 (4.2.0-1) ...
#8 15.17 Selecting previously unselected package libmpc3:amd64.
#8 15.17 Preparing to unpack .../036-libmpc3_1.3.1-1_amd64.deb ...
#8 15.17 Unpacking libmpc3:amd64 (1.3.1-1) ...
#8 15.21 Selecting previously unselected package cpp-12.
#8 15.21 Preparing to unpack .../037-cpp-12_12.2.0-14_amd64.deb ...
#8 15.21 Unpacking cpp-12 (12.2.0-14) ...
#8 16.15 Selecting previously unselected package cpp.
#8 16.15 Preparing to unpack .../038-cpp_4%3a12.2.0-3_amd64.deb ...
#8 16.16 Unpacking cpp (4:12.2.0-3) ...
#8 16.18 Selecting previously unselected package libcc1-0:amd64.
#8 16.18 Preparing to unpack .../039-libcc1-0_12.2.0-14_amd64.deb ...
#8 16.19 Unpacking libcc1-0:amd64 (12.2.0-14) ...
#8 16.22 Selecting previously unselected package libgomp1:amd64.
#8 16.22 Preparing to unpack .../040-libgomp1_12.2.0-14_amd64.deb ...
#8 16.22 Unpacking libgomp1:amd64 (12.2.0-14) ...
#8 16.26 Selecting previously unselected package libitm1:amd64.
#8 16.26 Preparing to unpack .../041-libitm1_12.2.0-14_amd64.deb ...
#8 16.27 Unpacking libitm1:amd64 (12.2.0-14) ...
#8 16.29 Selecting previously unselected package libatomic1:amd64.
#8 16.29 Preparing to unpack .../042-libatomic1_12.2.0-14_amd64.deb ...
#8 16.30 Unpacking libatomic1:amd64 (12.2.0-14) ...
#8 16.33 Selecting previously unselected package libasan8:amd64.
#8 16.33 Preparing to unpack .../043-libasan8_12.2.0-14_amd64.deb ...
#8 16.33 Unpacking libasan8:amd64 (12.2.0-14) ...
#8 16.58 Selecting previously unselected package liblsan0:amd64.
#8 16.58 Preparing to unpack .../044-liblsan0_12.2.0-14_amd64.deb ...
#8 16.58 Unpacking liblsan0:amd64 (12.2.0-14) ...
#8 16.72 Selecting previously unselected package libtsan2:amd64.
#8 16.72 Preparing to unpack .../045-libtsan2_12.2.0-14_amd64.deb ...
#8 16.73 Unpacking libtsan2:amd64 (12.2.0-14) ...
#8 16.98 Selecting previously unselected package libubsan1:amd64.
#8 16.98 Preparing to unpack .../046-libubsan1_12.2.0-14_amd64.deb ...
#8 16.98 Unpacking libubsan1:amd64 (12.2.0-14) ...
#8 17.09 Selecting previously unselected package libquadmath0:amd64.
#8 17.09 Preparing to unpack .../047-libquadmath0_12.2.0-14_amd64.deb ...
#8 17.09 Unpacking libquadmath0:amd64 (12.2.0-14) ...
#8 17.13 Selecting previously unselected package libgcc-12-dev:amd64.
#8 17.13 Preparing to unpack .../048-libgcc-12-dev_12.2.0-14_amd64.deb ...
#8 17.13 Unpacking libgcc-12-dev:amd64 (12.2.0-14) ...
#8 17.40 Selecting previously unselected package gcc-12.
#8 17.40 Preparing to unpack .../049-gcc-12_12.2.0-14_amd64.deb ...
#8 17.40 Unpacking gcc-12 (12.2.0-14) ...
#8 18.88 Selecting previously unselected package gcc.
#8 18.88 Preparing to unpack .../050-gcc_4%3a12.2.0-3_amd64.deb ...
#8 18.88 Unpacking gcc (4:12.2.0-3) ...
#8 18.91 Selecting previously unselected package libstdc++-12-dev:amd64.
#8 18.91 Preparing to unpack .../051-libstdc++-12-dev_12.2.0-14_amd64.deb ...
#8 18.91 Unpacking libstdc++-12-dev:amd64 (12.2.0-14) ...
#8 19.26 Selecting previously unselected package g++-12.
#8 19.26 Preparing to unpack .../052-g++-12_12.2.0-14_amd64.deb ...
#8 19.26 Unpacking g++-12 (12.2.0-14) ...
#8 20.23 Selecting previously unselected package g++.
#8 20.23 Preparing to unpack .../053-g++_4%3a12.2.0-3_amd64.deb ...
#8 20.23 Unpacking g++ (4:12.2.0-3) ...
#8 20.26 Selecting previously unselected package make.
#8 20.26 Preparing to unpack .../054-make_4.3-4.1_amd64.deb ...
#8 20.26 Unpacking make (4.3-4.1) ...
#8 20.32 Selecting previously unselected package libdpkg-perl.
#8 20.32 Preparing to unpack .../055-libdpkg-perl_1.21.22_all.deb ...
#8 20.33 Unpacking libdpkg-perl (1.21.22) ...
#8 20.41 Selecting previously unselected package patch.
#8 20.41 Preparing to unpack .../056-patch_2.7.6-7_amd64.deb ...
#8 20.41 Unpacking patch (2.7.6-7) ...
#8 20.45 Selecting previously unselected package dpkg-dev.
#8 20.45 Preparing to unpack .../057-dpkg-dev_1.21.22_all.deb ...
#8 20.45 Unpacking dpkg-dev (1.21.22) ...
#8 20.58 Selecting previously unselected package build-essential.
#8 20.58 Preparing to unpack .../058-build-essential_12.9_amd64.deb ...
#8 20.58 Unpacking build-essential (12.9) ...
#8 20.61 Selecting previously unselected package libdebhelper-perl.
#8 20.61 Preparing to unpack .../059-libdebhelper-perl_13.11.4_all.deb ...
#8 20.61 Unpacking libdebhelper-perl (13.11.4) ...
#8 20.65 Selecting previously unselected package libtool.
#8 20.65 Preparing to unpack .../060-libtool_2.4.7-7~deb12u1_all.deb ...
#8 20.65 Unpacking libtool (2.4.7-7~deb12u1) ...
#8 20.70 Selecting previously unselected package dh-autoreconf.
#8 20.70 Preparing to unpack .../061-dh-autoreconf_20_all.deb ...
#8 20.71 Unpacking dh-autoreconf (20) ...
#8 20.73 Selecting previously unselected package libarchive-zip-perl.
#8 20.73 Preparing to unpack .../062-libarchive-zip-perl_1.68-1_all.deb ...
#8 20.74 Unpacking libarchive-zip-perl (1.68-1) ...
#8 20.77 Selecting previously unselected package libsub-override-perl.
#8 20.77 Preparing to unpack .../063-libsub-override-perl_0.09-4_all.deb ...
#8 20.78 Unpacking libsub-override-perl (0.09-4) ...
#8 20.80 Selecting previously unselected package libfile-stripnondeterminism-perl.
#8 20.80 Preparing to unpack .../064-libfile-stripnondeterminism-perl_1.13.1-1_all.deb ...
#8 20.81 Unpacking libfile-stripnondeterminism-perl (1.13.1-1) ...
#8 20.84 Selecting previously unselected package dh-strip-nondeterminism.
#8 20.84 Preparing to unpack .../065-dh-strip-nondeterminism_1.13.1-1_all.deb ...
#8 20.84 Unpacking dh-strip-nondeterminism (1.13.1-1) ...
#8 20.87 Selecting previously unselected package libelf1:amd64.
#8 20.87 Preparing to unpack .../066-libelf1_0.188-2.1_amd64.deb ...
#8 20.87 Unpacking libelf1:amd64 (0.188-2.1) ...
#8 20.91 Selecting previously unselected package dwz.
#8 20.91 Preparing to unpack .../067-dwz_0.15-1_amd64.deb ...
#8 20.92 Unpacking dwz (0.15-1) ...
#8 20.95 Selecting previously unselected package gettext.
#8 20.95 Preparing to unpack .../068-gettext_0.21-12_amd64.deb ...
#8 20.96 Unpacking gettext (0.21-12) ...
#8 21.10 Selecting previously unselected package intltool-debian.
#8 21.10 Preparing to unpack .../069-intltool-debian_0.35.0+20060710.6_all.deb ...
#8 21.10 Unpacking intltool-debian (0.35.0+20060710.6) ...
#8 21.13 Selecting previously unselected package po-debconf.
#8 21.13 Preparing to unpack .../070-po-debconf_1.0.21+nmu1_all.deb ...
#8 21.13 Unpacking po-debconf (1.0.21+nmu1) ...
#8 21.18 Selecting previously unselected package debhelper.
#8 21.18 Preparing to unpack .../071-debhelper_13.11.4_all.deb ...
#8 21.18 Unpacking debhelper (13.11.4) ...
#8 21.29 Selecting previously unselected package libfakeroot:amd64.
#8 21.29 Preparing to unpack .../072-libfakeroot_1.31-1.2_amd64.deb ...
#8 21.30 Unpacking libfakeroot:amd64 (1.31-1.2) ...
#8 21.33 Selecting previously unselected package fakeroot.
#8 21.33 Preparing to unpack .../073-fakeroot_1.31-1.2_amd64.deb ...
#8 21.33 Unpacking fakeroot (1.31-1.2) ...
#8 21.36 Selecting previously unselected package libassuan0:amd64.
#8 21.36 Preparing to unpack .../074-libassuan0_2.5.5-5_amd64.deb ...
#8 21.37 Unpacking libassuan0:amd64 (2.5.5-5) ...
#8 21.40 Selecting previously unselected package gpgconf.
#8 21.40 Preparing to unpack .../075-gpgconf_2.2.40-1.1_amd64.deb ...
#8 21.40 Unpacking gpgconf (2.2.40-1.1) ...
#8 21.45 Selecting previously unselected package libksba8:amd64.
#8 21.45 Preparing to unpack .../076-libksba8_1.6.3-2_amd64.deb ...
#8 21.45 Unpacking libksba8:amd64 (1.6.3-2) ...
#8 21.49 Selecting previously unselected package libnpth0:amd64.
#8 21.49 Preparing to unpack .../077-libnpth0_1.6-3_amd64.deb ...
#8 21.49 Unpacking libnpth0:amd64 (1.6-3) ...
#8 21.52 Selecting previously unselected package dirmngr.
#8 21.52 Preparing to unpack .../078-dirmngr_2.2.40-1.1_amd64.deb ...
#8 21.54 Unpacking dirmngr (2.2.40-1.1) ...
#8 21.60 Selecting previously unselected package gnupg-l10n.
#8 21.60 Preparing to unpack .../079-gnupg-l10n_2.2.40-1.1_all.deb ...
#8 21.61 Unpacking gnupg-l10n (2.2.40-1.1) ...
#8 21.71 Selecting previously unselected package gnupg-utils.
#8 21.71 Preparing to unpack .../080-gnupg-utils_2.2.40-1.1_amd64.deb ...
#8 21.71 Unpacking gnupg-utils (2.2.40-1.1) ...
#8 21.79 Selecting previously unselected package gpg.
#8 21.79 Preparing to unpack .../081-gpg_2.2.40-1.1_amd64.deb ...
#8 21.79 Unpacking gpg (2.2.40-1.1) ...
#8 21.87 Selecting previously unselected package pinentry-curses.
#8 21.87 Preparing to unpack .../082-pinentry-curses_1.2.1-1_amd64.deb ...
#8 21.87 Unpacking pinentry-curses (1.2.1-1) ...
#8 21.91 Selecting previously unselected package gpg-agent.
#8 21.91 Preparing to unpack .../083-gpg-agent_2.2.40-1.1_amd64.deb ...
#8 21.91 Unpacking gpg-agent (2.2.40-1.1) ...
#8 21.97 Selecting previously unselected package gpg-wks-client.
#8 21.97 Preparing to unpack .../084-gpg-wks-client_2.2.40-1.1_amd64.deb ...
#8 21.97 Unpacking gpg-wks-client (2.2.40-1.1) ...
#8 22.02 Selecting previously unselected package gpg-wks-server.
#8 22.02 Preparing to unpack .../085-gpg-wks-server_2.2.40-1.1_amd64.deb ...
#8 22.02 Unpacking gpg-wks-server (2.2.40-1.1) ...
#8 22.07 Selecting previously unselected package gpgsm.
#8 22.07 Preparing to unpack .../086-gpgsm_2.2.40-1.1_amd64.deb ...
#8 22.07 Unpacking gpgsm (2.2.40-1.1) ...
#8 22.12 Selecting previously unselected package gnupg.
#8 22.12 Preparing to unpack .../087-gnupg_2.2.40-1.1_all.deb ...
#8 22.12 Unpacking gnupg (2.2.40-1.1) ...
#8 22.18 Selecting previously unselected package libfile-dirlist-perl.
#8 22.18 Preparing to unpack .../088-libfile-dirlist-perl_0.05-3_all.deb ...
#8 22.18 Unpacking libfile-dirlist-perl (0.05-3) ...
#8 22.21 Selecting previously unselected package libfile-which-perl.
#8 22.21 Preparing to unpack .../089-libfile-which-perl_1.27-2_all.deb ...
#8 22.21 Unpacking libfile-which-perl (1.27-2) ...
#8 22.25 Selecting previously unselected package libfile-homedir-perl.
#8 22.25 Preparing to unpack .../090-libfile-homedir-perl_1.006-2_all.deb ...
#8 22.25 Unpacking libfile-homedir-perl (1.006-2) ...
#8 22.28 Selecting previously unselected package libfile-touch-perl.
#8 22.28 Preparing to unpack .../091-libfile-touch-perl_0.12-2_all.deb ...
#8 22.29 Unpacking libfile-touch-perl (0.12-2) ...
#8 22.31 Selecting previously unselected package libio-pty-perl.
#8 22.31 Preparing to unpack .../092-libio-pty-perl_1%3a1.17-1_amd64.deb ...
#8 22.32 Unpacking libio-pty-perl (1:1.17-1) ...
#8 22.35 Selecting previously unselected package libipc-run-perl.
#8 22.35 Preparing to unpack .../093-libipc-run-perl_20220807.0-1_all.deb ...
#8 22.35 Unpacking libipc-run-perl (20220807.0-1) ...
#8 22.38 Selecting previously unselected package libclass-method-modifiers-perl.
#8 22.38 Preparing to unpack .../094-libclass-method-modifiers-perl_2.14-1_all.deb ...
#8 22.39 Unpacking libclass-method-modifiers-perl (2.14-1) ...
#8 22.41 Selecting previously unselected package libclass-xsaccessor-perl.
#8 22.41 Preparing to unpack .../095-libclass-xsaccessor-perl_1.19-4+b1_amd64.deb ...
#8 22.42 Unpacking libclass-xsaccessor-perl (1.19-4+b1) ...
#8 22.45 Selecting previously unselected package libb-hooks-op-check-perl:amd64.
#8 22.45 Preparing to unpack .../096-libb-hooks-op-check-perl_0.22-2+b1_amd64.deb ...
#8 22.45 Unpacking libb-hooks-op-check-perl:amd64 (0.22-2+b1) ...
#8 22.48 Selecting previously unselected package libdynaloader-functions-perl.
#8 22.48 Preparing to unpack .../097-libdynaloader-functions-perl_0.003-3_all.deb ...
#8 22.48 Unpacking libdynaloader-functions-perl (0.003-3) ...
#8 22.51 Selecting previously unselected package libdevel-callchecker-perl:amd64.
#8 22.51 Preparing to unpack .../098-libdevel-callchecker-perl_0.008-2_amd64.deb ...
#8 22.51 Unpacking libdevel-callchecker-perl:amd64 (0.008-2) ...
#8 22.54 Selecting previously unselected package libparams-classify-perl:amd64.
#8 22.54 Preparing to unpack .../099-libparams-classify-perl_0.015-2+b1_amd64.deb ...
#8 22.54 Unpacking libparams-classify-perl:amd64 (0.015-2+b1) ...
#8 22.57 Selecting previously unselected package libmodule-runtime-perl.
#8 22.57 Preparing to unpack .../100-libmodule-runtime-perl_0.016-2_all.deb ...
#8 22.58 Unpacking libmodule-runtime-perl (0.016-2) ...
#8 22.61 Selecting previously unselected package libimport-into-perl.
#8 22.61 Preparing to unpack .../101-libimport-into-perl_1.002005-2_all.deb ...
#8 22.61 Unpacking libimport-into-perl (1.002005-2) ...
#8 22.64 Selecting previously unselected package librole-tiny-perl.
#8 22.64 Preparing to unpack .../102-librole-tiny-perl_2.002004-1_all.deb ...
#8 22.64 Unpacking librole-tiny-perl (2.002004-1) ...
#8 22.67 Selecting previously unselected package libsub-quote-perl.
#8 22.67 Preparing to unpack .../103-libsub-quote-perl_2.006008-1_all.deb ...
#8 22.67 Unpacking libsub-quote-perl (2.006008-1) ...
#8 22.70 Selecting previously unselected package libmoo-perl.
#8 22.70 Preparing to unpack .../104-libmoo-perl_2.005005-1_all.deb ...
#8 22.70 Unpacking libmoo-perl (2.005005-1) ...
#8 22.73 Selecting previously unselected package libencode-locale-perl.
#8 22.73 Preparing to unpack .../105-libencode-locale-perl_1.05-3_all.deb ...
#8 22.74 Unpacking libencode-locale-perl (1.05-3) ...
#8 22.76 Selecting previously unselected package libtimedate-perl.
#8 22.76 Preparing to unpack .../106-libtimedate-perl_2.3300-2_all.deb ...
#8 22.77 Unpacking libtimedate-perl (2.3300-2) ...
#8 22.80 Selecting previously unselected package libhttp-date-perl.
#8 22.80 Preparing to unpack .../107-libhttp-date-perl_6.05-2_all.deb ...
#8 22.80 Unpacking libhttp-date-perl (6.05-2) ...
#8 22.83 Selecting previously unselected package libfile-listing-perl.
#8 22.83 Preparing to unpack .../108-libfile-listing-perl_6.15-1_all.deb ...
#8 22.84 Unpacking libfile-listing-perl (6.15-1) ...
#8 22.86 Selecting previously unselected package libhtml-tagset-perl.
#8 22.86 Preparing to unpack .../109-libhtml-tagset-perl_3.20-6_all.deb ...
#8 22.86 Unpacking libhtml-tagset-perl (3.20-6) ...
#8 22.89 Selecting previously unselected package libregexp-ipv6-perl.
#8 22.89 Preparing to unpack .../110-libregexp-ipv6-perl_0.03-3_all.deb ...
#8 22.89 Unpacking libregexp-ipv6-perl (0.03-3) ...
#8 22.92 Selecting previously unselected package liburi-perl.
#8 22.92 Preparing to unpack .../111-liburi-perl_5.17-1_all.deb ...
#8 22.92 Unpacking liburi-perl (5.17-1) ...
#8 22.97 Selecting previously unselected package libhtml-parser-perl:amd64.
#8 22.97 Preparing to unpack .../112-libhtml-parser-perl_3.81-1_amd64.deb ...
#8 22.97 Unpacking libhtml-parser-perl:amd64 (3.81-1) ...
#8 23.00 Selecting previously unselected package libhtml-tree-perl.
#8 23.00 Preparing to unpack .../113-libhtml-tree-perl_5.07-3_all.deb ...
#8 23.01 Unpacking libhtml-tree-perl (5.07-3) ...
#8 23.05 Selecting previously unselected package libclone-perl:amd64.
#8 23.05 Preparing to unpack .../114-libclone-perl_0.46-1_amd64.deb ...
#8 23.05 Unpacking libclone-perl:amd64 (0.46-1) ...
#8 23.08 Selecting previously unselected package libio-html-perl.
#8 23.08 Preparing to unpack .../115-libio-html-perl_1.004-3_all.deb ...
#8 23.09 Unpacking libio-html-perl (1.004-3) ...
#8 23.11 Selecting previously unselected package liblwp-mediatypes-perl.
#8 23.11 Preparing to unpack .../116-liblwp-mediatypes-perl_6.04-2_all.deb ...
#8 23.12 Unpacking liblwp-mediatypes-perl (6.04-2) ...
#8 23.15 Selecting previously unselected package libhttp-message-perl.
#8 23.15 Preparing to unpack .../117-libhttp-message-perl_6.44-1_all.deb ...
#8 23.15 Unpacking libhttp-message-perl (6.44-1) ...
#8 23.18 Selecting previously unselected package libhttp-cookies-perl.
#8 23.18 Preparing to unpack .../118-libhttp-cookies-perl_6.10-1_all.deb ...
#8 23.19 Unpacking libhttp-cookies-perl (6.10-1) ...
#8 23.21 Selecting previously unselected package libhttp-negotiate-perl.
#8 23.21 Preparing to unpack .../119-libhttp-negotiate-perl_6.01-2_all.deb ...
#8 23.22 Unpacking libhttp-negotiate-perl (6.01-2) ...
#8 23.24 Selecting previously unselected package perl-openssl-defaults:amd64.
#8 23.24 Preparing to unpack .../120-perl-openssl-defaults_7+b1_amd64.deb ...
#8 23.25 Unpacking perl-openssl-defaults:amd64 (7+b1) ...
#8 23.27 Selecting previously unselected package libnet-ssleay-perl:amd64.
#8 23.27 Preparing to unpack .../121-libnet-ssleay-perl_1.92-2+b1_amd64.deb ...
#8 23.28 Unpacking libnet-ssleay-perl:amd64 (1.92-2+b1) ...
#8 23.34 Selecting previously unselected package libio-socket-ssl-perl.
#8 23.34 Preparing to unpack .../122-libio-socket-ssl-perl_2.081-2_all.deb ...
#8 23.34 Unpacking libio-socket-ssl-perl (2.081-2) ...
#8 23.39 Selecting previously unselected package libnet-http-perl.
#8 23.39 Preparing to unpack .../123-libnet-http-perl_6.22-1_all.deb ...
#8 23.39 Unpacking libnet-http-perl (6.22-1) ...
#8 23.42 Selecting previously unselected package liblwp-protocol-https-perl.
#8 23.42 Preparing to unpack .../124-liblwp-protocol-https-perl_6.10-1_all.deb ...
#8 23.42 Unpacking liblwp-protocol-https-perl (6.10-1) ...
#8 23.45 Selecting previously unselected package libtry-tiny-perl.
#8 23.45 Preparing to unpack .../125-libtry-tiny-perl_0.31-2_all.deb ...
#8 23.45 Unpacking libtry-tiny-perl (0.31-2) ...
#8 23.48 Selecting previously unselected package libwww-robotrules-perl.
#8 23.48 Preparing to unpack .../126-libwww-robotrules-perl_6.02-1_all.deb ...
#8 23.48 Unpacking libwww-robotrules-perl (6.02-1) ...
#8 23.51 Selecting previously unselected package libwww-perl.
#8 23.51 Preparing to unpack .../127-libwww-perl_6.68-1_all.deb ...
#8 23.51 Unpacking libwww-perl (6.68-1) ...
#8 23.56 Selecting previously unselected package patchutils.
#8 23.56 Preparing to unpack .../128-patchutils_0.4.2-1_amd64.deb ...
#8 23.56 Unpacking patchutils (0.4.2-1) ...
#8 23.60 Selecting previously unselected package wdiff.
#8 23.60 Preparing to unpack .../129-wdiff_1.2.2-5_amd64.deb ...
#8 23.60 Unpacking wdiff (1.2.2-5) ...
#8 23.65 Selecting previously unselected package devscripts.
#8 23.65 Preparing to unpack .../130-devscripts_2.23.4+deb12u2_amd64.deb ...
#8 23.68 Unpacking devscripts (2.23.4+deb12u2) ...
#8 23.82 Selecting previously unselected package diffstat.
#8 23.82 Preparing to unpack .../131-diffstat_1.65-1_amd64.deb ...
#8 23.82 Unpacking diffstat (1.65-1) ...
#8 23.85 Selecting previously unselected package ed.
#8 23.85 Preparing to unpack .../132-ed_1.19-1_amd64.deb ...
#8 23.85 Unpacking ed (1.19-1) ...
#8 23.89 Selecting previously unselected package equivs.
#8 23.89 Preparing to unpack .../133-equivs_2.3.1_all.deb ...
#8 23.89 Unpacking equivs (2.3.1) ...
#8 23.92 Selecting previously unselected package libcurl3-gnutls:amd64.
#8 23.92 Preparing to unpack .../134-libcurl3-gnutls_7.88.1-10+deb12u12_amd64.deb ...
#8 23.93 Unpacking libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ...
#8 23.98 Selecting previously unselected package liberror-perl.
#8 23.98 Preparing to unpack .../135-liberror-perl_0.17029-2_all.deb ...
#8 23.98 Unpacking liberror-perl (0.17029-2) ...
#8 24.01 Selecting previously unselected package git-man.
#8 24.01 Preparing to unpack .../136-git-man_1%3a2.39.5-0+deb12u2_all.deb ...
#8 24.02 Unpacking git-man (1:2.39.5-0+deb12u2) ...
#8 24.13 Selecting previously unselected package git.
#8 24.13 Preparing to unpack .../137-git_1%3a2.39.5-0+deb12u2_amd64.deb ...
#8 24.14 Unpacking git (1:2.39.5-0+deb12u2) ...
#8 24.82 Selecting previously unselected package libparse-recdescent-perl.
#8 24.82 Preparing to unpack .../138-libparse-recdescent-perl_1.967015+dfsg-4_all.deb ...
#8 24.82 Unpacking libparse-recdescent-perl (1.967015+dfsg-4) ...
#8 24.86 Selecting previously unselected package libxml2-utils.
#8 24.86 Preparing to unpack .../139-libxml2-utils_2.9.14+dfsg-1.3~deb12u1_amd64.deb ...
#8 24.86 Unpacking libxml2-utils (2.9.14+dfsg-1.3~deb12u1) ...
#8 24.90 Selecting previously unselected package lsb-release.
#8 24.90 Preparing to unpack .../140-lsb-release_12.0-1_all.deb ...
#8 24.90 Unpacking lsb-release (12.0-1) ...
#8 24.93 Selecting previously unselected package quilt.
#8 24.93 Preparing to unpack .../141-quilt_0.67+really0.66-1_all.deb ...
#8 24.94 Unpacking quilt (0.67+really0.66-1) ...
#8 25.00 Selecting previously unselected package xsltproc.
#8 25.00 Preparing to unpack .../142-xsltproc_1.1.35-1+deb12u1_amd64.deb ...
#8 25.00 Unpacking xsltproc (1.1.35-1+deb12u1) ...
#8 25.05 Setting up libksba8:amd64 (1.6.3-2) ...
#8 25.05 Setting up media-types (10.0.0) ...
#8 25.06 Setting up libpipeline1:amd64 (1.5.7-1) ...
#8 25.06 Setting up wdiff (1.2.2-5) ...
#8 25.07 Setting up bsdextrautils (2.38.1-5+deb12u3) ...
#8 25.07 Setting up wget (1.21.3-1+deb12u1) ...
#8 25.08 Setting up libmagic-mgc (1:5.44-3) ...
#8 25.08 Setting up libtirpc-common (1.3.3+ds-1) ...
#8 25.09 Setting up libsqlite3-0:amd64 (3.40.1-2+deb12u1) ...
#8 25.10 Setting up xsltproc (1.1.35-1+deb12u1) ...
#8 25.10 Setting up binutils-common:amd64 (2.40-2) ...
#8 25.11 Setting up libmagic1:amd64 (1:5.44-3) ...
#8 25.11 Setting up perl-openssl-defaults:amd64 (7+b1) ...
#8 25.12 Setting up linux-libc-dev:amd64 (6.1.135-1) ...
#8 25.12 Setting up libctf-nobfd0:amd64 (2.40-2) ...
#8 25.13 Setting up m4 (1.4.19-3) ...
#8 25.13 Setting up libcurl3-gnutls:amd64 (7.88.1-10+deb12u12) ...
#8 25.14 Setting up libnpth0:amd64 (1.6-3) ...
#8 25.14 Setting up file (1:5.44-3) ...
#8 25.15 Setting up libassuan0:amd64 (2.5.5-5) ...
#8 25.15 Setting up libgomp1:amd64 (12.2.0-14) ...
#8 25.16 Setting up bzip2 (1.0.8-5+b1) ...
#8 25.16 Setting up libfakeroot:amd64 (1.31-1.2) ...
#8 25.17 Setting up libjansson4:amd64 (2.14-2) ...
#8 25.17 Setting up fakeroot (1.31-1.2) ...
#8 25.18 update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/man1/fakeroot.1.gz because associated file /usr/share/man/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/man1/faked.1.gz because associated file /usr/share/man/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/es/man1/fakeroot.1.gz because associated file /usr/share/man/es/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/es/man1/faked.1.gz because associated file /usr/share/man/es/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/fakeroot.1.gz because associated file /usr/share/man/fr/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/fr/man1/faked.1.gz because associated file /usr/share/man/fr/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/fakeroot.1.gz because associated file /usr/share/man/sv/man1/fakeroot-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.18 update-alternatives: warning: skip creation of /usr/share/man/sv/man1/faked.1.gz because associated file /usr/share/man/sv/man1/faked-sysv.1.gz (of link group fakeroot) doesn't exist
#8 25.19 Setting up perl-modules-5.36 (5.36.0-7+deb12u2) ...
#8 25.19 Setting up autotools-dev (20220109.1) ...
#8 25.20 Setting up rpcsvc-proto (1.4.3-1) ...
#8 25.20 Setting up make (4.3-4.1) ...
#8 25.21 Setting up libmpfr6:amd64 (4.2.0-1) ...
#8 25.21 Setting up gnupg-l10n (2.2.40-1.1) ...
#8 25.22 Setting up ed (1.19-1) ...
#8 25.22 Setting up xz-utils (5.4.1-1) ...
#8 25.23 update-alternatives: using /usr/bin/xz to provide /usr/bin/lzma (lzma) in auto mode
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzma.1.gz because associated file /usr/share/man/man1/xz.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/unlzma.1.gz because associated file /usr/share/man/man1/unxz.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcat.1.gz because associated file /usr/share/man/man1/xzcat.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzmore.1.gz because associated file /usr/share/man/man1/xzmore.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzless.1.gz because associated file /usr/share/man/man1/xzless.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzdiff.1.gz because associated file /usr/share/man/man1/xzdiff.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzcmp.1.gz because associated file /usr/share/man/man1/xzcmp.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzgrep.1.gz because associated file /usr/share/man/man1/xzgrep.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzegrep.1.gz because associated file /usr/share/man/man1/xzegrep.1.gz (of link group lzma) doesn't exist
#8 25.23 update-alternatives: warning: skip creation of /usr/share/man/man1/lzfgrep.1.gz because associated file /usr/share/man/man1/xzfgrep.1.gz (of link group lzma) doesn't exist
#8 25.24 Setting up libquadmath0:amd64 (12.2.0-14) ...
#8 25.24 Setting up diffstat (1.65-1) ...
#8 25.25 Setting up libmpc3:amd64 (1.3.1-1) ...
#8 25.25 Setting up libatomic1:amd64 (12.2.0-14) ...
#8 25.26 Setting up patch (2.7.6-7) ...
#8 25.26 Setting up autopoint (0.21-12) ...
#8 25.27 Setting up libncursesw6:amd64 (6.4-4) ...
#8 25.27 Setting up libubsan1:amd64 (12.2.0-14) ...
#8 25.28 Setting up sensible-utils (0.0.17+nmu1) ...
#8 25.28 Setting up libcrypt-dev:amd64 (1:4.4.33-2) ...
#8 25.30 Setting up libasan8:amd64 (12.2.0-14) ...
#8 25.30 Setting up libuchardet0:amd64 (0.0.7-1) ...
#8 25.30 Setting up git-man (1:2.39.5-0+deb12u2) ...
#8 25.31 Setting up netbase (6.4) ...
#8 25.32 Setting up libtsan2:amd64 (12.2.0-14) ...
#8 25.33 Setting up libbinutils:amd64 (2.40-2) ...
#8 25.33 Setting up lsb-release (12.0-1) ...
#8 25.34 Setting up libisl23:amd64 (0.25-1.1) ...
#8 25.34 Setting up libxml2-utils (2.9.14+dfsg-1.3~deb12u1) ...
#8 25.35 Setting up libc-dev-bin (2.36-9+deb12u10) ...
#8 25.35 Setting up libelf1:amd64 (0.188-2.1) ...
#8 25.36 Setting up readline-common (8.2-1.3) ...
#8 25.37 Setting up libcc1-0:amd64 (12.2.0-14) ...
#8 25.37 Setting up liblsan0:amd64 (12.2.0-14) ...
#8 25.38 Setting up libitm1:amd64 (12.2.0-14) ...
#8 25.38 Setting up libgdbm6:amd64 (1.23-3) ...
#8 25.39 Setting up libctf0:amd64 (2.40-2) ...
#8 25.39 Setting up pinentry-curses (1.2.1-1) ...
#8 25.40 Setting up libtirpc3:amd64 (1.3.3+ds-1) ...
#8 25.40 Setting up cpp-12 (12.2.0-14) ...
#8 25.41 Setting up gettext (0.21-12) ...
#8 25.41 Setting up libreadline8:amd64 (8.2-1.3) ...
#8 25.42 Setting up libgprofng0:amd64 (2.40-2) ...
#8 25.42 Setting up libtirpc-dev:amd64 (1.3.3+ds-1) ...
#8 25.43 Setting up libgcc-12-dev:amd64 (12.2.0-14) ...
#8 25.43 Setting up libgdbm-compat4:amd64 (1.23-3) ...
#8 25.44 Setting up dwz (0.15-1) ...
#8 25.44 Setting up groff-base (1.22.4-10) ...
#8 25.45 Setting up cpp (4:12.2.0-3) ...
#8 25.46 Setting up libnsl2:amd64 (1.3.0-2) ...
#8 25.46 Setting up gpgconf (2.2.40-1.1) ...
#8 25.47 Setting up libperl5.36:amd64 (5.36.0-7+deb12u2) ...
#8 25.47 Setting up gpg (2.2.40-1.1) ...
#8 25.48 Setting up gnupg-utils (2.2.40-1.1) ...
#8 25.48 Setting up binutils-x86-64-linux-gnu (2.40-2) ...
#8 25.49 Setting up gpg-agent (2.2.40-1.1) ...
#8 26.18 Setting up libpython3.11-stdlib:amd64 (3.11.2-6+deb12u5) ...
#8 26.18 Setting up gpgsm (2.2.40-1.1) ...
#8 26.19 Setting up binutils (2.40-2) ...
#8 26.19 Setting up man-db (2.11.2-2) ...
#8 26.31 debconf: unable to initialize frontend: Dialog
#8 26.31 debconf: (TERM is not set, so the dialog frontend is not usable.)
#8 26.31 debconf: falling back to frontend: Readline
#8 26.32 debconf: unable to initialize frontend: Readline
#8 26.32 debconf: (This frontend requires a controlling tty.)
#8 26.32 debconf: falling back to frontend: Teletype
#8 26.36 Building database of manual pages ...
#8 26.56 Setting up dirmngr (2.2.40-1.1) ...
#8 26.75 Setting up perl (5.36.0-7+deb12u2) ...
#8 26.77 Setting up gcc-12 (12.2.0-14) ...
#8 26.77 Setting up libio-html-perl (1.004-3) ...
#8 26.77 Setting up libb-hooks-op-check-perl:amd64 (0.22-2+b1) ...
#8 26.78 Setting up libdpkg-perl (1.21.22) ...
#8 26.78 Setting up autoconf (2.71-3) ...
#8 26.79 Setting up libtimedate-perl (2.3300-2) ...
#8 26.79 Setting up libregexp-ipv6-perl (0.03-3) ...
#8 26.80 Setting up gpg-wks-server (2.2.40-1.1) ...
#8 26.80 Setting up libparse-recdescent-perl (1.967015+dfsg-4) ...
#8 26.81 Setting up libnsl-dev:amd64 (1.3.0-2) ...
#8 26.81 Setting up libsub-override-perl (0.09-4) ...
#8 26.82 Setting up libc6-dev:amd64 (2.36-9+deb12u10) ...
#8 26.82 Setting up libsub-quote-perl (2.006008-1) ...
#8 26.83 Setting up libclass-xsaccessor-perl (1.19-4+b1) ...
#8 26.83 Setting up libfile-dirlist-perl (0.05-3) ...
#8 26.84 Setting up liburi-perl (5.17-1) ...
#8 26.84 Setting up libfile-touch-perl (0.12-2) ...
#8 26.85 Setting up libpython3-stdlib:amd64 (3.11.2-1+b1) ...
#8 26.85 Setting up libnet-ssleay-perl:amd64 (1.92-2+b1) ...
#8 26.86 Setting up automake (1:1.16.5-1.3) ...
#8 26.86 update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
#8 26.86 update-alternatives: warning: skip creation of /usr/share/man/man1/automake.1.gz because associated file /usr/share/man/man1/automake-1.16.1.gz (of link group automake) doesn't exist
#8 26.86 update-alternatives: warning: skip creation of /usr/share/man/man1/aclocal.1.gz because associated file /usr/share/man/man1/aclocal-1.16.1.gz (of link group automake) doesn't exist
#8 26.87 Setting up python3.11 (3.11.2-6+deb12u5) ...
#8 28.05 Setting up libhttp-date-perl (6.05-2) ...
#8 28.05 Setting up libfile-which-perl (1.27-2) ...
#8 28.05 Setting up libfile-listing-perl (6.15-1) ...
#8 28.06 Setting up gpg-wks-client (2.2.40-1.1) ...
#8 28.06 Setting up libdynaloader-functions-perl (0.003-3) ...
#8 28.07 Setting up libclass-method-modifiers-perl (2.14-1) ...
#8 28.07 Setting up libstdc++-12-dev:amd64 (12.2.0-14) ...
#8 28.08 Setting up libio-pty-perl (1:1.17-1) ...
#8 28.08 Setting up libtool (2.4.7-7~deb12u1) ...
#8 28.09 Setting up libclone-perl:amd64 (0.46-1) ...
#8 28.09 Setting up libarchive-zip-perl (1.68-1) ...
#8 28.10 Setting up libhtml-tagset-perl (3.20-6) ...
#8 28.10 Setting up libdebhelper-perl (13.11.4) ...
#8 28.11 Setting up liblwp-mediatypes-perl (6.04-2) ...
#8 28.11 Setting up libtry-tiny-perl (0.31-2) ...
#8 28.12 Setting up libnet-http-perl (6.22-1) ...
#8 28.12 Setting up libencode-locale-perl (1.05-3) ...
#8 28.13 Setting up python3 (3.11.2-1+b1) ...
#8 28.14 running python rtupdate hooks for python3.11...
#8 28.14 running python post-rtupdate hooks for python3.11...
#8 28.30 Setting up quilt (0.67+really0.66-1) ...
#8 28.31 Setting up libdevel-callchecker-perl:amd64 (0.008-2) ...
#8 28.32 Setting up gcc (4:12.2.0-3) ...
#8 28.33 Setting up dpkg-dev (1.21.22) ...
#8 28.34 Setting up intltool-debian (0.35.0+20060710.6) ...
#8 28.34 Setting up liberror-perl (0.17029-2) ...
#8 28.35 Setting up dh-autoreconf (20) ...
#8 28.35 Setting up patchutils (0.4.2-1) ...
#8 28.36 Setting up libipc-run-perl (20220807.0-1) ...
#8 28.36 Setting up git (1:2.39.5-0+deb12u2) ...
#8 28.37 Setting up libwww-robotrules-perl (6.02-1) ...
#8 28.38 Setting up libhtml-parser-perl:amd64 (3.81-1) ...
#8 28.38 Setting up librole-tiny-perl (2.002004-1) ...
#8 28.39 Setting up gnupg (2.2.40-1.1) ...
#8 28.39 Setting up libfile-homedir-perl (1.006-2) ...
#8 28.40 Setting up libio-socket-ssl-perl (2.081-2) ...
#8 28.40 Setting up libhttp-message-perl (6.44-1) ...
#8 28.41 Setting up g++-12 (12.2.0-14) ...
#8 28.41 Setting up libfile-stripnondeterminism-perl (1.13.1-1) ...
#8 28.42 Setting up libhttp-negotiate-perl (6.01-2) ...
#8 28.42 Setting up libhttp-cookies-perl (6.10-1) ...
#8 28.43 Setting up po-debconf (1.0.21+nmu1) ...
#8 28.43 Setting up libhtml-tree-perl (5.07-3) ...
#8 28.44 Setting up libparams-classify-perl:amd64 (0.015-2+b1) ...
#8 28.44 Setting up libmodule-runtime-perl (0.016-2) ...
#8 28.45 Setting up dh-strip-nondeterminism (1.13.1-1) ...
#8 28.45 Setting up g++ (4:12.2.0-3) ...
#8 28.46 update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
#8 28.46 Setting up build-essential (12.9) ...
#8 28.47 Setting up libimport-into-perl (1.002005-2) ...
#8 28.47 Setting up libmoo-perl (2.005005-1) ...
#8 28.48 Setting up debhelper (13.11.4) ...
#8 28.48 Setting up equivs (2.3.1) ...
#8 28.49 Setting up liblwp-protocol-https-perl (6.10-1) ...
#8 28.49 Setting up libwww-perl (6.68-1) ...
#8 28.50 Setting up devscripts (2.23.4+deb12u2) ...
#8 28.76 Processing triggers for libc-bin (2.36-9+deb12u10) ...
#8 29.06 + XSLSCRIPT_SHA512='f7194c5198daeab9b3b0c3aebf006922c7df1d345d454bd8474489ff2eb6b4bf8e2ffe442489a45d1aab80da6ecebe0097759a1e12cc26b5f0613d05b7c09ffa *stdin'
#8 29.06 + wget -O /tmp/xslscript.pl https://raw.githubusercontent.com/nginx/xslscript/9204424259c343ca08a18a78915f40f28025e093/xslscript.pl
#8 29.06 --2025-04-30 05:22:53--  https://raw.githubusercontent.com/nginx/xslscript/9204424259c343ca08a18a78915f40f28025e093/xslscript.pl
#8 29.08 Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.111.133, ...
#8 29.08 Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected.
#8 29.09 HTTP request sent, awaiting response... 200 OK
#8 29.49 Length: 9758 (9.5K) [text/plain]
#8 29.49 Saving to: '/tmp/xslscript.pl'
#8 29.49 
#8 29.49      0K .........                                             100% 28.5M=0s
#8 29.49 
#8 29.49 2025-04-30 05:22:53 (28.5 MB/s) - '/tmp/xslscript.pl' saved [9758/9758]
#8 29.49 
#8 29.50 ++ cat /tmp/xslscript.pl
#8 29.50 ++ openssl sha512 -r
#8 29.51 XSLScript checksum verification succeeded!
#8 29.51 + '[' 'f7194c5198daeab9b3b0c3aebf006922c7df1d345d454bd8474489ff2eb6b4bf8e2ffe442489a45d1aab80da6ecebe0097759a1e12cc26b5f0613d05b7c09ffa *stdin' = 'f7194c5198daeab9b3b0c3aebf006922c7df1d345d454bd8474489ff2eb6b4bf8e2ffe442489a45d1aab80da6ecebe0097759a1e12cc26b5f0613d05b7c09ffa *stdin' ']'
#8 29.51 + echo 'XSLScript checksum verification succeeded!'
#8 29.51 + chmod +x /tmp/xslscript.pl
#8 29.51 + mv /tmp/xslscript.pl /usr/local/bin/
#8 29.51 + git clone -b 1.27.5-1 https://github.com/nginx/pkg-oss/
#8 29.51 Cloning into 'pkg-oss'...
#8 32.03 Note: switching to '45a3cf7729d8fd7bc52c81e4c73b1a5abc5260fa'.
#8 32.03 
#8 32.03 You are in 'detached HEAD' state. You can look around, make experimental
#8 32.03 changes and commit them, and you can discard any commits you make in this
#8 32.03 state without impacting any branches by switching back to a branch.
#8 32.03 
#8 32.03 If you want to create a new branch to retain commits you create, you may
#8 32.03 do so (now or later) by using -c with the switch command. Example:
#8 32.03 
#8 32.03   git switch -c <new-branch-name>
#8 32.03 
#8 32.03 Or undo this operation with:
#8 32.03 
#8 32.03   git switch -
#8 32.03 
#8 32.03 Turn off this advice by setting config variable advice.detachedHead to false
#8 32.03 
#8 32.05 + cd pkg-oss
#8 32.05 + mkdir /tmp/packages
#8 32.05 + for module in $ENABLED_MODULES
#8 32.05 + echo 'Building ngx_waf for nginx-1.27.5'
#8 32.05 + '[' -d /modules/ngx_waf ']'
#8 32.05 + echo 'Building ngx_waf from user-supplied sources'
#8 32.05 + '[' '!' -s /modules/ngx_waf/source ']'
#8 32.05 + '[' -f /modules/ngx_waf/build-deps ']'
#8 32.05 + echo 'Installing ngx_waf build dependencies'
#8 32.05 + apt-get update
#8 32.05 Building ngx_waf for nginx-1.27.5
#8 32.05 Building ngx_waf from user-supplied sources
#8 32.05 Installing ngx_waf build dependencies
#8 32.12 Hit:1 http://deb.debian.org/debian bookworm InRelease
#8 32.12 Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
#8 32.12 Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease
#8 32.38 Reading package lists...
#8 33.11 ++ cat /modules/ngx_waf/build-deps
#8 33.11 ++ xargs
#8 33.12 + apt-get install -y --no-install-suggests --no-install-recommends flex bison
#8 33.13 Reading package lists...
#8 33.86 Building dependency tree...
#8 34.04 Reading state information...
#8 34.40 Suggested packages:
#8 34.40   bison-doc flex-doc
#8 34.40 Recommended packages:
#8 34.40   libfl-dev
#8 34.44 The following NEW packages will be installed:
#8 34.45   bison flex
#8 34.49 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
#8 34.49 Need to get 1596 kB of archives.
#8 34.49 After this operation, 4462 kB of additional disk space will be used.
#8 34.49 Get:1 http://deb.debian.org/debian bookworm/main amd64 flex amd64 2.6.4-8.2 [422 kB]
#8 34.51 Get:2 http://deb.debian.org/debian bookworm/main amd64 bison amd64 2:3.8.2+dfsg-1+b1 [1175 kB]
#8 34.70 debconf: delaying package configuration, since apt-utils is not installed
#8 34.74 Fetched 1596 kB in 0s (35.2 MB/s)
#8 34.77 Selecting previously unselected package flex.
(Reading database ... 19292 files and directories currently installed.)
#8 34.79 Preparing to unpack .../flex_2.6.4-8.2_amd64.deb ...
#8 34.79 Unpacking flex (2.6.4-8.2) ...
#8 34.86 Selecting previously unselected package bison.
#8 34.86 Preparing to unpack .../bison_2%3a3.8.2+dfsg-1+b1_amd64.deb ...
#8 34.87 Unpacking bison (2:3.8.2+dfsg-1+b1) ...
#8 34.98 Setting up flex (2.6.4-8.2) ...
#8 34.98 Setting up bison (2:3.8.2+dfsg-1+b1) ...
#8 34.99 update-alternatives: using /usr/bin/bison.yacc to provide /usr/bin/yacc (yacc) in auto mode
#8 34.99 update-alternatives: warning: skip creation of /usr/share/man/man1/yacc.1.gz because associated file /usr/share/man/man1/bison.yacc.1.gz (of link group yacc) doesn't exist
#8 34.99 Processing triggers for man-db (2.11.2-2) ...
#8 35.03 Running prebuild script for ngx_waf
#8 35.03 + '[' -x /modules/ngx_waf/prebuild ']'
#8 35.03 + echo 'Running prebuild script for ngx_waf'
#8 35.03 + /modules/ngx_waf/prebuild
#8 35.03 ++ cat /modules/ngx_waf/source
#8 35.04 + /pkg-oss/build_module.sh -v 1.27.5 -f -y -o /tmp/packages -n ngx_waf https://github.com/ADD-SP/ngx_waf/archive/refs/tags/v6.1.10.tar.gz
#8 35.04 
#8 35.04 DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER DISCLAIMER
#8 35.04 
#8 35.04  This script is provided as a demonstration of how to use the NGINX pkg-oss
#8 35.04  tooling to compile and package a dynamic module for NGINX and NGINX Plus.
#8 35.04  It will produce an installable package with the correct dependency on the
#8 35.04  NGINX version used for the build so that upgrades will not lead to mismatch
#8 35.04  between NGINX and the module. When using this script please bear in mind:
#8 35.04   - It will not work for every module, check for module prerequisites.
#8 35.04   - The installable packages are not intended for redistribution.
#8 35.04   - Seamless upgrades with dependency matching require a yum/apt repository.
#8 35.04 
#8 35.09 build_module.sh: INFO: checking for dependent packages
#8 35.13 Hit:1 http://deb.debian.org/debian bookworm InRelease
#8 35.13 Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
#8 35.13 Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease
#8 35.40 Reading package lists...
#8 36.16 Reading package lists...
#8 36.91 Building dependency tree...
#8 37.10 Reading state information...
#8 37.47 gcc is already the newest version (4:12.2.0-3).
#8 37.47 gcc set to manually installed.
#8 37.47 make is already the newest version (4.3-4.1).
#8 37.47 wget is already the newest version (1.21.3-1+deb12u1).
#8 37.47 git is already the newest version (1:2.39.5-0+deb12u2).
#8 37.47 devscripts is already the newest version (2.23.4+deb12u2).
#8 37.47 fakeroot is already the newest version (1.31-1.2).
#8 37.47 fakeroot set to manually installed.
#8 37.47 debhelper is already the newest version (13.11.4).
#8 37.47 dpkg-dev is already the newest version (1.21.22).
#8 37.47 quilt is already the newest version (0.67+really0.66-1).
#8 37.47 lsb-release is already the newest version (12.0-1).
#8 37.47 build-essential is already the newest version (12.9).
#8 37.47 libxml2-utils is already the newest version (2.9.14+dfsg-1.3~deb12u1).
#8 37.47 xsltproc is already the newest version (1.1.35-1+deb12u1).
#8 37.47 The following additional packages will be installed:
#8 37.47   libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-posix3 libpcre3 libpcre32-3
#8 37.47   libpcrecpp0v5
#8 37.48 Suggested packages:
#8 37.48   libssl-doc zip
#8 37.61 The following NEW packages will be installed:
#8 37.61   libpcre16-3 libpcre2-16-0 libpcre2-32-0 libpcre2-dev libpcre2-posix3
#8 37.61   libpcre3 libpcre3-dev libpcre32-3 libpcrecpp0v5 libssl-dev unzip zlib1g-dev
#8 37.66 0 upgraded, 12 newly installed, 0 to remove and 0 not upgraded.
#8 37.66 Need to get 6452 kB of archives.
#8 37.66 After this operation, 22.6 MB of additional disk space will be used.
#8 37.66 Get:1 http://deb.debian.org/debian bookworm/main amd64 libpcre16-3 amd64 2:8.39-15 [257 kB]
#8 37.67 Get:2 http://deb.debian.org/debian bookworm/main amd64 libpcre2-16-0 amd64 10.42-1 [245 kB]
#8 37.67 Get:3 http://deb.debian.org/debian bookworm/main amd64 libpcre2-32-0 amd64 10.42-1 [234 kB]
#8 37.68 Get:4 http://deb.debian.org/debian bookworm/main amd64 libpcre2-posix3 amd64 10.42-1 [55.4 kB]
#8 37.68 Get:5 http://deb.debian.org/debian bookworm/main amd64 libpcre2-dev amd64 10.42-1 [753 kB]
#8 37.69 Get:6 http://deb.debian.org/debian bookworm/main amd64 libpcre3 amd64 2:8.39-15 [341 kB]
#8 37.69 Get:7 http://deb.debian.org/debian bookworm/main amd64 libpcre32-3 amd64 2:8.39-15 [248 kB]
#8 37.69 Get:8 http://deb.debian.org/debian bookworm/main amd64 libpcrecpp0v5 amd64 2:8.39-15 [143 kB]
#8 37.70 Get:9 http://deb.debian.org/debian bookworm/main amd64 libpcre3-dev amd64 2:8.39-15 [653 kB]
#8 37.71 Get:10 http://deb.debian.org/debian bookworm/main amd64 libssl-dev amd64 3.0.15-1~deb12u1 [2439 kB]
#8 37.73 Get:11 http://deb.debian.org/debian bookworm/main amd64 unzip amd64 6.0-28 [166 kB]
#8 37.74 Get:12 http://deb.debian.org/debian bookworm/main amd64 zlib1g-dev amd64 1:1.2.13.dfsg-1 [916 kB]
#8 37.92 debconf: delaying package configuration, since apt-utils is not installed
#8 37.96 Fetched 6452 kB in 0s (60.7 MB/s)
#8 37.99 Selecting previously unselected package libpcre16-3:amd64.
(Reading database ... 19614 files and directories currently installed.)
#8 38.00 Preparing to unpack .../00-libpcre16-3_2%3a8.39-15_amd64.deb ...
#8 38.00 Unpacking libpcre16-3:amd64 (2:8.39-15) ...
#8 38.05 Selecting previously unselected package libpcre2-16-0:amd64.
#8 38.05 Preparing to unpack .../01-libpcre2-16-0_10.42-1_amd64.deb ...
#8 38.05 Unpacking libpcre2-16-0:amd64 (10.42-1) ...
#8 38.10 Selecting previously unselected package libpcre2-32-0:amd64.
#8 38.10 Preparing to unpack .../02-libpcre2-32-0_10.42-1_amd64.deb ...
#8 38.11 Unpacking libpcre2-32-0:amd64 (10.42-1) ...
#8 38.16 Selecting previously unselected package libpcre2-posix3:amd64.
#8 38.16 Preparing to unpack .../03-libpcre2-posix3_10.42-1_amd64.deb ...
#8 38.16 Unpacking libpcre2-posix3:amd64 (10.42-1) ...
#8 38.19 Selecting previously unselected package libpcre2-dev:amd64.
#8 38.19 Preparing to unpack .../04-libpcre2-dev_10.42-1_amd64.deb ...
#8 38.20 Unpacking libpcre2-dev:amd64 (10.42-1) ...
#8 38.30 Selecting previously unselected package libpcre3:amd64.
#8 38.30 Preparing to unpack .../05-libpcre3_2%3a8.39-15_amd64.deb ...
#8 38.30 Unpacking libpcre3:amd64 (2:8.39-15) ...
#8 38.36 Selecting previously unselected package libpcre32-3:amd64.
#8 38.36 Preparing to unpack .../06-libpcre32-3_2%3a8.39-15_amd64.deb ...
#8 38.37 Unpacking libpcre32-3:amd64 (2:8.39-15) ...
#8 38.41 Selecting previously unselected package libpcrecpp0v5:amd64.
#8 38.41 Preparing to unpack .../07-libpcrecpp0v5_2%3a8.39-15_amd64.deb ...
#8 38.41 Unpacking libpcrecpp0v5:amd64 (2:8.39-15) ...
#8 38.44 Selecting previously unselected package libpcre3-dev:amd64.
#8 38.44 Preparing to unpack .../08-libpcre3-dev_2%3a8.39-15_amd64.deb ...
#8 38.45 Unpacking libpcre3-dev:amd64 (2:8.39-15) ...
#8 38.53 Selecting previously unselected package libssl-dev:amd64.
#8 38.53 Preparing to unpack .../09-libssl-dev_3.0.15-1~deb12u1_amd64.deb ...
#8 38.53 Unpacking libssl-dev:amd64 (3.0.15-1~deb12u1) ...
#8 38.80 Selecting previously unselected package unzip.
#8 38.80 Preparing to unpack .../10-unzip_6.0-28_amd64.deb ...
#8 38.80 Unpacking unzip (6.0-28) ...
#8 38.85 Selecting previously unselected package zlib1g-dev:amd64.
#8 38.85 Preparing to unpack .../11-zlib1g-dev_1%3a1.2.13.dfsg-1_amd64.deb ...
#8 38.85 Unpacking zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
#8 38.91 Setting up libpcre16-3:amd64 (2:8.39-15) ...
#8 38.91 Setting up unzip (6.0-28) ...
#8 38.92 Setting up libpcre2-16-0:amd64 (10.42-1) ...
#8 38.92 Setting up libpcre3:amd64 (2:8.39-15) ...
#8 38.93 Setting up libpcre2-32-0:amd64 (10.42-1) ...
#8 38.93 Setting up libssl-dev:amd64 (3.0.15-1~deb12u1) ...
#8 38.94 Setting up libpcre32-3:amd64 (2:8.39-15) ...
#8 38.95 Setting up zlib1g-dev:amd64 (1:1.2.13.dfsg-1) ...
#8 38.95 Setting up libpcre2-posix3:amd64 (10.42-1) ...
#8 38.96 Setting up libpcrecpp0v5:amd64 (2:8.39-15) ...
#8 38.96 Setting up libpcre2-dev:amd64 (10.42-1) ...
#8 38.97 Setting up libpcre3-dev:amd64 (2:8.39-15) ...
#8 38.97 Processing triggers for man-db (2.11.2-2) ...
#8 38.98 Processing triggers for libc-bin (2.36-9+deb12u10) ...
#8 39.02 build_module.sh: WARNING: Removed illegal characters from module nickname - using "ngxwaf"
#8 39.02 build_module.sh: INFO: Creating /tmp/build_module.sh.2286 build area
#8 39.03 build_module.sh: INFO Downloading module source
#8 39.03 --2025-04-30 05:23:03--  https://github.com/ADD-SP/ngx_waf/archive/refs/tags/v6.1.10.tar.gz
#8 39.05 Resolving github.com (github.com)... 20.205.243.166
#8 39.05 Connecting to github.com (github.com)|20.205.243.166|:443... connected.
#8 39.10 HTTP request sent, awaiting response... 302 Found
#8 39.39 Location: https://codeload.github.com/ADD-SP/ngx_waf/tar.gz/refs/tags/v6.1.10 [following]
#8 39.39 --2025-04-30 05:23:03--  https://codeload.github.com/ADD-SP/ngx_waf/tar.gz/refs/tags/v6.1.10
#8 39.39 Resolving codeload.github.com (codeload.github.com)... 20.205.243.165
#8 39.40 Connecting to codeload.github.com (codeload.github.com)|20.205.243.165|:443... connected.
#8 39.45 HTTP request sent, awaiting response... 200 OK
#8 39.75 Length: unspecified [application/x-gzip]
#8 39.75 Saving to: '/tmp/build_module.sh.2286/module.tgz'
#8 39.75 
#8 39.75      0K .......... .......... .......... .......... .......... 11.1M
#8 39.76     50K .......... .......... .......... .......... ...        19.6M=0.007s
#8 39.76 
#8 39.76 2025-04-30 05:23:04 (13.9 MB/s) - '/tmp/build_module.sh.2286/module.tgz' saved [95917]
#8 39.76 
#8 39.78 /pkg-oss
#8 39.80 build_module.sh: INFO: Downloading NGINX packaging tool
#8 39.80 Cloning into 'pkg-oss'...
#8 42.06 Note: switching to '1.27.5-1'.
#8 42.06 
#8 42.06 You are in 'detached HEAD' state. You can look around, make experimental
#8 42.06 changes and commit them, and you can discard any commits you make in this
#8 42.06 state without impacting any branches by switching back to a branch.
#8 42.06 
#8 42.06 If you want to create a new branch to retain commits you create, you may
#8 42.06 do so (now or later) by using -c with the switch command. Example:
#8 42.06 
#8 42.06   git switch -c <new-branch-name>
#8 42.06 
#8 42.06 Or undo this operation with:
#8 42.06 
#8 42.06   git switch -
#8 42.06 
#8 42.06 Turn off this advice by setting config variable advice.detachedHead to false
#8 42.06 
#8 42.06 HEAD is now at 45a3cf7 Updated nginx to 1.27.5.
#8 42.07 build_module.sh: INFO: Archiving module source for 1.27.5
#8 42.08 /tmp/build_module.sh.2286/pkg-oss/debian
#8 42.08 build_module.sh: INFO: Creating changelog
#8 42.09 build_module.sh: INFO: Creating module Makefile
#8 42.10 build_module.sh: INFO: Building
#8 42.11 cd /tmp/build_module.sh.2286/pkg-oss/contrib && make .sum-nginx
#8 42.11 make[1]: Entering directory '/tmp/build_module.sh.2286/pkg-oss/contrib'
#8 42.17 curl -f -L -- "https://packages.nginx.org/contrib/nginx/nginx-1.27.5.tar.gz" > "/tmp/build_module.sh.2286/pkg-oss/contrib//tarballs/nginx-1.27.5.tar.gz" || ( curl -f -L -- "https://nginx.org/download/nginx-1.27.5.tar.gz" > "/tmp/build_module.sh.2286/pkg-oss/contrib//tarballs/nginx-1.27.5.tar.gz" && echo "Please upload nginx-1.27.5.tar.gz to https://packages.nginx.org/contrib" && echo "mkdir -p contrib/nginx; cd contrib/nginx && curl -f -L -- \"https://nginx.org/download/nginx-1.27.5.tar.gz\" > \"nginx-1.27.5.tar.gz\" && cd ../.." )
#8 42.19   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
#8 42.19                                  Dload  Upload   Total   Spent    Left  Speed
100 1249k  100 1249k    0     0   458k      0  0:00:02  0:00:02 --:--:--  458k
#8 44.91 grep -- " nginx-1.27.5.tar.gz$" "/tmp/build_module.sh.2286/pkg-oss/contrib//src/nginx/SHA512SUMS" | (cd /tmp/build_module.sh.2286/pkg-oss/contrib//tarballs && sha512sum -c -)
#8 44.92 nginx-1.27.5.tar.gz: OK
#8 44.92 touch .sum-nginx
#8 44.93 make[1]: Leaving directory '/tmp/build_module.sh.2286/pkg-oss/contrib'
#8 44.93 ln -s /tmp/build_module.sh.2286/pkg-oss/contrib/tarballs/nginx-1.27.5.tar.gz nginx-1.27.5.tar.gz
#8 44.93 ===> Generating nginx-module-ngxwaf.deb-changelog
#8 44.94 make[1]: Entering directory '/tmp/build_module.sh.2286/pkg-oss/docs'
#8 44.94 cd /tmp/build_module.sh.2286/pkg-oss/contrib && make .xslscript
#8 44.94 make[2]: Entering directory '/tmp/build_module.sh.2286/pkg-oss/contrib'
#8 45.00 curl -f -L -- "https://packages.nginx.org/contrib/xslscript/xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz" > "/tmp/build_module.sh.2286/pkg-oss/contrib//tarballs/xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz" || ( curl -f -L -- "https://github.com/nginx/xslscript/archive/9204424259c343ca08a18a78915f40f28025e093.tar.gz" > "/tmp/build_module.sh.2286/pkg-oss/contrib//tarballs/xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz" && echo "Please upload xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz to https://packages.nginx.org/contrib" && echo "mkdir -p contrib/xslscript; cd contrib/xslscript && curl -f -L -- \"https://github.com/nginx/xslscript/archive/9204424259c343ca08a18a78915f40f28025e093.tar.gz\" > \"xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz\" && cd ../.." )
#8 45.01   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
#8 45.01                                  Dload  Upload   Total   Spent    Left  Speed
100  6651  100  6651    0     0   6970      0 --:--:-- --:--:-- --:--:--  6971
#8 45.97 grep -- " xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz$" "/tmp/build_module.sh.2286/pkg-oss/contrib//src/xslscript/SHA512SUMS" | (cd /tmp/build_module.sh.2286/pkg-oss/contrib//tarballs && sha512sum -c -)
#8 45.98 xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz: OK
#8 45.98 touch .sum-xslscript
#8 45.98 rm -f -R xslscript  && tar xvzfo /tmp/build_module.sh.2286/pkg-oss/contrib//tarballs/xslscript-9204424259c343ca08a18a78915f40f28025e093.tar.gz   
#8 45.99 xslscript-9204424259c343ca08a18a78915f40f28025e093/
#8 45.99 xslscript-9204424259c343ca08a18a78915f40f28025e093/LICENSE
#8 45.99 xslscript-9204424259c343ca08a18a78915f40f28025e093/README
#8 45.99 xslscript-9204424259c343ca08a18a78915f40f28025e093/xslscript.pl
#8 45.99 mv xslscript-9204424259c343ca08a18a78915f40f28025e093 xslscript && touch xslscript
#8 45.99 cd xslscript && chmod +x ./xslscript.pl
#8 46.00 touch .xslscript
#8 46.00 make[2]: Leaving directory '/tmp/build_module.sh.2286/pkg-oss/contrib'
#8 46.00 mkdir -p /tmp/build_module.sh.2286/pkg-oss/debian
#8 46.00 xmllint --noout --valid nginx-module-ngxwaf.xml
#8 46.01 xsltproc --stringparam pkgname nginx-module-ngxwaf --stringparam format deb    \
#8 46.01        --stringparam versionmask 1             \
#8 46.01        -o /tmp/build_module.sh.2286/pkg-oss/debian/nginx-module-ngxwaf.deb-changelog changes.xslt nginx-module-ngxwaf.xml
#8 46.01 make[1]: Leaving directory '/tmp/build_module.sh.2286/pkg-oss/docs'
#8 46.02 touch .deps-module-ngxwaf
#8 46.17 ===> Creating rules-module-ngxwaf
#8 46.27 ngxwaf-1.27.5/
#8 46.27 ngxwaf-1.27.5/inc/
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_vm.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_ip_trie.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_check.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_type.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_util.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_mem_pool.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_core.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_macro.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_under_attack.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_config.h
#8 46.27 ngxwaf-1.27.5/inc/ngx_http_waf_module_lru_cache.h
#8 46.27 ngxwaf-1.27.5/Makefile
#8 46.27 ngxwaf-1.27.5/LICENSE
#8 46.27 ngxwaf-1.27.5/config
#8 46.27 ngxwaf-1.27.5/test/
#8 46.27 ngxwaf-1.27.5/test/wrk/
#8 46.27 ngxwaf-1.27.5/test/wrk/rand.lua
#8 46.27 ngxwaf-1.27.5/test/test-nginx/
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/bad-config.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/cc.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/ipv6.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/under-attack.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/args.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/uri.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/cache.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/mode.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/user-agent.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/disable.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/post.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/var.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/referer.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/ipv4.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/template/cookie.t
#8 46.27 ngxwaf-1.27.5/test/test-nginx/t/
#8 46.27 ngxwaf-1.27.5/test/test-nginx/t/.gitkeep
#8 46.27 ngxwaf-1.27.5/test/test-nginx/start.sh
#8 46.27 ngxwaf-1.27.5/test/test-nginx/init.sh
#8 46.27 ngxwaf-1.27.5/.github/
#8 46.27 ngxwaf-1.27.5/.github/stale.yml
#8 46.27 ngxwaf-1.27.5/.github/ISSUE_TEMPLATE/
#8 46.27 ngxwaf-1.27.5/.github/ISSUE_TEMPLATE/bug_report-zh-cn.md
#8 46.27 ngxwaf-1.27.5/.github/ISSUE_TEMPLATE/bug_report.md
#8 46.27 ngxwaf-1.27.5/.github/workflows/
#8 46.27 ngxwaf-1.27.5/.github/workflows/test.yml
#8 46.27 ngxwaf-1.27.5/src/
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_ip_trie.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_mem_pool.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_core.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_util.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_config.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_vm.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_check.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_under_attack.c
#8 46.27 ngxwaf-1.27.5/src/ngx_http_waf_module_lru_cache.c
#8 46.28 ngxwaf-1.27.5/README.md
#8 46.28 ngxwaf-1.27.5/assets/
#8 46.28 ngxwaf-1.27.5/assets/under-attack.html
#8 46.28 ngxwaf-1.27.5/assets/versioning.drawio
#8 46.28 ngxwaf-1.27.5/assets/rules/
#8 46.28 ngxwaf-1.27.5/assets/rules/white-ipv6
#8 46.28 ngxwaf-1.27.5/assets/rules/args
#8 46.28 ngxwaf-1.27.5/assets/rules/white-referer
#8 46.28 ngxwaf-1.27.5/assets/rules/user-agent
#8 46.28 ngxwaf-1.27.5/assets/rules/white-ipv4
#8 46.28 ngxwaf-1.27.5/assets/rules/white-url
#8 46.28 ngxwaf-1.27.5/assets/rules/ipv6
#8 46.28 ngxwaf-1.27.5/assets/rules/cookie
#8 46.28 ngxwaf-1.27.5/assets/rules/advanced
#8 46.28 ngxwaf-1.27.5/assets/rules/post
#8 46.28 ngxwaf-1.27.5/assets/rules/ipv4
#8 46.28 ngxwaf-1.27.5/assets/rules/referer
#8 46.28 ngxwaf-1.27.5/assets/rules/url
#8 46.28 ngxwaf-1.27.5/assets/logo.png
#8 46.28 ngxwaf-1.27.5/flex/
#8 46.28 ngxwaf-1.27.5/flex/lexer.lex
#8 46.28 ngxwaf-1.27.5/CHANGES-ZH-CN.md
#8 46.28 ngxwaf-1.27.5/bison/
#8 46.28 ngxwaf-1.27.5/bison/parser.yacc
#8 46.28 ngxwaf-1.27.5/README-ZH-CN.md
#8 46.28 ngxwaf-1.27.5/CHANGES.md
#8 46.28 ngxwaf-1.27.5/.gitignore
#8 47.25 ===> Building nginx-module-ngxwaf package
#8 47.38  dpkg-buildpackage -us -uc -ui
#8 47.51 dpkg-buildpackage: info: source package nginx-module-ngxwaf
#8 47.51 dpkg-buildpackage: info: source version 1.27.5+1.0-1~bookworm
#8 47.51 dpkg-buildpackage: info: source distribution bookworm
#8 47.51 dpkg-buildpackage: info: source changed by Build Script <[email protected]>
#8 47.54  dpkg-source --before-build .
#8 47.54 dpkg-buildpackage: info: host architecture amd64
#8 47.78  debian/rules clean
#8 47.81 dh_testdir
#8 48.35 dh_testroot
#8 48.39 dh_clean
#8 48.44 rm -rf /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-*
#8 48.45 find /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5 -maxdepth 1 -size 0 -delete
#8 48.45  dpkg-source -b .
#8 48.64 dpkg-source: info: using source format '3.0 (quilt)'
#8 48.64 dpkg-source: info: building nginx-module-ngxwaf using existing ./nginx-module-ngxwaf_1.27.5+1.0.orig.tar.gz
#8 48.85 dpkg-source: info: building nginx-module-ngxwaf in nginx-module-ngxwaf_1.27.5+1.0-1~bookworm.debian.tar.xz
#8 48.99 dpkg-source: info: building nginx-module-ngxwaf in nginx-module-ngxwaf_1.27.5+1.0-1~bookworm.dsc
#8 48.99  debian/rules build
#8 49.03 dh_testdir
#8 49.56 mkdir -p /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx
#8 49.57 cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/auto /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/
#8 49.58 cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/conf /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/
#8 49.58 if ! test -e /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/configure ; then ln -s /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/auto/configure /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/configure ; fi
#8 49.58 cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/configure /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/
#8 49.58 cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/contrib /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/
#8 49.59 if test -e /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/man ; then  cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/man /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/ ; fi
#8 49.59 if test -e /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/docs ; then cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/docs /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/ ; fi
#8 49.59 cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/src /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/
#8 49.66 if test -d /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/extra ; then  cp -Pa /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/extra /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx/ ; fi
#8 49.67 touch config.env.nginx
#8 49.67 dh_testdir
#8 49.75 touch config.pre.nginx
#8 49.75 cd /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx && \
#8 49.75 CFLAGS=""  ./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/run/nginx.pid --lock-path=/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-http_v3_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --add-dynamic-module=extra/ngxwaf-1.27.5 --with-cc-opt="-g -O2 -ffile-prefix-map=/tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5=. -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC " --with-ld-opt="-Wl,-z,relro -Wl,-z,now -Wl,--as-needed "
#8 49.94 checking for OS
#8 49.95  + Linux 3.10.0-1160.119.1.el7.x86_64 x86_64
#8 49.95 checking for C compiler ... found
#8 50.05  + using GNU C compiler
#8 50.06  + gcc version: 12.2.0 (Debian 12.2.0-14) 
#8 50.06 checking for gcc -pipe switch ... found
#8 50.13 checking for --with-ld-opt="-Wl,-z,relro -Wl,-z,now -Wl,--as-needed " ... found
#8 50.21 checking for -Wl,-E switch ... found
#8 50.29 checking for gcc builtin atomic operations ... found
#8 50.39 checking for C99 variadic macros ... found
#8 50.49 checking for gcc variadic macros ... found
#8 50.59 checking for gcc builtin 64 bit byteswap ... found
#8 50.67 checking for unistd.h ... found
#8 50.76 checking for inttypes.h ... found
#8 50.83 checking for limits.h ... found
#8 50.91 checking for sys/filio.h ... not found
#8 50.93 checking for sys/param.h ... found
#8 51.02 checking for sys/mount.h ... found
#8 51.11 checking for sys/statvfs.h ... found
#8 51.20 checking for crypt.h ... found
#8 51.28 checking for Linux specific features
#8 51.29 checking for epoll ... found
#8 51.40 checking for EPOLLRDHUP ... found
#8 51.50 checking for EPOLLEXCLUSIVE ... found
#8 51.59 checking for eventfd() ... found
#8 51.69 checking for O_PATH ... found
#8 51.80 checking for sendfile() ... found
#8 51.90 checking for sendfile64() ... found
#8 52.00 checking for sys/prctl.h ... found
#8 52.09 checking for prctl(PR_SET_DUMPABLE) ... found
#8 52.19 checking for prctl(PR_SET_KEEPCAPS) ... found
#8 52.29 checking for capabilities ... found
#8 52.39 checking for crypt_r() ... found
#8 52.49 checking for sys/vfs.h ... found
#8 52.58 checking for BPF sockhash ... found
#8 52.69 checking for SO_COOKIE ... found
#8 52.80 checking for UDP_SEGMENT ... found
#8 52.90 checking for poll() ... found
#8 53.01 checking for /dev/poll ... not found
#8 53.05 checking for kqueue ... not found
#8 53.08 checking for crypt() ... not found
#8 53.18 checking for crypt() in libcrypt ... found
#8 53.28 checking for F_READAHEAD ... not found
#8 53.32 checking for posix_fadvise() ... found
#8 53.42 checking for O_DIRECT ... found
#8 53.51 checking for F_NOCACHE ... not found
#8 53.56 checking for directio() ... not found
#8 53.60 checking for statfs() ... found
#8 53.71 checking for statvfs() ... found
#8 53.81 checking for dlopen() ... found
#8 53.91 checking for sched_yield() ... found
#8 54.01 checking for sched_setaffinity() ... found
#8 54.11 checking for SO_SETFIB ... not found
#8 54.15 checking for SO_REUSEPORT ... found
#8 54.25 checking for SO_ACCEPTFILTER ... not found
#8 54.29 checking for SO_BINDANY ... not found
#8 54.34 checking for IP_TRANSPARENT ... found
#8 54.45 checking for IP_BINDANY ... not found
#8 54.49 checking for IP_BIND_ADDRESS_NO_PORT ... found
#8 54.60 checking for IP_RECVDSTADDR ... not found
#8 54.64 checking for IP_SENDSRCADDR ... not found
#8 54.72 checking for IP_PKTINFO ... found
#8 54.82 checking for IPV6_RECVPKTINFO ... found
#8 54.92 checking for IP_MTU_DISCOVER ... found
#8 55.03 checking for IPV6_MTU_DISCOVER ... found
#8 55.13 checking for IP_DONTFRAG ... not found
#8 55.18 checking for IPV6_DONTFRAG ... found
#8 55.28 checking for TCP_DEFER_ACCEPT ... found
#8 55.40 checking for TCP_KEEPIDLE ... found
#8 55.50 checking for TCP_FASTOPEN ... found
#8 55.61 checking for TCP_INFO ... found
#8 55.71 checking for accept4() ... found
#8 55.81 checking for kqueue AIO support ... not found
#8 55.85 checking for Linux AIO support ... found
#8 55.96 checking for int size ... 4 bytes
#8 56.07 checking for long size ... 8 bytes
#8 56.18 checking for long long size ... 8 bytes
#8 56.28 checking for void * size ... 8 bytes
#8 56.40 checking for uint32_t ... found
#8 56.50 checking for uint64_t ... found
#8 56.61 checking for sig_atomic_t ... found
#8 56.72 checking for sig_atomic_t size ... 4 bytes
#8 56.82 checking for socklen_t ... found
#8 56.93 checking for in_addr_t ... found
#8 57.04 checking for in_port_t ... found
#8 57.14 checking for rlim_t ... found
#8 57.25 checking for uintptr_t ... uintptr_t found
#8 57.32 checking for system byte ordering ... little endian
#8 57.40 checking for size_t size ... 8 bytes
#8 57.53 checking for off_t size ... 8 bytes
#8 57.64 checking for time_t size ... 8 bytes
#8 57.75 checking for AF_INET6 ... found
#8 57.85 checking for setproctitle() ... not found
#8 57.96 checking for pread() ... found
#8 58.06 checking for pwrite() ... found
#8 58.16 checking for pwritev() ... found
#8 58.26 checking for strerrordesc_np() ... found
#8 58.36 checking for localtime_r() ... found
#8 58.46 checking for clock_gettime(CLOCK_MONOTONIC) ... found
#8 58.56 checking for posix_memalign() ... found
#8 58.67 checking for memalign() ... found
#8 58.78 checking for mmap(MAP_ANON|MAP_SHARED) ... found
#8 58.88 checking for mmap("/dev/zero", MAP_SHARED) ... found
#8 58.98 checking for System V shared memory ... found
#8 59.08 checking for POSIX semaphores ... found
#8 59.19 checking for struct msghdr.msg_control ... found
#8 59.30 checking for ioctl(FIONBIO) ... found
#8 59.42 checking for ioctl(FIONREAD) ... found
#8 59.52 checking for struct tm.tm_gmtoff ... found
#8 59.63 checking for struct dirent.d_namlen ... not found
#8 59.68 checking for struct dirent.d_type ... found
#8 59.78 checking for sysconf(_SC_NPROCESSORS_ONLN) ... found
#8 59.88 checking for sysconf(_SC_LEVEL1_DCACHE_LINESIZE) ... found
#8 59.98 checking for openat(), fstatat() ... found
#8 60.08 checking for getaddrinfo() ... found
#8 60.23 configuring additional dynamic modules
#8 60.23 adding module in extra/ngxwaf-1.27.5
#8 60.23 /usr/bin/flex
#8 60.23 /usr/bin/bison
#8 60.23 
#8 60.23 ./configure: error: the ngx_http_waf_module module requires the following command to be run to generate the necessary files.
#8 60.23 
#8 60.23     cd extra/ngxwaf-1.27.5 && make && cd /tmp/build_module.sh.2286/pkg-oss/debian/debuild-module-ngxwaf/nginx-1.27.5/debian/build-nginx
#8 60.23 
#8 60.25 make: *** [debian/rules:68: config.status.nginx] Error 1
#8 60.25 dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2
#8 60.25 debuild: fatal error at line 1182:
#8 60.25 dpkg-buildpackage -us -uc -ui failed
#8 60.25 real 13.00
#8 60.25 user 8.39
#8 60.25 sys 4.45
#8 60.25 make: *** [Makefile:211: module-ngxwaf] Error 29
#8 60.25 build_module.sh: ERROR: Build failed
#8 60.25 ++ echo ngx_waf
#8 60.26 ++ tr '[A-Z]' '[a-z]'
#8 60.26 ++ tr -d '[/_\-\.\t ]'
#8 60.26 + BUILT_MODULES=' ngxwaf'
#8 60.26 + echo 'BUILT_MODULES=" ngxwaf"'
#8 DONE 60.4s

#9 [stage-1 2/2] RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder     apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_1.27.5*.deb;        done     && rm -rf /var/lib/apt/lists/
#9 0.264 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
#9 0.280 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
#9 0.280 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
#9 0.370 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB]
#9 0.518 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [512 B]
#9 0.638 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [257 kB]
#9 1.669 Fetched 9305 kB in 1s (6557 kB/s)
#9 1.669 Reading package lists...
#9 2.435 Reading package lists...
#9 3.173 E: Unsupported file /tmp/packages/nginx-module-ngxwaf_1.27.5*.deb given on commandline
#9 ERROR: process "/bin/sh -c apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb;        done     && rm -rf /var/lib/apt/lists/" did not complete successfully: exit code: 100
------
 > [stage-1 2/2] RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder     apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_1.27.5*.deb;        done     && rm -rf /var/lib/apt/lists/:
0.264 Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
0.280 Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
0.280 Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
0.370 Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8792 kB]
0.518 Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [512 B]
0.638 Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [257 kB]


3.173 E: Unsupported file /tmp/packages/nginx-module-ngxwaf_1.27.5*.deb given on commandline
------
Dockerfile:73
--------------------
  72 |     FROM ${NGINX_FROM_IMAGE}
  73 | >>> RUN --mount=type=bind,target=/tmp/packages/,source=/tmp/packages/,from=builder \
  74 | >>>     apt-get update \
  75 | >>>     && . /tmp/packages/modules.env \
  76 | >>>     && for module in $BUILT_MODULES; do \
  77 | >>>            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb; \
  78 | >>>        done \
  79 | >>>     && rm -rf /var/lib/apt/lists/
  80 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c apt-get update     && . /tmp/packages/modules.env     && for module in $BUILT_MODULES; do            apt-get install --no-install-suggests --no-install-recommends -y /tmp/packages/nginx-module-${module}_${NGINX_VERSION}*.deb;        done     && rm -rf /var/lib/apt/lists/" did not complete successfully: exit code: 100

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants