Your message dated Sat, 23 Nov 2024 14:49:26 +0000
with message-id <e1terru-008wvd...@fasolo.debian.org>
and subject line Bug#1079834: fixed in ohcount 4.0.0-5
has caused the Debian Bug report #1079834,
regarding ohcount: FTBFS: ruby/ohcount_wrap.c:2241:34: error: passing argument 
3 of ‘rb_iterate’ from incompatible pointer type [-Wincompatible-pointer-types]
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1079834: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1079834
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ohcount
Version: 4.0.0-4
Severity: serious
Justification: FTBFS
Tags: bookworm sid ftbfs

Hi,

Your package fails to build on amd64. This seems caused by gcc 14 being
stricter than previous versions of the compiler.  The full build log is
attached.

Relevant part (hopefully):
> gcc -fPIC -g -O3 -Wall -Wno-pointer-to-int-cast -Wno-parentheses -I -L 
> -shared ruby/ohcount_wrap.c src/sourcefile.c src/detector.c src/licenses.c 
> src/parser.o src/loc.c src/log.c src/diff.c src/parsed_language.c 
> src/hash/language_hash.c -o ruby/aarch64-linux-gnu_debian/ohcount.so 
> -I/usr/include/ruby-3.1.0 -I/usr/include/ruby-3.1.0/aarch64-linux-gnu 
> -I/usr/include/aarch64-linux-gnu/ruby-3.1.0 -lpcre2-8 -lmagic
> ruby/ohcount_wrap.c: In function ‘new_SourceFileListItem’:
> ruby/ohcount_wrap.c:2241:9: warning: ‘rb_iterate’ is deprecated: by: 
> rb_block_call since 1.9 [-Wdeprecated-declarations]
>  2241 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_directory, 
> (VALUE)list);
>       |         ^~~~~~~~~~
> In file included from /usr/include/ruby-3.1.0/ruby/ruby.h:40,
>                  from /usr/include/ruby-3.1.0/ruby.h:38,
>                  from ruby/ohcount_wrap.c:908:
> /usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:7: note: declared here
>   283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
> rb_block_call_func_t proc, VALUE data2);
>       |       ^~~~~~~~~~
> ruby/ohcount_wrap.c:2241:34: error: passing argument 3 of ‘rb_iterate’ from 
> incompatible pointer type [-Wincompatible-pointer-types]
>  2241 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_directory, 
> (VALUE)list);
>       |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>       |                                  |
>       |                                  VALUE (*)(VALUE,  SourceFileList *) 
> {aka long unsigned int (*)(long unsigned int,  struct SourceFileListItem *)}
> /usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:75: note: expected 
> ‘rb_block_call_func_t’ {aka ‘long unsigned int (*)(long unsigned int,  long 
> unsigned int,  int,  const long unsigned int *, long unsigned int)’} but 
> argument is of type ‘VALUE (*)(VALUE,  SourceFileList *)’ {aka ‘long unsigned 
> int (*)(long unsigned int,  struct SourceFileListItem *)’}
>   283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
> rb_block_call_func_t proc, VALUE data2);
>       |                                                      
> ~~~~~~~~~~~~~~~~~~~~~^~~~
> ruby/ohcount_wrap.c:2244:9: warning: ‘rb_iterate’ is deprecated: by: 
> rb_block_call since 1.9 [-Wdeprecated-declarations]
>  2244 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_file, 
> (VALUE)list);
>       |         ^~~~~~~~~~
> /usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:7: note: declared here
>   283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
> rb_block_call_func_t proc, VALUE data2);
>       |       ^~~~~~~~~~
> ruby/ohcount_wrap.c:2244:34: error: passing argument 3 of ‘rb_iterate’ from 
> incompatible pointer type [-Wincompatible-pointer-types]
>  2244 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_file, 
> (VALUE)list);
>       |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>       |                                  |
>       |                                  VALUE (*)(VALUE,  SourceFileList *) 
> {aka long unsigned int (*)(long unsigned int,  struct SourceFileListItem *)}
> /usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:75: note: expected 
> ‘rb_block_call_func_t’ {aka ‘long unsigned int (*)(long unsigned int,  long 
> unsigned int,  int,  const long unsigned int *, long unsigned int)’} but 
> argument is of type ‘VALUE (*)(VALUE,  SourceFileList *)’ {aka ‘long unsigned 
> int (*)(long unsigned int,  struct SourceFileListItem *)’}
>   283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
> rb_block_call_func_t proc, VALUE data2);
>       |                                                      
> ~~~~~~~~~~~~~~~~~~~~~^~~~
> src/sourcefile.c: In function ‘ohcount_sourcefile_new’:
> src/sourcefile.c:27:3: warning: ‘strncpy’ output truncated before terminating 
> nul copying as many bytes from a string as its length [-Wstringop-truncation]
>    27 |   strncpy(sourcefile->filepath, filepath, length);
>       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/sourcefile.c:25:16: note: length computed here
>    25 |   int length = strlen(filepath);
>       |                ^~~~~~~~~~~~~~~~
> src/sourcefile.c: In function ‘ohcount_sourcefile_set_diskpath’:
> src/sourcefile.c:67:3: warning: ‘strncpy’ output truncated before terminating 
> nul copying as many bytes from a string as its length [-Wstringop-truncation]
>    67 |   strncpy(sourcefile->diskpath, diskpath, size);
>       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/sourcefile.c:65:14: note: length computed here
>    65 |   int size = strlen(diskpath);
>       |              ^~~~~~~~~~~~~~~~
> src/sourcefile.c: In function ‘ohcount_sourcefile_set_contents’:
> src/sourcefile.c:77:3: warning: ‘strncpy’ output truncated before terminating 
> nul copying as many bytes from a string as its length [-Wstringop-truncation]
>    77 |   strncpy(sourcefile->contents, contents, size);
>       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/sourcefile.c:75:14: note: length computed here
>    75 |   int size = strlen(contents);
>       |              ^~~~~~~~~~~~~~~~
> src/sourcefile.c: In function ‘ohcount_sourcefile_list_add_directory’:
> src/sourcefile.c:373:3: warning: ‘strncpy’ output truncated before 
> terminating nul copying as many bytes from a string as its length 
> [-Wstringop-truncation]
>   373 |   strncpy(filepath, directory, strlen(directory));
>       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/sourcefile.c:373:3: note: length computed here
>   373 |   strncpy(filepath, directory, strlen(directory));
>       |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/sourcefile.c:384:7: warning: ‘strncpy’ specified bound depends on the 
> length of the source argument [-Wstringop-truncation]
>   384 |       strncpy(f_p, (const char *)file->d_name, length);
>       |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/sourcefile.c:383:20: note: length computed here
>   383 |       int length = strlen(file->d_name);
>       |                    ^~~~~~~~~~~~~~~~~~~~
> src/detector.c: In function ‘ohcount_is_binary_filename’:
> src/detector.c:1090:5: warning: ‘strncpy’ output truncated before terminating 
> nul copying as many bytes from a string as its length [-Wstringop-truncation]
>  1090 |     strncpy(lowerext, p, length);
>       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
> src/detector.c:1085:18: note: length computed here
>  1085 |     int length = strlen(p);
>       |                  ^~~~~~~~~
> make[1]: *** [debian/rules:12: override_dh_install] Error 1
sbuild (Debian sbuild) 0.85.10 (30 May 2024) on ava

+==============================================================================+
| ohcount (arm64)                              Tue, 27 Aug 2024 23:58:19 +0000 |
+==============================================================================+

Package: ohcount
Distribution: unstable
Machine Architecture: arm64
Host Architecture: arm64
Build Architecture: arm64
Build Type: full

I: NOTICE: Log filtering will replace 
'var/run/schroot/mount/unstable-arm64-sbuild-dceb5875-6530-4243-98f7-bee36fe168bd'
 with '<<CHROOT>>'
I: NOTICE: Log filtering will replace 'build/ohcount-TecPp2/resolver-O0WYvR' 
with '<<RESOLVERDIR>>'

+------------------------------------------------------------------------------+
| Update chroot                                                                |
+------------------------------------------------------------------------------+

Get:1 http://deb.debian.org/debian unstable InRelease [198 kB]
Get:2 http://deb.debian.org/debian experimental InRelease [101 kB]
Get:3 http://deb.debian.org/debian unstable/main Sources.diff/Index [63.6 kB]
Get:4 http://deb.debian.org/debian unstable/main arm64 Packages.diff/Index 
[63.6 kB]
Get:5 http://deb.debian.org/debian experimental/main arm64 Packages.diff/Index 
[63.3 kB]
Get:6 http://deb.debian.org/debian unstable/main Sources 
T-2024-08-27-2018.07-F-2024-08-26-0204.27.pdiff [96.0 kB]
Get:7 http://deb.debian.org/debian unstable/main arm64 Packages 
T-2024-08-27-2018.07-F-2024-08-26-0204.27.pdiff [102 kB]
Get:6 http://deb.debian.org/debian unstable/main Sources 
T-2024-08-27-2018.07-F-2024-08-26-0204.27.pdiff [96.0 kB]
Get:7 http://deb.debian.org/debian unstable/main arm64 Packages 
T-2024-08-27-2018.07-F-2024-08-26-0204.27.pdiff [102 kB]
Get:8 http://deb.debian.org/debian experimental/main arm64 Packages 
T-2024-08-27-2018.07-F-2024-08-26-0204.27.pdiff [45.2 kB]
Get:8 http://deb.debian.org/debian experimental/main arm64 Packages 
T-2024-08-27-2018.07-F-2024-08-26-0204.27.pdiff [45.2 kB]
Fetched 733 kB in 9s (82.7 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
  libc-bin libc-dev-bin libc6 libc6-dev
4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 4601 kB of archives.
After this operation, 513 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian unstable/main arm64 libc6-dev arm64 2.40-2 
[1575 kB]
Get:2 http://deb.debian.org/debian unstable/main arm64 libc-dev-bin arm64 
2.40-2 [50.9 kB]
Get:3 http://deb.debian.org/debian unstable/main arm64 libc6 arm64 2.40-2 [2443 
kB]
Get:4 http://deb.debian.org/debian unstable/main arm64 libc-bin arm64 2.40-2 
[532 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 4601 kB in 0s (54.7 MB/s)
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 11901 files and directories currently installed.)
Preparing to unpack .../libc6-dev_2.40-2_arm64.deb ...
Unpacking libc6-dev:arm64 (2.40-2) over (2.39-7) ...
Preparing to unpack .../libc-dev-bin_2.40-2_arm64.deb ...
Unpacking libc-dev-bin (2.40-2) over (2.39-7) ...
Preparing to unpack .../libc6_2.40-2_arm64.deb ...
Unpacking libc6:arm64 (2.40-2) over (2.39-7) ...
Setting up libc6:arm64 (2.40-2) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 11901 files and directories currently installed.)
Preparing to unpack .../libc-bin_2.40-2_arm64.deb ...
Unpacking libc-bin (2.40-2) over (2.39-7) ...
Setting up libc-bin (2.40-2) ...
Setting up libc-dev-bin (2.40-2) ...
Setting up libc6-dev:arm64 (2.40-2) ...

+------------------------------------------------------------------------------+
| Fetch source files                                                           |
+------------------------------------------------------------------------------+


Check APT
---------

Checking available source versions...

Download source files with APT
------------------------------

Reading package lists...
NOTICE: 'ohcount' packaging is maintained in the 'Git' version control system 
at:
https://salsa.debian.org/debian/ohcount.git
Please use:
git clone https://salsa.debian.org/debian/ohcount.git
to retrieve the latest (possibly unreleased) updates to the package.
Need to get 1317 kB of source archives.
Get:1 http://deb.debian.org/debian unstable/main ohcount 4.0.0-4 (dsc) [2009 B]
Get:2 http://deb.debian.org/debian unstable/main ohcount 4.0.0-4 (tar) [1301 kB]
Get:3 http://deb.debian.org/debian unstable/main ohcount 4.0.0-4 (diff) [14.3 
kB]
Fetched 1317 kB in 6s (235 kB/s)
Download complete and in download only mode
I: NOTICE: Log filtering will replace 'build/ohcount-TecPp2/ohcount-4.0.0' with 
'<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/ohcount-TecPp2' with '<<BUILDDIR>>'

+------------------------------------------------------------------------------+
| Install package build dependencies                                           |
+------------------------------------------------------------------------------+


Setup apt archive
-----------------

Merged Build-Depends: debhelper-compat (= 13), libpcre2-dev, gem2deb, rake, 
ragel (>= 6.3), ruby-diff-lcs, doxygen, gperf, file, libmagic-dev, swig, 
build-essential, fakeroot
Filtered Build-Depends: debhelper-compat (= 13), libpcre2-dev, gem2deb, rake, 
ragel (>= 6.3), ruby-diff-lcs, doxygen, gperf, file, libmagic-dev, swig, 
build-essential, fakeroot
dpkg-deb: building package 'sbuild-build-depends-main-dummy' in 
'/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-main-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [609 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [719 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [751 B]
Fetched 2079 B in 0s (188 kB/s)
Reading package lists...
Reading package lists...

Install main build dependencies (apt-based resolver)
----------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  adduser autoconf automake autopoint autotools-dev bsdextrautils
  ca-certificates debhelper devscripts dh-autoreconf dh-strip-nondeterminism
  dirmngr doxygen dwz file gem2deb gem2deb-test-runner gettext gettext-base
  gnupg gnupg-l10n gperf gpg gpg-agent gpgconf gpgsm groff-base
  intltool-debian libarchive-zip-perl libassuan0 libb-hooks-op-check-perl
  libbsd0 libclang-cpp16t64 libclang1-16t64 libclass-method-modifiers-perl
  libclass-xsaccessor-perl libclone-perl libcom-err2 libdebhelper-perl
  libdevel-callchecker-perl libdynaloader-functions-perl libedit2 libelf1t64
  libencode-locale-perl libexpat1 libfile-dirlist-perl libfile-homedir-perl
  libfile-listing-perl libfile-stripnondeterminism-perl libfile-touch-perl
  libfile-which-perl libfmt9 libgmp-dev libgmpxx4ldbl libgssapi-krb5-2
  libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
  libhttp-cookies-perl libhttp-date-perl libhttp-message-perl
  libhttp-negotiate-perl libicu72 libimport-into-perl libio-html-perl
  libio-pty-perl libio-socket-ssl-perl libipc-run-perl libk5crypto3
  libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap-2.5-0 libllvm16t64
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic-dev libmagic-mgc
  libmagic1t64 libmodule-runtime-perl libmoo-perl libncurses6 libncursesw6
  libnet-http-perl libnet-ssleay-perl libnpth0t64 libnsl2
  libparams-classify-perl libpcre2-16-0 libpcre2-32-0 libpcre2-dev
  libpcre2-posix3 libpipeline1 libpython3-stdlib libpython3.12-minimal
  libpython3.12-stdlib libreadline8t64 librole-tiny-perl libruby libruby3.1t64
  libsasl2-2 libsasl2-modules-db libsemanage-common libsemanage2 libsepol2
  libsqlite3-0 libsub-quote-perl libtimedate-perl libtirpc-common libtirpc3t64
  libtool libtry-tiny-perl libuchardet0 liburi-perl libwww-perl
  libwww-robotrules-perl libxapian30 libxml2 libyaml-0-2 libz3-4 login.defs m4
  man-db media-types netbase openssl passwd patchutils perl-openssl-defaults
  pinentry-curses po-debconf python3 python3-minimal python3.12
  python3.12-minimal ragel rake readline-common ruby ruby-all-dev
  ruby-diff-lcs ruby-net-telnet ruby-rubygems ruby-sdbm ruby-webrick
  ruby-xmlrpc ruby3.1 ruby3.1-dev rubygems-integration sensible-utils swig
  tzdata wdiff
Suggested packages:
  liblocale-gettext-perl cron quota autoconf-archive gnu-standards
  autoconf-doc dh-make adequate at autopkgtest bls-standalone bsd-mailx
  | mailx check-all-the-things cvs-buildpackage diffoscope disorderfs
  dose-extra duck elpa-devscripts faketime gnuplot how-can-i-help
  libauthen-sasl-perl libdbd-pg-perl libfile-desktopentry-perl
  libterm-size-perl libyaml-syck-perl mmdebstrap mutt piuparts
  postgresql-client pristine-lfs quilt ratt reprotest ssh-client
  svn-buildpackage w3m dbus-user-session libpam-systemd pinentry-gnome3 tor
  doxygen-latex doxygen-doc doxygen-gui graphviz git-buildpackage pristine-tar
  gettext-doc libasprintf-dev libgettextpo-dev gpg-wks-server parcimonie
  xloadimage scdaemon groff gmp-doc libgmp10-doc libmpfr-dev krb5-doc
  krb5-user libdata-dump-perl libcrypt-ssleay-perl libscalar-number-perl
  libtool-doc gfortran | fortran95-compiler gcj-jdk libsub-name-perl
  libbusiness-isbn-perl libregexp-ipv6-perl libauthen-ntlm-perl xapian-tools
  m4-doc apparmor less www-browser pinentry-doc libmail-box-perl python3-doc
  python3-tk python3-venv python3.12-venv python3.12-doc binfmt-support
  readline-doc ri ruby-dev bundler swig-doc swig-examples wdiff-doc
Recommended packages:
  dctrl-tools dput | dupload libdistro-info-perl libgit-wrapper-perl
  libjson-perl liblist-compare-perl libstring-shellquote-perl licensecheck
  lintian python3-apt python3-debian python3-magic python3-requests
  python3-unidiff python3-xdg strace unzip wget | curl debian-keyring equivs
  libgitlab-api-v4-perl libsoap-lite-perl pristine-tar apt-file curl | wget
  | lynx gnupg-utils gpg-wks-client libarchive-cpio-perl libhtml-format-perl
  libio-compress-brotli-perl krb5-locales libldap-common
  libnamespace-clean-perl libgpm2 libsasl2-modules libxstring-perl libltdl-dev
  libdata-dump-perl libhtml-form-perl libhttp-daemon-perl libmailtools-perl
  libmail-sendmail-perl zip fonts-lato libjs-jquery ruby3.1-doc
The following NEW packages will be installed:
  adduser autoconf automake autopoint autotools-dev bsdextrautils
  ca-certificates debhelper devscripts dh-autoreconf dh-strip-nondeterminism
  dirmngr doxygen dwz file gem2deb gem2deb-test-runner gettext gettext-base
  gnupg gnupg-l10n gperf gpg gpg-agent gpgconf gpgsm groff-base
  intltool-debian libarchive-zip-perl libassuan0 libb-hooks-op-check-perl
  libbsd0 libclang-cpp16t64 libclang1-16t64 libclass-method-modifiers-perl
  libclass-xsaccessor-perl libclone-perl libcom-err2 libdebhelper-perl
  libdevel-callchecker-perl libdynaloader-functions-perl libedit2 libelf1t64
  libencode-locale-perl libexpat1 libfile-dirlist-perl libfile-homedir-perl
  libfile-listing-perl libfile-stripnondeterminism-perl libfile-touch-perl
  libfile-which-perl libfmt9 libgmp-dev libgmpxx4ldbl libgssapi-krb5-2
  libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl
  libhttp-cookies-perl libhttp-date-perl libhttp-message-perl
  libhttp-negotiate-perl libicu72 libimport-into-perl libio-html-perl
  libio-pty-perl libio-socket-ssl-perl libipc-run-perl libk5crypto3
  libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap-2.5-0 libllvm16t64
  liblwp-mediatypes-perl liblwp-protocol-https-perl libmagic-dev libmagic-mgc
  libmagic1t64 libmodule-runtime-perl libmoo-perl libncurses6 libncursesw6
  libnet-http-perl libnet-ssleay-perl libnpth0t64 libnsl2
  libparams-classify-perl libpcre2-16-0 libpcre2-32-0 libpcre2-dev
  libpcre2-posix3 libpipeline1 libpython3-stdlib libpython3.12-minimal
  libpython3.12-stdlib libreadline8t64 librole-tiny-perl libruby libruby3.1t64
  libsasl2-2 libsasl2-modules-db libsemanage-common libsemanage2 libsepol2
  libsqlite3-0 libsub-quote-perl libtimedate-perl libtirpc-common libtirpc3t64
  libtool libtry-tiny-perl libuchardet0 liburi-perl libwww-perl
  libwww-robotrules-perl libxapian30 libxml2 libyaml-0-2 libz3-4 login.defs m4
  man-db media-types netbase openssl passwd patchutils perl-openssl-defaults
  pinentry-curses po-debconf python3 python3-minimal python3.12
  python3.12-minimal ragel rake readline-common ruby ruby-all-dev
  ruby-diff-lcs ruby-net-telnet ruby-rubygems ruby-sdbm ruby-webrick
  ruby-xmlrpc ruby3.1 ruby3.1-dev rubygems-integration
  sbuild-build-depends-main-dummy sensible-utils swig tzdata wdiff
0 upgraded, 155 newly installed, 0 to remove and 0 not upgraded.
Need to get 91.7 MB/98.5 MB of archives.
After this operation, 456 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 
0.invalid.0 [948 B]
Get:2 http://deb.debian.org/debian unstable/main arm64 libexpat1 arm64 2.6.2-1 
[88.7 kB]
Get:3 http://deb.debian.org/debian unstable/main arm64 python3-minimal arm64 
3.12.5-1 [26.7 kB]
Get:4 http://deb.debian.org/debian unstable/main arm64 media-types all 10.1.0 
[26.9 kB]
Get:5 http://deb.debian.org/debian unstable/main arm64 netbase all 6.4 [12.8 kB]
Get:6 http://deb.debian.org/debian unstable/main arm64 tzdata all 2024a-4 [255 
kB]
Get:7 http://deb.debian.org/debian unstable/main arm64 libncursesw6 arm64 6.5-2 
[124 kB]
Get:8 http://deb.debian.org/debian unstable/main arm64 libkrb5support0 arm64 
1.21.3-3 [32.1 kB]
Get:9 http://deb.debian.org/debian unstable/main arm64 libcom-err2 arm64 
1.47.1-1 [22.8 kB]
Get:10 http://deb.debian.org/debian unstable/main arm64 libk5crypto3 arm64 
1.21.3-3 [80.8 kB]
Get:11 http://deb.debian.org/debian unstable/main arm64 libkeyutils1 arm64 
1.6.3-3 [9112 B]
Get:12 http://deb.debian.org/debian unstable/main arm64 libkrb5-3 arm64 
1.21.3-3 [310 kB]
Get:13 http://deb.debian.org/debian unstable/main arm64 libgssapi-krb5-2 arm64 
1.21.3-3 [126 kB]
Get:14 http://deb.debian.org/debian unstable/main arm64 libtirpc-common all 
1.3.4+ds-1.3 [10.9 kB]
Get:15 http://deb.debian.org/debian unstable/main arm64 libtirpc3t64 arm64 
1.3.4+ds-1.3 [78.4 kB]
Get:16 http://deb.debian.org/debian unstable/main arm64 libnsl2 arm64 
1.3.0-3+b2 [37.7 kB]
Get:17 http://deb.debian.org/debian unstable/main arm64 readline-common all 
8.2-5 [69.3 kB]
Get:18 http://deb.debian.org/debian unstable/main arm64 libreadline8t64 arm64 
8.2-5 [159 kB]
Get:19 http://deb.debian.org/debian unstable/main arm64 libsqlite3-0 arm64 
3.46.1-1 [852 kB]
Get:20 http://deb.debian.org/debian unstable/main arm64 libpython3-stdlib arm64 
3.12.5-1 [9588 B]
Get:21 http://deb.debian.org/debian unstable/main arm64 python3 arm64 3.12.5-1 
[27.6 kB]
Get:22 http://deb.debian.org/debian unstable/main arm64 login.defs all 
1:4.16.0-4 [185 kB]
Get:23 http://deb.debian.org/debian unstable/main arm64 libbsd0 arm64 0.12.2-1 
[129 kB]
Get:24 http://deb.debian.org/debian unstable/main arm64 libsemanage-common all 
3.7-1 [7080 B]
Get:25 http://deb.debian.org/debian unstable/main arm64 libsepol2 arm64 3.7-1 
[264 kB]
Get:26 http://deb.debian.org/debian unstable/main arm64 libsemanage2 arm64 
3.7-1 [84.0 kB]
Get:27 http://deb.debian.org/debian unstable/main arm64 passwd arm64 1:4.16.0-4 
[1210 kB]
Get:28 http://deb.debian.org/debian unstable/main arm64 adduser all 3.137 [140 
kB]
Get:29 http://deb.debian.org/debian unstable/main arm64 sensible-utils all 
0.0.24 [24.8 kB]
Get:30 http://deb.debian.org/debian unstable/main arm64 ca-certificates all 
20240203 [158 kB]
Get:31 http://deb.debian.org/debian unstable/main arm64 libmagic-mgc arm64 
1:5.45-3 [314 kB]
Get:32 http://deb.debian.org/debian unstable/main arm64 libmagic1t64 arm64 
1:5.45-3 [100 kB]
Get:33 http://deb.debian.org/debian unstable/main arm64 file arm64 1:5.45-3 
[43.0 kB]
Get:34 http://deb.debian.org/debian unstable/main arm64 gettext-base arm64 
0.22.5-2 [198 kB]
Get:35 http://deb.debian.org/debian unstable/main arm64 libuchardet0 arm64 
0.0.8-1+b1 [69.0 kB]
Get:36 http://deb.debian.org/debian unstable/main arm64 groff-base arm64 
1.23.0-5 [1129 kB]
Get:37 http://deb.debian.org/debian unstable/main arm64 bsdextrautils arm64 
2.40.2-7 [96.5 kB]
Get:38 http://deb.debian.org/debian unstable/main arm64 libpipeline1 arm64 
1.5.8-1 [40.2 kB]
Get:39 http://deb.debian.org/debian unstable/main arm64 man-db arm64 2.12.1-3 
[1397 kB]
Get:40 http://deb.debian.org/debian unstable/main arm64 m4 arm64 1.4.19-4 [277 
kB]
Get:41 http://deb.debian.org/debian unstable/main arm64 autoconf all 2.72-3 
[493 kB]
Get:42 http://deb.debian.org/debian unstable/main arm64 autotools-dev all 
20220109.1 [51.6 kB]
Get:43 http://deb.debian.org/debian unstable/main arm64 automake all 
1:1.16.5-1.3 [823 kB]
Get:44 http://deb.debian.org/debian unstable/main arm64 autopoint all 0.22.5-2 
[723 kB]
Get:45 http://deb.debian.org/debian unstable/main arm64 libdebhelper-perl all 
13.20 [89.7 kB]
Get:46 http://deb.debian.org/debian unstable/main arm64 libtool all 2.4.7-7 
[517 kB]
Get:47 http://deb.debian.org/debian unstable/main arm64 dh-autoreconf all 20 
[17.1 kB]
Get:48 http://deb.debian.org/debian unstable/main arm64 libarchive-zip-perl all 
1.68-1 [104 kB]
Get:49 http://deb.debian.org/debian unstable/main arm64 
libfile-stripnondeterminism-perl all 1.14.0-1 [19.5 kB]
Get:50 http://deb.debian.org/debian unstable/main arm64 dh-strip-nondeterminism 
all 1.14.0-1 [8448 B]
Get:51 http://deb.debian.org/debian unstable/main arm64 libelf1t64 arm64 
0.191-2 [188 kB]
Get:52 http://deb.debian.org/debian unstable/main arm64 dwz arm64 0.15-1+b1 
[102 kB]
Get:53 http://deb.debian.org/debian unstable/main arm64 libicu72 arm64 72.1-5 
[9224 kB]
Get:54 http://deb.debian.org/debian unstable/main arm64 libxml2 arm64 
2.12.7+dfsg-3+b1 [609 kB]
Get:55 http://deb.debian.org/debian unstable/main arm64 gettext arm64 0.22.5-2 
[1532 kB]
Get:56 http://deb.debian.org/debian unstable/main arm64 intltool-debian all 
0.35.0+20060710.6 [22.9 kB]
Get:57 http://deb.debian.org/debian unstable/main arm64 po-debconf all 
1.0.21+nmu1 [248 kB]
Get:58 http://deb.debian.org/debian unstable/main arm64 debhelper all 13.20 
[915 kB]
Get:59 http://deb.debian.org/debian unstable/main arm64 libassuan0 arm64 
2.5.6-1+b1 [48.0 kB]
Get:60 http://deb.debian.org/debian unstable/main arm64 gpgconf arm64 2.2.43-8 
[112 kB]
Get:61 http://deb.debian.org/debian unstable/main arm64 libksba8 arm64 1.6.7-2 
[122 kB]
Get:62 http://deb.debian.org/debian unstable/main arm64 libsasl2-modules-db 
arm64 2.1.28+dfsg1-7 [20.0 kB]
Get:63 http://deb.debian.org/debian unstable/main arm64 libsasl2-2 arm64 
2.1.28+dfsg1-7 [55.4 kB]
Get:64 http://deb.debian.org/debian unstable/main arm64 libnpth0t64 arm64 
1.6-3.1 [17.8 kB]
Get:65 http://deb.debian.org/debian unstable/main arm64 dirmngr arm64 2.2.43-8 
[341 kB]
Get:66 http://deb.debian.org/debian unstable/main arm64 gnupg-l10n all 2.2.43-8 
[696 kB]
Get:67 http://deb.debian.org/debian unstable/main arm64 gpg arm64 2.2.43-8 [477 
kB]
Get:68 http://deb.debian.org/debian unstable/main arm64 pinentry-curses arm64 
1.2.1-4 [76.4 kB]
Get:69 http://deb.debian.org/debian unstable/main arm64 gpg-agent arm64 
2.2.43-8 [228 kB]
Get:70 http://deb.debian.org/debian unstable/main arm64 gpgsm arm64 2.2.43-8 
[228 kB]
Get:71 http://deb.debian.org/debian unstable/main arm64 gnupg all 2.2.43-8 [375 
kB]
Get:72 http://deb.debian.org/debian unstable/main arm64 libfile-dirlist-perl 
all 0.05-3 [7600 B]
Get:73 http://deb.debian.org/debian unstable/main arm64 libfile-which-perl all 
1.27-2 [15.1 kB]
Get:74 http://deb.debian.org/debian unstable/main arm64 libfile-homedir-perl 
all 1.006-2 [42.4 kB]
Get:75 http://deb.debian.org/debian unstable/main arm64 libfile-touch-perl all 
0.12-2 [8816 B]
Get:76 http://deb.debian.org/debian unstable/main arm64 libio-pty-perl arm64 
1:1.20-1+b1 [34.0 kB]
Get:77 http://deb.debian.org/debian unstable/main arm64 libipc-run-perl all 
20231003.0-2 [101 kB]
Get:78 http://deb.debian.org/debian unstable/main arm64 
libclass-method-modifiers-perl all 2.15-1 [18.0 kB]
Get:79 http://deb.debian.org/debian unstable/main arm64 
libclass-xsaccessor-perl arm64 1.19-4+b3 [35.2 kB]
Get:80 http://deb.debian.org/debian unstable/main arm64 
libb-hooks-op-check-perl arm64 0.22-3+b1 [10.6 kB]
Get:81 http://deb.debian.org/debian unstable/main arm64 
libdynaloader-functions-perl all 0.004-1 [12.1 kB]
Get:82 http://deb.debian.org/debian unstable/main arm64 
libdevel-callchecker-perl arm64 0.009-1 [16.0 kB]
Get:83 http://deb.debian.org/debian unstable/main arm64 libparams-classify-perl 
arm64 0.015-2+b3 [22.3 kB]
Get:84 http://deb.debian.org/debian unstable/main arm64 libmodule-runtime-perl 
all 0.016-2 [19.6 kB]
Get:85 http://deb.debian.org/debian unstable/main arm64 libimport-into-perl all 
1.002005-2 [11.3 kB]
Get:86 http://deb.debian.org/debian unstable/main arm64 librole-tiny-perl all 
2.002004-1 [21.4 kB]
Get:87 http://deb.debian.org/debian unstable/main arm64 libsub-quote-perl all 
2.006008-1 [21.8 kB]
Get:88 http://deb.debian.org/debian unstable/main arm64 libmoo-perl all 
2.005005-1 [58.0 kB]
Get:89 http://deb.debian.org/debian unstable/main arm64 libencode-locale-perl 
all 1.05-3 [12.9 kB]
Get:90 http://deb.debian.org/debian unstable/main arm64 libtimedate-perl all 
2.3300-2 [39.3 kB]
Get:91 http://deb.debian.org/debian unstable/main arm64 libhttp-date-perl all 
6.06-1 [10.7 kB]
Get:92 http://deb.debian.org/debian unstable/main arm64 libfile-listing-perl 
all 6.16-1 [12.4 kB]
Get:93 http://deb.debian.org/debian unstable/main arm64 libhtml-tagset-perl all 
3.24-1 [14.7 kB]
Get:94 http://deb.debian.org/debian unstable/main arm64 liburi-perl all 5.28-1 
[98.6 kB]
Get:95 http://deb.debian.org/debian unstable/main arm64 libhtml-parser-perl 
arm64 3.83-1 [97.2 kB]
Get:96 http://deb.debian.org/debian unstable/main arm64 libhtml-tree-perl all 
5.07-3 [211 kB]
Get:97 http://deb.debian.org/debian unstable/main arm64 libclone-perl arm64 
0.46-1+b2 [13.6 kB]
Get:98 http://deb.debian.org/debian unstable/main arm64 libio-html-perl all 
1.004-3 [16.2 kB]
Get:99 http://deb.debian.org/debian unstable/main arm64 liblwp-mediatypes-perl 
all 6.04-2 [20.2 kB]
Get:100 http://deb.debian.org/debian unstable/main arm64 libhttp-message-perl 
all 6.46-1 [79.7 kB]
Get:101 http://deb.debian.org/debian unstable/main arm64 libhttp-cookies-perl 
all 6.11-1 [19.1 kB]
Get:102 http://deb.debian.org/debian unstable/main arm64 libhttp-negotiate-perl 
all 6.01-2 [13.1 kB]
Get:103 http://deb.debian.org/debian unstable/main arm64 perl-openssl-defaults 
arm64 7+b2 [6712 B]
Get:104 http://deb.debian.org/debian unstable/main arm64 libnet-ssleay-perl 
arm64 1.94-1+b1 [328 kB]
Get:105 http://deb.debian.org/debian unstable/main arm64 libio-socket-ssl-perl 
all 2.088-1 [222 kB]
Get:106 http://deb.debian.org/debian unstable/main arm64 libnet-http-perl all 
6.23-1 [23.9 kB]
Get:107 http://deb.debian.org/debian unstable/main arm64 
liblwp-protocol-https-perl all 6.14-1 [10.8 kB]
Get:108 http://deb.debian.org/debian unstable/main arm64 libtry-tiny-perl all 
0.32-1 [22.9 kB]
Get:109 http://deb.debian.org/debian unstable/main arm64 libwww-robotrules-perl 
all 6.02-1 [12.9 kB]
Get:110 http://deb.debian.org/debian unstable/main arm64 libwww-perl all 6.77-1 
[183 kB]
Get:111 http://deb.debian.org/debian unstable/main arm64 patchutils arm64 
0.4.2-1 [73.5 kB]
Get:112 http://deb.debian.org/debian unstable/main arm64 wdiff arm64 1.2.2-6 
[118 kB]
Get:113 http://deb.debian.org/debian unstable/main arm64 devscripts all 2.23.7 
[1068 kB]
Get:114 http://deb.debian.org/debian unstable/main arm64 libedit2 arm64 
3.1-20240517-1 [88.9 kB]
Get:115 http://deb.debian.org/debian unstable/main arm64 libz3-4 arm64 
4.8.12-3.1+b2 [6508 kB]
Get:116 http://deb.debian.org/debian unstable/main arm64 libllvm16t64 arm64 
1:16.0.6-27+b1 [20.7 MB]
Get:117 http://deb.debian.org/debian unstable/main arm64 libclang-cpp16t64 
arm64 1:16.0.6-27+b1 [10.5 MB]
Get:118 http://deb.debian.org/debian unstable/main arm64 libclang1-16t64 arm64 
1:16.0.6-27+b1 [5923 kB]
Get:119 http://deb.debian.org/debian unstable/main arm64 libfmt9 arm64 
9.1.0+ds1-2 [107 kB]
Get:120 http://deb.debian.org/debian unstable/main arm64 libxapian30 arm64 
1.4.25-1 [1044 kB]
Get:121 http://deb.debian.org/debian unstable/main arm64 doxygen arm64 
1.9.8+ds-2+b1 [4484 kB]
Get:122 http://deb.debian.org/debian unstable/main arm64 rubygems-integration 
all 1.18 [6704 B]
Get:123 http://deb.debian.org/debian unstable/main arm64 ruby-net-telnet all 
0.2.0-1 [13.1 kB]
Get:124 http://deb.debian.org/debian unstable/main arm64 ruby-webrick all 
1.8.1-1 [51.4 kB]
Get:125 http://deb.debian.org/debian unstable/main arm64 ruby-xmlrpc all 
0.3.3-2 [24.4 kB]
Get:126 http://deb.debian.org/debian unstable/main arm64 ruby-sdbm arm64 
1.0.0-5+b4 [14.6 kB]
Get:127 http://deb.debian.org/debian unstable/main arm64 libncurses6 arm64 
6.5-2 [95.7 kB]
Get:128 http://deb.debian.org/debian unstable/main arm64 libyaml-0-2 arm64 
0.2.5-1+b1 [49.0 kB]
Get:129 http://deb.debian.org/debian unstable/main arm64 libruby3.1t64 arm64 
3.1.2-8.3 [5254 kB]
Get:130 http://deb.debian.org/debian unstable/main arm64 ruby3.1 arm64 
3.1.2-8.3 [664 kB]
Get:131 http://deb.debian.org/debian unstable/main arm64 libruby arm64 
1:3.1+nmu1 [4664 B]
Get:132 http://deb.debian.org/debian unstable/main arm64 ruby-rubygems all 
3.4.20-1 [309 kB]
Get:133 http://deb.debian.org/debian unstable/main arm64 ruby arm64 1:3.1+nmu1 
[5584 B]
Get:134 http://deb.debian.org/debian unstable/main arm64 rake all 13.2.1-1 
[65.2 kB]
Get:135 http://deb.debian.org/debian unstable/main arm64 gem2deb-test-runner 
arm64 2.2.4 [17.8 kB]
Get:136 http://deb.debian.org/debian unstable/main arm64 libgmpxx4ldbl arm64 
2:6.3.0+dfsg-2+b1 [329 kB]
Get:137 http://deb.debian.org/debian unstable/main arm64 libgmp-dev arm64 
2:6.3.0+dfsg-2+b1 [619 kB]
Get:138 http://deb.debian.org/debian unstable/main arm64 ruby3.1-dev arm64 
3.1.2-8.3 [1005 kB]
Get:139 http://deb.debian.org/debian unstable/main arm64 ruby-all-dev arm64 
1:3.1+nmu1 [5680 B]
Get:140 http://deb.debian.org/debian unstable/main arm64 gem2deb arm64 2.2.4 
[47.9 kB]
Get:141 http://deb.debian.org/debian unstable/main arm64 gperf arm64 3.1-1 [145 
kB]
Get:142 http://deb.debian.org/debian unstable/main arm64 libmagic-dev arm64 
1:5.45-3 [114 kB]
Get:143 http://deb.debian.org/debian unstable/main arm64 libpcre2-16-0 arm64 
10.42-4+b1 [217 kB]
Get:144 http://deb.debian.org/debian unstable/main arm64 libpcre2-32-0 arm64 
10.42-4+b1 [207 kB]
Get:145 http://deb.debian.org/debian unstable/main arm64 libpcre2-posix3 arm64 
10.42-4+b1 [55.8 kB]
Get:146 http://deb.debian.org/debian unstable/main arm64 libpcre2-dev arm64 
10.42-4+b1 [669 kB]
Get:147 http://deb.debian.org/debian unstable/main arm64 ragel arm64 6.10-4 
[1003 kB]
Get:148 http://deb.debian.org/debian unstable/main arm64 ruby-diff-lcs all 
1.5.1-1 [28.1 kB]
Get:149 http://deb.debian.org/debian unstable/main arm64 swig arm64 4.2.1-1 
[1350 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 91.7 MB in 1s (117 MB/s)
Selecting previously unselected package libpython3.12-minimal:arm64.
(Reading database ... 11901 files and directories currently installed.)
Preparing to unpack .../libpython3.12-minimal_3.12.5-4_arm64.deb ...
Unpacking libpython3.12-minimal:arm64 (3.12.5-4) ...
Selecting previously unselected package libexpat1:arm64.
Preparing to unpack .../libexpat1_2.6.2-1_arm64.deb ...
Unpacking libexpat1:arm64 (2.6.2-1) ...
Selecting previously unselected package python3.12-minimal.
Preparing to unpack .../python3.12-minimal_3.12.5-4_arm64.deb ...
Unpacking python3.12-minimal (3.12.5-4) ...
Setting up libpython3.12-minimal:arm64 (3.12.5-4) ...
Setting up libexpat1:arm64 (2.6.2-1) ...
Setting up python3.12-minimal (3.12.5-4) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 12221 files and directories currently installed.)
Preparing to unpack .../00-python3-minimal_3.12.5-1_arm64.deb ...
Unpacking python3-minimal (3.12.5-1) ...
Selecting previously unselected package media-types.
Preparing to unpack .../01-media-types_10.1.0_all.deb ...
Unpacking media-types (10.1.0) ...
Selecting previously unselected package netbase.
Preparing to unpack .../02-netbase_6.4_all.deb ...
Unpacking netbase (6.4) ...
Selecting previously unselected package tzdata.
Preparing to unpack .../03-tzdata_2024a-4_all.deb ...
Unpacking tzdata (2024a-4) ...
Selecting previously unselected package libncursesw6:arm64.
Preparing to unpack .../04-libncursesw6_6.5-2_arm64.deb ...
Unpacking libncursesw6:arm64 (6.5-2) ...
Selecting previously unselected package libkrb5support0:arm64.
Preparing to unpack .../05-libkrb5support0_1.21.3-3_arm64.deb ...
Unpacking libkrb5support0:arm64 (1.21.3-3) ...
Selecting previously unselected package libcom-err2:arm64.
Preparing to unpack .../06-libcom-err2_1.47.1-1_arm64.deb ...
Unpacking libcom-err2:arm64 (1.47.1-1) ...
Selecting previously unselected package libk5crypto3:arm64.
Preparing to unpack .../07-libk5crypto3_1.21.3-3_arm64.deb ...
Unpacking libk5crypto3:arm64 (1.21.3-3) ...
Selecting previously unselected package libkeyutils1:arm64.
Preparing to unpack .../08-libkeyutils1_1.6.3-3_arm64.deb ...
Unpacking libkeyutils1:arm64 (1.6.3-3) ...
Selecting previously unselected package libkrb5-3:arm64.
Preparing to unpack .../09-libkrb5-3_1.21.3-3_arm64.deb ...
Unpacking libkrb5-3:arm64 (1.21.3-3) ...
Selecting previously unselected package libgssapi-krb5-2:arm64.
Preparing to unpack .../10-libgssapi-krb5-2_1.21.3-3_arm64.deb ...
Unpacking libgssapi-krb5-2:arm64 (1.21.3-3) ...
Selecting previously unselected package libtirpc-common.
Preparing to unpack .../11-libtirpc-common_1.3.4+ds-1.3_all.deb ...
Unpacking libtirpc-common (1.3.4+ds-1.3) ...
Selecting previously unselected package libtirpc3t64:arm64.
Preparing to unpack .../12-libtirpc3t64_1.3.4+ds-1.3_arm64.deb ...
Adding 'diversion of /lib/aarch64-linux-gnu/libtirpc.so.3 to 
/lib/aarch64-linux-gnu/libtirpc.so.3.usr-is-merged by libtirpc3t64'
Adding 'diversion of /lib/aarch64-linux-gnu/libtirpc.so.3.0.0 to 
/lib/aarch64-linux-gnu/libtirpc.so.3.0.0.usr-is-merged by libtirpc3t64'
Unpacking libtirpc3t64:arm64 (1.3.4+ds-1.3) ...
Selecting previously unselected package libnsl2:arm64.
Preparing to unpack .../13-libnsl2_1.3.0-3+b2_arm64.deb ...
Unpacking libnsl2:arm64 (1.3.0-3+b2) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../14-readline-common_8.2-5_all.deb ...
Unpacking readline-common (8.2-5) ...
Selecting previously unselected package libreadline8t64:arm64.
Preparing to unpack .../15-libreadline8t64_8.2-5_arm64.deb ...
Adding 'diversion of /lib/aarch64-linux-gnu/libhistory.so.8 to 
/lib/aarch64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
Adding 'diversion of /lib/aarch64-linux-gnu/libhistory.so.8.2 to 
/lib/aarch64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
Adding 'diversion of /lib/aarch64-linux-gnu/libreadline.so.8 to 
/lib/aarch64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
Adding 'diversion of /lib/aarch64-linux-gnu/libreadline.so.8.2 to 
/lib/aarch64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
Unpacking libreadline8t64:arm64 (8.2-5) ...
Selecting previously unselected package libsqlite3-0:arm64.
Preparing to unpack .../16-libsqlite3-0_3.46.1-1_arm64.deb ...
Unpacking libsqlite3-0:arm64 (3.46.1-1) ...
Selecting previously unselected package libpython3.12-stdlib:arm64.
Preparing to unpack .../17-libpython3.12-stdlib_3.12.5-4_arm64.deb ...
Unpacking libpython3.12-stdlib:arm64 (3.12.5-4) ...
Selecting previously unselected package python3.12.
Preparing to unpack .../18-python3.12_3.12.5-4_arm64.deb ...
Unpacking python3.12 (3.12.5-4) ...
Selecting previously unselected package libpython3-stdlib:arm64.
Preparing to unpack .../19-libpython3-stdlib_3.12.5-1_arm64.deb ...
Unpacking libpython3-stdlib:arm64 (3.12.5-1) ...
Setting up python3-minimal (3.12.5-1) ...
Selecting previously unselected package python3.
(Reading database ... 13310 files and directories currently installed.)
Preparing to unpack .../python3_3.12.5-1_arm64.deb ...
Unpacking python3 (3.12.5-1) ...
Selecting previously unselected package login.defs.
Preparing to unpack .../login.defs_1%3a4.16.0-4_all.deb ...
Unpacking login.defs (1:4.16.0-4) ...
Setting up login.defs (1:4.16.0-4) ...
Selecting previously unselected package libbsd0:arm64.
(Reading database ... 13349 files and directories currently installed.)
Preparing to unpack .../libbsd0_0.12.2-1_arm64.deb ...
Unpacking libbsd0:arm64 (0.12.2-1) ...
Setting up libbsd0:arm64 (0.12.2-1) ...
Selecting previously unselected package libsemanage-common.
(Reading database ... 13356 files and directories currently installed.)
Preparing to unpack .../libsemanage-common_3.7-1_all.deb ...
Unpacking libsemanage-common (3.7-1) ...
Setting up libsemanage-common (3.7-1) ...
Selecting previously unselected package libsepol2:arm64.
(Reading database ... 13362 files and directories currently installed.)
Preparing to unpack .../libsepol2_3.7-1_arm64.deb ...
Unpacking libsepol2:arm64 (3.7-1) ...
Setting up libsepol2:arm64 (3.7-1) ...
Selecting previously unselected package libsemanage2:arm64.
(Reading database ... 13366 files and directories currently installed.)
Preparing to unpack .../libsemanage2_3.7-1_arm64.deb ...
Unpacking libsemanage2:arm64 (3.7-1) ...
Setting up libsemanage2:arm64 (3.7-1) ...
Selecting previously unselected package passwd.
(Reading database ... 13370 files and directories currently installed.)
Preparing to unpack .../passwd_1%3a4.16.0-4_arm64.deb ...
Unpacking passwd (1:4.16.0-4) ...
Setting up passwd (1:4.16.0-4) ...
Shadow passwords are now on.
Selecting previously unselected package adduser.
(Reading database ... 13776 files and directories currently installed.)
Preparing to unpack .../archives/adduser_3.137_all.deb ...
Unpacking adduser (3.137) ...
Setting up adduser (3.137) ...
Selecting previously unselected package sensible-utils.
(Reading database ... 13847 files and directories currently installed.)
Preparing to unpack .../000-sensible-utils_0.0.24_all.deb ...
Unpacking sensible-utils (0.0.24) ...
Selecting previously unselected package openssl.
Preparing to unpack .../001-openssl_3.3.1-7_arm64.deb ...
Unpacking openssl (3.3.1-7) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../002-ca-certificates_20240203_all.deb ...
Unpacking ca-certificates (20240203) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../003-libmagic-mgc_1%3a5.45-3_arm64.deb ...
Unpacking libmagic-mgc (1:5.45-3) ...
Selecting previously unselected package libmagic1t64:arm64.
Preparing to unpack .../004-libmagic1t64_1%3a5.45-3_arm64.deb ...
Unpacking libmagic1t64:arm64 (1:5.45-3) ...
Selecting previously unselected package file.
Preparing to unpack .../005-file_1%3a5.45-3_arm64.deb ...
Unpacking file (1:5.45-3) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../006-gettext-base_0.22.5-2_arm64.deb ...
Unpacking gettext-base (0.22.5-2) ...
Selecting previously unselected package libuchardet0:arm64.
Preparing to unpack .../007-libuchardet0_0.0.8-1+b1_arm64.deb ...
Unpacking libuchardet0:arm64 (0.0.8-1+b1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../008-groff-base_1.23.0-5_arm64.deb ...
Unpacking groff-base (1.23.0-5) ...
Selecting previously unselected package bsdextrautils.
Preparing to unpack .../009-bsdextrautils_2.40.2-7_arm64.deb ...
Unpacking bsdextrautils (2.40.2-7) ...
Selecting previously unselected package libpipeline1:arm64.
Preparing to unpack .../010-libpipeline1_1.5.8-1_arm64.deb ...
Unpacking libpipeline1:arm64 (1.5.8-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../011-man-db_2.12.1-3_arm64.deb ...
Unpacking man-db (2.12.1-3) ...
Selecting previously unselected package m4.
Preparing to unpack .../012-m4_1.4.19-4_arm64.deb ...
Unpacking m4 (1.4.19-4) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../013-autoconf_2.72-3_all.deb ...
Unpacking autoconf (2.72-3) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../014-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../015-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../016-autopoint_0.22.5-2_all.deb ...
Unpacking autopoint (0.22.5-2) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../017-libdebhelper-perl_13.20_all.deb ...
Unpacking libdebhelper-perl (13.20) ...
Selecting previously unselected package libtool.
Preparing to unpack .../018-libtool_2.4.7-7_all.deb ...
Unpacking libtool (2.4.7-7) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../019-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../020-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../021-libfile-stripnondeterminism-perl_1.14.0-1_all.deb 
...
Unpacking libfile-stripnondeterminism-perl (1.14.0-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../022-dh-strip-nondeterminism_1.14.0-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.14.0-1) ...
Selecting previously unselected package libelf1t64:arm64.
Preparing to unpack .../023-libelf1t64_0.191-2_arm64.deb ...
Unpacking libelf1t64:arm64 (0.191-2) ...
Selecting previously unselected package dwz.
Preparing to unpack .../024-dwz_0.15-1+b1_arm64.deb ...
Unpacking dwz (0.15-1+b1) ...
Selecting previously unselected package libicu72:arm64.
Preparing to unpack .../025-libicu72_72.1-5_arm64.deb ...
Unpacking libicu72:arm64 (72.1-5) ...
Selecting previously unselected package libxml2:arm64.
Preparing to unpack .../026-libxml2_2.12.7+dfsg-3+b1_arm64.deb ...
Unpacking libxml2:arm64 (2.12.7+dfsg-3+b1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../027-gettext_0.22.5-2_arm64.deb ...
Unpacking gettext (0.22.5-2) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../028-intltool-debian_0.35.0+20060710.6_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.6) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../029-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../030-debhelper_13.20_all.deb ...
Unpacking debhelper (13.20) ...
Selecting previously unselected package libassuan0:arm64.
Preparing to unpack .../031-libassuan0_2.5.6-1+b1_arm64.deb ...
Unpacking libassuan0:arm64 (2.5.6-1+b1) ...
Selecting previously unselected package gpgconf.
Preparing to unpack .../032-gpgconf_2.2.43-8_arm64.deb ...
Unpacking gpgconf (2.2.43-8) ...
Selecting previously unselected package libksba8:arm64.
Preparing to unpack .../033-libksba8_1.6.7-2_arm64.deb ...
Unpacking libksba8:arm64 (1.6.7-2) ...
Selecting previously unselected package libsasl2-modules-db:arm64.
Preparing to unpack .../034-libsasl2-modules-db_2.1.28+dfsg1-7_arm64.deb ...
Unpacking libsasl2-modules-db:arm64 (2.1.28+dfsg1-7) ...
Selecting previously unselected package libsasl2-2:arm64.
Preparing to unpack .../035-libsasl2-2_2.1.28+dfsg1-7_arm64.deb ...
Unpacking libsasl2-2:arm64 (2.1.28+dfsg1-7) ...
Selecting previously unselected package libldap-2.5-0:arm64.
Preparing to unpack .../036-libldap-2.5-0_2.5.18+dfsg-3_arm64.deb ...
Unpacking libldap-2.5-0:arm64 (2.5.18+dfsg-3) ...
Selecting previously unselected package libnpth0t64:arm64.
Preparing to unpack .../037-libnpth0t64_1.6-3.1_arm64.deb ...
Unpacking libnpth0t64:arm64 (1.6-3.1) ...
Selecting previously unselected package dirmngr.
Preparing to unpack .../038-dirmngr_2.2.43-8_arm64.deb ...
Unpacking dirmngr (2.2.43-8) ...
Selecting previously unselected package gnupg-l10n.
Preparing to unpack .../039-gnupg-l10n_2.2.43-8_all.deb ...
Unpacking gnupg-l10n (2.2.43-8) ...
Selecting previously unselected package gpg.
Preparing to unpack .../040-gpg_2.2.43-8_arm64.deb ...
Unpacking gpg (2.2.43-8) ...
Selecting previously unselected package pinentry-curses.
Preparing to unpack .../041-pinentry-curses_1.2.1-4_arm64.deb ...
Unpacking pinentry-curses (1.2.1-4) ...
Selecting previously unselected package gpg-agent.
Preparing to unpack .../042-gpg-agent_2.2.43-8_arm64.deb ...
Unpacking gpg-agent (2.2.43-8) ...
Selecting previously unselected package gpgsm.
Preparing to unpack .../043-gpgsm_2.2.43-8_arm64.deb ...
Unpacking gpgsm (2.2.43-8) ...
Selecting previously unselected package gnupg.
Preparing to unpack .../044-gnupg_2.2.43-8_all.deb ...
Unpacking gnupg (2.2.43-8) ...
Selecting previously unselected package libfile-dirlist-perl.
Preparing to unpack .../045-libfile-dirlist-perl_0.05-3_all.deb ...
Unpacking libfile-dirlist-perl (0.05-3) ...
Selecting previously unselected package libfile-which-perl.
Preparing to unpack .../046-libfile-which-perl_1.27-2_all.deb ...
Unpacking libfile-which-perl (1.27-2) ...
Selecting previously unselected package libfile-homedir-perl.
Preparing to unpack .../047-libfile-homedir-perl_1.006-2_all.deb ...
Unpacking libfile-homedir-perl (1.006-2) ...
Selecting previously unselected package libfile-touch-perl.
Preparing to unpack .../048-libfile-touch-perl_0.12-2_all.deb ...
Unpacking libfile-touch-perl (0.12-2) ...
Selecting previously unselected package libio-pty-perl.
Preparing to unpack .../049-libio-pty-perl_1%3a1.20-1+b1_arm64.deb ...
Unpacking libio-pty-perl (1:1.20-1+b1) ...
Selecting previously unselected package libipc-run-perl.
Preparing to unpack .../050-libipc-run-perl_20231003.0-2_all.deb ...
Unpacking libipc-run-perl (20231003.0-2) ...
Selecting previously unselected package libclass-method-modifiers-perl.
Preparing to unpack .../051-libclass-method-modifiers-perl_2.15-1_all.deb ...
Unpacking libclass-method-modifiers-perl (2.15-1) ...
Selecting previously unselected package libclass-xsaccessor-perl.
Preparing to unpack .../052-libclass-xsaccessor-perl_1.19-4+b3_arm64.deb ...
Unpacking libclass-xsaccessor-perl (1.19-4+b3) ...
Selecting previously unselected package libb-hooks-op-check-perl:arm64.
Preparing to unpack .../053-libb-hooks-op-check-perl_0.22-3+b1_arm64.deb ...
Unpacking libb-hooks-op-check-perl:arm64 (0.22-3+b1) ...
Selecting previously unselected package libdynaloader-functions-perl.
Preparing to unpack .../054-libdynaloader-functions-perl_0.004-1_all.deb ...
Unpacking libdynaloader-functions-perl (0.004-1) ...
Selecting previously unselected package libdevel-callchecker-perl:arm64.
Preparing to unpack .../055-libdevel-callchecker-perl_0.009-1_arm64.deb ...
Unpacking libdevel-callchecker-perl:arm64 (0.009-1) ...
Selecting previously unselected package libparams-classify-perl:arm64.
Preparing to unpack .../056-libparams-classify-perl_0.015-2+b3_arm64.deb ...
Unpacking libparams-classify-perl:arm64 (0.015-2+b3) ...
Selecting previously unselected package libmodule-runtime-perl.
Preparing to unpack .../057-libmodule-runtime-perl_0.016-2_all.deb ...
Unpacking libmodule-runtime-perl (0.016-2) ...
Selecting previously unselected package libimport-into-perl.
Preparing to unpack .../058-libimport-into-perl_1.002005-2_all.deb ...
Unpacking libimport-into-perl (1.002005-2) ...
Selecting previously unselected package librole-tiny-perl.
Preparing to unpack .../059-librole-tiny-perl_2.002004-1_all.deb ...
Unpacking librole-tiny-perl (2.002004-1) ...
Selecting previously unselected package libsub-quote-perl.
Preparing to unpack .../060-libsub-quote-perl_2.006008-1_all.deb ...
Unpacking libsub-quote-perl (2.006008-1) ...
Selecting previously unselected package libmoo-perl.
Preparing to unpack .../061-libmoo-perl_2.005005-1_all.deb ...
Unpacking libmoo-perl (2.005005-1) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../062-libencode-locale-perl_1.05-3_all.deb ...
Unpacking libencode-locale-perl (1.05-3) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../063-libtimedate-perl_2.3300-2_all.deb ...
Unpacking libtimedate-perl (2.3300-2) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../064-libhttp-date-perl_6.06-1_all.deb ...
Unpacking libhttp-date-perl (6.06-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../065-libfile-listing-perl_6.16-1_all.deb ...
Unpacking libfile-listing-perl (6.16-1) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../066-libhtml-tagset-perl_3.24-1_all.deb ...
Unpacking libhtml-tagset-perl (3.24-1) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../067-liburi-perl_5.28-1_all.deb ...
Unpacking liburi-perl (5.28-1) ...
Selecting previously unselected package libhtml-parser-perl:arm64.
Preparing to unpack .../068-libhtml-parser-perl_3.83-1_arm64.deb ...
Unpacking libhtml-parser-perl:arm64 (3.83-1) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../069-libhtml-tree-perl_5.07-3_all.deb ...
Unpacking libhtml-tree-perl (5.07-3) ...
Selecting previously unselected package libclone-perl:arm64.
Preparing to unpack .../070-libclone-perl_0.46-1+b2_arm64.deb ...
Unpacking libclone-perl:arm64 (0.46-1+b2) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../071-libio-html-perl_1.004-3_all.deb ...
Unpacking libio-html-perl (1.004-3) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../072-liblwp-mediatypes-perl_6.04-2_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-2) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../073-libhttp-message-perl_6.46-1_all.deb ...
Unpacking libhttp-message-perl (6.46-1) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../074-libhttp-cookies-perl_6.11-1_all.deb ...
Unpacking libhttp-cookies-perl (6.11-1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../075-libhttp-negotiate-perl_6.01-2_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-2) ...
Selecting previously unselected package perl-openssl-defaults:arm64.
Preparing to unpack .../076-perl-openssl-defaults_7+b2_arm64.deb ...
Unpacking perl-openssl-defaults:arm64 (7+b2) ...
Selecting previously unselected package libnet-ssleay-perl:arm64.
Preparing to unpack .../077-libnet-ssleay-perl_1.94-1+b1_arm64.deb ...
Unpacking libnet-ssleay-perl:arm64 (1.94-1+b1) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../078-libio-socket-ssl-perl_2.088-1_all.deb ...
Unpacking libio-socket-ssl-perl (2.088-1) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../079-libnet-http-perl_6.23-1_all.deb ...
Unpacking libnet-http-perl (6.23-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../080-liblwp-protocol-https-perl_6.14-1_all.deb ...
Unpacking liblwp-protocol-https-perl (6.14-1) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../081-libtry-tiny-perl_0.32-1_all.deb ...
Unpacking libtry-tiny-perl (0.32-1) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../082-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../083-libwww-perl_6.77-1_all.deb ...
Unpacking libwww-perl (6.77-1) ...
Selecting previously unselected package patchutils.
Preparing to unpack .../084-patchutils_0.4.2-1_arm64.deb ...
Unpacking patchutils (0.4.2-1) ...
Selecting previously unselected package wdiff.
Preparing to unpack .../085-wdiff_1.2.2-6_arm64.deb ...
Unpacking wdiff (1.2.2-6) ...
Selecting previously unselected package devscripts.
Preparing to unpack .../086-devscripts_2.23.7_all.deb ...
Unpacking devscripts (2.23.7) ...
Selecting previously unselected package libedit2:arm64.
Preparing to unpack .../087-libedit2_3.1-20240517-1_arm64.deb ...
Unpacking libedit2:arm64 (3.1-20240517-1) ...
Selecting previously unselected package libz3-4:arm64.
Preparing to unpack .../088-libz3-4_4.8.12-3.1+b2_arm64.deb ...
Unpacking libz3-4:arm64 (4.8.12-3.1+b2) ...
Selecting previously unselected package libllvm16t64:arm64.
Preparing to unpack .../089-libllvm16t64_1%3a16.0.6-27+b1_arm64.deb ...
Unpacking libllvm16t64:arm64 (1:16.0.6-27+b1) ...
Selecting previously unselected package libclang-cpp16t64.
Preparing to unpack .../090-libclang-cpp16t64_1%3a16.0.6-27+b1_arm64.deb ...
Unpacking libclang-cpp16t64 (1:16.0.6-27+b1) ...
Selecting previously unselected package libclang1-16t64.
Preparing to unpack .../091-libclang1-16t64_1%3a16.0.6-27+b1_arm64.deb ...
Unpacking libclang1-16t64 (1:16.0.6-27+b1) ...
Selecting previously unselected package libfmt9:arm64.
Preparing to unpack .../092-libfmt9_9.1.0+ds1-2_arm64.deb ...
Unpacking libfmt9:arm64 (9.1.0+ds1-2) ...
Selecting previously unselected package libxapian30:arm64.
Preparing to unpack .../093-libxapian30_1.4.25-1_arm64.deb ...
Unpacking libxapian30:arm64 (1.4.25-1) ...
Selecting previously unselected package doxygen.
Preparing to unpack .../094-doxygen_1.9.8+ds-2+b1_arm64.deb ...
Unpacking doxygen (1.9.8+ds-2+b1) ...
Selecting previously unselected package rubygems-integration.
Preparing to unpack .../095-rubygems-integration_1.18_all.deb ...
Unpacking rubygems-integration (1.18) ...
Selecting previously unselected package ruby-net-telnet.
Preparing to unpack .../096-ruby-net-telnet_0.2.0-1_all.deb ...
Unpacking ruby-net-telnet (0.2.0-1) ...
Selecting previously unselected package ruby-webrick.
Preparing to unpack .../097-ruby-webrick_1.8.1-1_all.deb ...
Unpacking ruby-webrick (1.8.1-1) ...
Selecting previously unselected package ruby-xmlrpc.
Preparing to unpack .../098-ruby-xmlrpc_0.3.3-2_all.deb ...
Unpacking ruby-xmlrpc (0.3.3-2) ...
Selecting previously unselected package ruby-sdbm:arm64.
Preparing to unpack .../099-ruby-sdbm_1.0.0-5+b4_arm64.deb ...
Unpacking ruby-sdbm:arm64 (1.0.0-5+b4) ...
Selecting previously unselected package libncurses6:arm64.
Preparing to unpack .../100-libncurses6_6.5-2_arm64.deb ...
Unpacking libncurses6:arm64 (6.5-2) ...
Selecting previously unselected package libyaml-0-2:arm64.
Preparing to unpack .../101-libyaml-0-2_0.2.5-1+b1_arm64.deb ...
Unpacking libyaml-0-2:arm64 (0.2.5-1+b1) ...
Selecting previously unselected package libruby3.1t64:arm64.
Preparing to unpack .../102-libruby3.1t64_3.1.2-8.3_arm64.deb ...
Unpacking libruby3.1t64:arm64 (3.1.2-8.3) ...
Selecting previously unselected package ruby3.1.
Preparing to unpack .../103-ruby3.1_3.1.2-8.3_arm64.deb ...
Unpacking ruby3.1 (3.1.2-8.3) ...
Selecting previously unselected package libruby:arm64.
Preparing to unpack .../104-libruby_1%3a3.1+nmu1_arm64.deb ...
Unpacking libruby:arm64 (1:3.1+nmu1) ...
Selecting previously unselected package ruby-rubygems.
Preparing to unpack .../105-ruby-rubygems_3.4.20-1_all.deb ...
Unpacking ruby-rubygems (3.4.20-1) ...
Selecting previously unselected package ruby.
Preparing to unpack .../106-ruby_1%3a3.1+nmu1_arm64.deb ...
Unpacking ruby (1:3.1+nmu1) ...
Selecting previously unselected package rake.
Preparing to unpack .../107-rake_13.2.1-1_all.deb ...
Unpacking rake (13.2.1-1) ...
Selecting previously unselected package gem2deb-test-runner.
Preparing to unpack .../108-gem2deb-test-runner_2.2.4_arm64.deb ...
Unpacking gem2deb-test-runner (2.2.4) ...
Selecting previously unselected package libgmpxx4ldbl:arm64.
Preparing to unpack .../109-libgmpxx4ldbl_2%3a6.3.0+dfsg-2+b1_arm64.deb ...
Unpacking libgmpxx4ldbl:arm64 (2:6.3.0+dfsg-2+b1) ...
Selecting previously unselected package libgmp-dev:arm64.
Preparing to unpack .../110-libgmp-dev_2%3a6.3.0+dfsg-2+b1_arm64.deb ...
Unpacking libgmp-dev:arm64 (2:6.3.0+dfsg-2+b1) ...
Selecting previously unselected package ruby3.1-dev:arm64.
Preparing to unpack .../111-ruby3.1-dev_3.1.2-8.3_arm64.deb ...
Unpacking ruby3.1-dev:arm64 (3.1.2-8.3) ...
Selecting previously unselected package ruby-all-dev:arm64.
Preparing to unpack .../112-ruby-all-dev_1%3a3.1+nmu1_arm64.deb ...
Unpacking ruby-all-dev:arm64 (1:3.1+nmu1) ...
Selecting previously unselected package gem2deb.
Preparing to unpack .../113-gem2deb_2.2.4_arm64.deb ...
Unpacking gem2deb (2.2.4) ...
Selecting previously unselected package gperf.
Preparing to unpack .../114-gperf_3.1-1_arm64.deb ...
Unpacking gperf (3.1-1) ...
Selecting previously unselected package libmagic-dev:arm64.
Preparing to unpack .../115-libmagic-dev_1%3a5.45-3_arm64.deb ...
Unpacking libmagic-dev:arm64 (1:5.45-3) ...
Selecting previously unselected package libpcre2-16-0:arm64.
Preparing to unpack .../116-libpcre2-16-0_10.42-4+b1_arm64.deb ...
Unpacking libpcre2-16-0:arm64 (10.42-4+b1) ...
Selecting previously unselected package libpcre2-32-0:arm64.
Preparing to unpack .../117-libpcre2-32-0_10.42-4+b1_arm64.deb ...
Unpacking libpcre2-32-0:arm64 (10.42-4+b1) ...
Selecting previously unselected package libpcre2-posix3:arm64.
Preparing to unpack .../118-libpcre2-posix3_10.42-4+b1_arm64.deb ...
Unpacking libpcre2-posix3:arm64 (10.42-4+b1) ...
Selecting previously unselected package libpcre2-dev:arm64.
Preparing to unpack .../119-libpcre2-dev_10.42-4+b1_arm64.deb ...
Unpacking libpcre2-dev:arm64 (10.42-4+b1) ...
Selecting previously unselected package ragel.
Preparing to unpack .../120-ragel_6.10-4_arm64.deb ...
Unpacking ragel (6.10-4) ...
Selecting previously unselected package ruby-diff-lcs.
Preparing to unpack .../121-ruby-diff-lcs_1.5.1-1_all.deb ...
Unpacking ruby-diff-lcs (1.5.1-1) ...
Selecting previously unselected package swig.
Preparing to unpack .../122-swig_4.2.1-1_arm64.deb ...
Unpacking swig (4.2.1-1) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack 
.../123-sbuild-build-depends-main-dummy_0.invalid.0_arm64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up libksba8:arm64 (1.6.7-2) ...
Setting up media-types (10.1.0) ...
Setting up libpipeline1:arm64 (1.5.8-1) ...
Setting up libxapian30:arm64 (1.4.25-1) ...
Setting up wdiff (1.2.2-6) ...
Setting up libfile-which-perl (1.27-2) ...
Setting up libnpth0t64:arm64 (1.6-3.1) ...
Setting up libkeyutils1:arm64 (1.6.3-3) ...
Setting up swig (4.2.1-1) ...
Setting up libicu72:arm64 (72.1-5) ...
Setting up bsdextrautils (2.40.2-7) ...
Setting up libdynaloader-functions-perl (0.004-1) ...
Setting up libclass-method-modifiers-perl (2.15-1) ...
Setting up libio-pty-perl (1:1.20-1+b1) ...
Setting up libmagic-mgc (1:5.45-3) ...
Setting up libclone-perl:arm64 (0.46-1+b2) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libyaml-0-2:arm64 (0.2.5-1+b1) ...
Setting up libtirpc-common (1.3.4+ds-1.3) ...
Setting up libhtml-tagset-perl (3.24-1) ...
Setting up libdebhelper-perl (13.20) ...
Setting up libedit2:arm64 (3.1-20240517-1) ...
Setting up libsqlite3-0:arm64 (3.46.1-1) ...
Setting up liblwp-mediatypes-perl (6.04-2) ...
Setting up libmagic1t64:arm64 (1:5.45-3) ...
Setting up libtry-tiny-perl (0.32-1) ...
Setting up perl-openssl-defaults:arm64 (7+b2) ...
Setting up gettext-base (0.22.5-2) ...
Setting up m4 (1.4.19-4) ...
Setting up libencode-locale-perl (1.05-3) ...
Setting up libcom-err2:arm64 (1.47.1-1) ...
Setting up file (1:5.45-3) ...
Setting up libassuan0:arm64 (2.5.6-1+b1) ...
Setting up libmagic-dev:arm64 (1:5.45-3) ...
Setting up gperf (3.1-1) ...
Setting up libpcre2-16-0:arm64 (10.42-4+b1) ...
Setting up libelf1t64:arm64 (0.191-2) ...
Setting up libkrb5support0:arm64 (1.21.3-3) ...
Setting up libsasl2-modules-db:arm64 (2.1.28+dfsg1-7) ...
Setting up tzdata (2024a-4) ...

Current default time zone: 'Etc/UTC'
Local time is now:      Tue Aug 27 23:58:59 UTC 2024.
Universal Time is now:  Tue Aug 27 23:58:59 UTC 2024.
Run 'dpkg-reconfigure tzdata' if you wish to change it.

Setting up ragel (6.10-4) ...
Setting up autotools-dev (20220109.1) ...
Setting up libz3-4:arm64 (4.8.12-3.1+b2) ...
Setting up libpcre2-32-0:arm64 (10.42-4+b1) ...
Setting up libgmpxx4ldbl:arm64 (2:6.3.0+dfsg-2+b1) ...
Setting up gnupg-l10n (2.2.43-8) ...
Setting up libncurses6:arm64 (6.5-2) ...
Setting up ruby-net-telnet (0.2.0-1) ...
Setting up libio-html-perl (1.004-3) ...
Setting up autopoint (0.22.5-2) ...
Setting up libb-hooks-op-check-perl:arm64 (0.22-3+b1) ...
Setting up libipc-run-perl (20231003.0-2) ...
Setting up libncursesw6:arm64 (6.5-2) ...
Setting up libk5crypto3:arm64 (1.21.3-3) ...
Setting up libsasl2-2:arm64 (2.1.28+dfsg1-7) ...
Setting up autoconf (2.72-3) ...
Setting up libfmt9:arm64 (9.1.0+ds1-2) ...
Setting up libtimedate-perl (2.3300-2) ...
Setting up ruby-webrick (1.8.1-1) ...
Setting up libpcre2-posix3:arm64 (10.42-4+b1) ...
Setting up dwz (0.15-1+b1) ...
Setting up sensible-utils (0.0.24) ...
Setting up libuchardet0:arm64 (0.0.8-1+b1) ...
Setting up librole-tiny-perl (2.002004-1) ...
Setting up netbase (6.4) ...
Setting up libsub-quote-perl (2.006008-1) ...
Setting up libclass-xsaccessor-perl (1.19-4+b3) ...
Setting up libkrb5-3:arm64 (1.21.3-3) ...
Setting up libfile-dirlist-perl (0.05-3) ...
Setting up libfile-homedir-perl (1.006-2) ...
Setting up openssl (3.3.1-7) ...
Setting up readline-common (8.2-5) ...
Setting up ruby-xmlrpc (0.3.3-2) ...
Setting up libxml2:arm64 (2.12.7+dfsg-3+b1) ...
Setting up liburi-perl (5.28-1) ...
Setting up libfile-touch-perl (0.12-2) ...
Setting up libnet-ssleay-perl:arm64 (1.94-1+b1) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake 
(automake) in auto mode
Setting up pinentry-curses (1.2.1-4) ...
Setting up libfile-stripnondeterminism-perl (1.14.0-1) ...
Setting up libhttp-date-perl (6.06-1) ...
Setting up gettext (0.22.5-2) ...
Setting up libgmp-dev:arm64 (2:6.3.0+dfsg-2+b1) ...
Setting up libfile-listing-perl (6.16-1) ...
Setting up libpcre2-dev:arm64 (10.42-4+b1) ...
Setting up libtool (2.4.7-7) ...
Setting up libnet-http-perl (6.23-1) ...
Setting up libdevel-callchecker-perl:arm64 (0.009-1) ...
Setting up libldap-2.5-0:arm64 (2.5.18+dfsg-3) ...
Setting up intltool-debian (0.35.0+20060710.6) ...
Setting up libllvm16t64:arm64 (1:16.0.6-27+b1) ...
Setting up dh-autoreconf (20) ...
Setting up patchutils (0.4.2-1) ...
Setting up ca-certificates (20240203) ...
Updating certificates in /etc/ssl/certs...
146 added, 0 removed; done.
Setting up libgssapi-krb5-2:arm64 (1.21.3-3) ...
Setting up libreadline8t64:arm64 (8.2-5) ...
Setting up dh-strip-nondeterminism (1.14.0-1) ...
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up groff-base (1.23.0-5) ...
Setting up libhtml-parser-perl:arm64 (3.83-1) ...
Setting up gpgconf (2.2.43-8) ...
Setting up libio-socket-ssl-perl (2.088-1) ...
Setting up gpg (2.2.43-8) ...
Setting up libhttp-message-perl (6.46-1) ...
Setting up libhttp-negotiate-perl (6.01-2) ...
Setting up gpg-agent (2.2.43-8) ...
Setting up libtirpc3t64:arm64 (1.3.4+ds-1.3) ...
Setting up libhttp-cookies-perl (6.11-1) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up libhtml-tree-perl (5.07-3) ...
Setting up libparams-classify-perl:arm64 (0.015-2+b3) ...
Setting up gpgsm (2.2.43-8) ...
Setting up rubygems-integration (1.18) ...
Setting up libclang1-16t64 (1:16.0.6-27+b1) ...
Setting up man-db (2.12.1-3) ...
Not building database; man-db/auto-update is not 'true'.
Setting up libclang-cpp16t64 (1:16.0.6-27+b1) ...
Setting up dirmngr (2.2.43-8) ...
Setting up doxygen (1.9.8+ds-2+b1) ...
Setting up libmodule-runtime-perl (0.016-2) ...
Setting up libnsl2:arm64 (1.3.0-3+b2) ...
Setting up gnupg (2.2.43-8) ...
Setting up libpython3.12-stdlib:arm64 (3.12.5-4) ...
Setting up libimport-into-perl (1.002005-2) ...
Setting up libmoo-perl (2.005005-1) ...
Setting up python3.12 (3.12.5-4) ...
Setting up debhelper (13.20) ...
Setting up libpython3-stdlib:arm64 (3.12.5-1) ...
Setting up python3 (3.12.5-1) ...
Setting up rake (13.2.1-1) ...
Setting up ruby-sdbm:arm64 (1.0.0-5+b4) ...
Setting up liblwp-protocol-https-perl (6.14-1) ...
Setting up libwww-perl (6.77-1) ...
Setting up ruby-rubygems (3.4.20-1) ...
Setting up devscripts (2.23.7) ...
Setting up libruby3.1t64:arm64 (3.1.2-8.3) ...
Setting up ruby3.1 (3.1.2-8.3) ...
Setting up ruby3.1-dev:arm64 (3.1.2-8.3) ...
Setting up libruby:arm64 (1:3.1+nmu1) ...
Setting up ruby-all-dev:arm64 (1:3.1+nmu1) ...
Setting up ruby (1:3.1+nmu1) ...
Setting up ruby-diff-lcs (1.5.1-1) ...
Setting up gem2deb-test-runner (2.2.4) ...
Setting up gem2deb (2.2.4) ...
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...
Processing triggers for libc-bin (2.40-2) ...
Processing triggers for ca-certificates (20240203) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
done.

+------------------------------------------------------------------------------+
| Check architectures                                                          |
+------------------------------------------------------------------------------+

Arch check ok (arm64 included in any all)

+------------------------------------------------------------------------------+
| Build environment                                                            |
+------------------------------------------------------------------------------+

Kernel: Linux 6.10.6-arm64 #1 SMP Debian 6.10.6-1 (2024-08-19) arm64 (aarch64)
Toolchain package versions: binutils_2.43.1-3 dpkg-dev_1.22.11 g++-14_14.2.0-3 
gcc-14_14.2.0-3 libc6-dev_2.40-2 libstdc++-14-dev_14.2.0-3 libstdc++6_14.2.0-3 
linux-libc-dev_6.10.6-1
Package versions: adduser_3.137 apt_2.9.8 auto-apt-proxy_14.1 autoconf_2.72-3 
automake_1:1.16.5-1.3 autopoint_0.22.5-2 autotools-dev_20220109.1 
base-files_13.5 base-passwd_3.6.4 bash_5.2.32-1 binutils_2.43.1-3 
binutils-aarch64-linux-gnu_2.43.1-3 binutils-common_2.43.1-3 
bsdextrautils_2.40.2-7 bsdutils_1:2.40.2-7 build-essential_12.10 bzip2_1.0.8-6 
ca-certificates_20240203 coreutils_9.4-3.1 cpp_4:14.1.0-2 cpp-14_14.2.0-3 
cpp-14-aarch64-linux-gnu_14.2.0-3 cpp-aarch64-linux-gnu_4:14.1.0-2 
dash_0.5.12-9 debconf_1.5.87 debhelper_13.20 debian-archive-keyring_2023.4 
debianutils_5.20 devscripts_2.23.7 dh-autoreconf_20 
dh-strip-nondeterminism_1.14.0-1 diffutils_1:3.10-1 dirmngr_2.2.43-8 
doxygen_1.9.8+ds-2+b1 dpkg_1.22.11 dpkg-dev_1.22.11 dwz_0.15-1+b1 
fakeroot_1.36-1 file_1:5.45-3 findutils_4.10.0-3 g++_4:14.1.0-2 g++-14_14.2.0-3 
g++-14-aarch64-linux-gnu_14.2.0-3 g++-aarch64-linux-gnu_4:14.1.0-2 
gcc_4:14.1.0-2 gcc-14_14.2.0-3 gcc-14-aarch64-linux-gnu_14.2.0-3 
gcc-14-base_14.2.0-3 gcc-aarch64-linux-gnu_4:14.1.0-2 gem2deb_2.2.4 
gem2deb-test-runner_2.2.4 gettext_0.22.5-2 gettext-base_0.22.5-2 gnupg_2.2.43-8 
gnupg-l10n_2.2.43-8 gperf_3.1-1 gpg_2.2.43-8 gpg-agent_2.2.43-8 
gpgconf_2.2.43-8 gpgsm_2.2.43-8 gpgv_2.2.43-8 grep_3.11-4 groff-base_1.23.0-5 
gzip_1.12-1.1 hostname_3.23+nmu2 init-system-helpers_1.66 
intltool-debian_0.35.0+20060710.6 libacl1_2.3.2-2 libapt-pkg6.0t64_2.9.8 
libarchive-zip-perl_1.68-1 libasan8_14.2.0-3 libassuan0_2.5.6-1+b1 
libatomic1_14.2.0-3 libattr1_1:2.5.2-1 libaudit-common_1:4.0.1-1 
libaudit1_1:4.0.1-1 libb-hooks-op-check-perl_0.22-3+b1 libbinutils_2.43.1-3 
libblkid1_2.40.2-7 libbsd0_0.12.2-1 libbz2-1.0_1.0.8-6 libc-bin_2.40-2 
libc-dev-bin_2.40-2 libc6_2.40-2 libc6-dev_2.40-2 libcap-ng0_0.8.5-2 
libcap2_1:2.66-5 libcc1-0_14.2.0-3 libclang-cpp16t64_1:16.0.6-27+b1 
libclang1-16t64_1:16.0.6-27+b1 libclass-method-modifiers-perl_2.15-1 
libclass-xsaccessor-perl_1.19-4+b3 libclone-perl_0.46-1+b2 libcom-err2_1.47.1-1 
libcrypt-dev_1:4.4.36-5 libcrypt1_1:4.4.36-5 libctf-nobfd0_2.43.1-3 
libctf0_2.43.1-3 libdb5.3t64_5.3.28+dfsg2-7 libdebconfclient0_0.272 
libdebhelper-perl_13.20 libdevel-callchecker-perl_0.009-1 libdpkg-perl_1.22.11 
libdynaloader-functions-perl_0.004-1 libedit2_3.1-20240517-1 libelf1t64_0.191-2 
libencode-locale-perl_1.05-3 libexpat1_2.6.2-1 libfakeroot_1.36-1 
libffi8_3.4.6-1 libfile-dirlist-perl_0.05-3 libfile-homedir-perl_1.006-2 
libfile-listing-perl_6.16-1 libfile-stripnondeterminism-perl_1.14.0-1 
libfile-touch-perl_0.12-2 libfile-which-perl_1.27-2 libfmt9_9.1.0+ds1-2 
libgcc-14-dev_14.2.0-3 libgcc-s1_14.2.0-3 libgcrypt20_1.11.0-6 
libgdbm-compat4t64_1.24-2 libgdbm6t64_1.24-2 libgmp-dev_2:6.3.0+dfsg-2+b1 
libgmp10_2:6.3.0+dfsg-2+b1 libgmpxx4ldbl_2:6.3.0+dfsg-2+b1 
libgnutls30t64_3.8.6-2 libgomp1_14.2.0-3 libgpg-error0_1.50-3 
libgprofng0_2.43.1-3 libgssapi-krb5-2_1.21.3-3 libhogweed6t64_3.10-1 
libhtml-parser-perl_3.83-1 libhtml-tagset-perl_3.24-1 libhtml-tree-perl_5.07-3 
libhttp-cookies-perl_6.11-1 libhttp-date-perl_6.06-1 
libhttp-message-perl_6.46-1 libhttp-negotiate-perl_6.01-2 libhwasan0_14.2.0-3 
libicu72_72.1-5 libidn2-0_2.3.7-2 libimport-into-perl_1.002005-2 
libio-html-perl_1.004-3 libio-pty-perl_1:1.20-1+b1 
libio-socket-ssl-perl_2.088-1 libipc-run-perl_20231003.0-2 libisl23_0.26-3+b2 
libitm1_14.2.0-3 libjansson4_2.14-2+b2 libk5crypto3_1.21.3-3 
libkeyutils1_1.6.3-3 libkrb5-3_1.21.3-3 libkrb5support0_1.21.3-3 
libksba8_1.6.7-2 libldap-2.5-0_2.5.18+dfsg-3 libllvm16t64_1:16.0.6-27+b1 
liblsan0_14.2.0-3 liblwp-mediatypes-perl_6.04-2 
liblwp-protocol-https-perl_6.14-1 liblz4-1_1.9.4-3 liblzma5_5.6.2-2 
libmagic-dev_1:5.45-3 libmagic-mgc_1:5.45-3 libmagic1t64_1:5.45-3 
libmd0_1.1.0-2 libmodule-runtime-perl_0.016-2 libmoo-perl_2.005005-1 
libmount1_2.40.2-7 libmpc3_1.3.1-1+b2 libmpfr6_4.2.1-1+b1 libncurses6_6.5-2 
libncursesw6_6.5-2 libnet-http-perl_6.23-1 libnet-ssleay-perl_1.94-1+b1 
libnettle8t64_3.10-1 libnpth0t64_1.6-3.1 libnsl2_1.3.0-3+b2 
libp11-kit0_0.25.5-2 libpam-modules_1.5.3-7 libpam-modules-bin_1.5.3-7 
libpam-runtime_1.5.3-7 libpam0g_1.5.3-7 libparams-classify-perl_0.015-2+b3 
libpcre2-16-0_10.42-4+b1 libpcre2-32-0_10.42-4+b1 libpcre2-8-0_10.42-4+b1 
libpcre2-dev_10.42-4+b1 libpcre2-posix3_10.42-4+b1 libperl5.38t64_5.38.2-5 
libpipeline1_1.5.8-1 libpython3-stdlib_3.12.5-1 libpython3.12-minimal_3.12.5-4 
libpython3.12-stdlib_3.12.5-4 libreadline8t64_8.2-5 
librole-tiny-perl_2.002004-1 libruby_1:3.1+nmu1 libruby3.1t64_3.1.2-8.3 
libsasl2-2_2.1.28+dfsg1-7 libsasl2-modules-db_2.1.28+dfsg1-7 
libseccomp2_2.5.5-1+b1 libselinux1_3.7-1+b1 libsemanage-common_3.7-1 
libsemanage2_3.7-1 libsepol2_3.7-1 libsframe1_2.43.1-3 libsmartcols1_2.40.2-7 
libsqlite3-0_3.46.1-1 libssl3t64_3.3.1-7 libstdc++-14-dev_14.2.0-3 
libstdc++6_14.2.0-3 libsub-quote-perl_2.006008-1 libsystemd0_256.5-1 
libtasn1-6_4.19.0-3+b2 libtimedate-perl_2.3300-2 libtinfo6_6.5-2 
libtirpc-common_1.3.4+ds-1.3 libtirpc3t64_1.3.4+ds-1.3 libtool_2.4.7-7 
libtry-tiny-perl_0.32-1 libtsan2_14.2.0-3 libubsan1_14.2.0-3 
libuchardet0_0.0.8-1+b1 libudev1_256.5-1 libunistring5_1.2-1 liburi-perl_5.28-1 
libuuid1_2.40.2-7 libwww-perl_6.77-1 libwww-robotrules-perl_6.02-1 
libxapian30_1.4.25-1 libxml2_2.12.7+dfsg-3+b1 libxxhash0_0.8.2-2+b1 
libyaml-0-2_0.2.5-1+b1 libz3-4_4.8.12-3.1+b2 libzstd1_1.5.6+dfsg-1 
linux-libc-dev_6.10.6-1 login.defs_1:4.16.0-4 m4_1.4.19-4 make_4.3-4.1 
man-db_2.12.1-3 mawk_1.3.4.20240819-3 media-types_10.1.0 ncurses-base_6.5-2 
ncurses-bin_6.5-2 netbase_6.4 openssl_3.3.1-7 openssl-provider-legacy_3.3.1-7 
passwd_1:4.16.0-4 patch_2.7.6-7 patchutils_0.4.2-1 perl_5.38.2-5 
perl-base_5.38.2-5 perl-modules-5.38_5.38.2-5 perl-openssl-defaults_7+b2 
pinentry-curses_1.2.1-4 po-debconf_1.0.21+nmu1 python3_3.12.5-1 
python3-minimal_3.12.5-1 python3.12_3.12.5-4 python3.12-minimal_3.12.5-4 
ragel_6.10-4 rake_13.2.1-1 readline-common_8.2-5 rpcsvc-proto_1.4.3-1 
ruby_1:3.1+nmu1 ruby-all-dev_1:3.1+nmu1 ruby-diff-lcs_1.5.1-1 
ruby-net-telnet_0.2.0-1 ruby-rubygems_3.4.20-1 ruby-sdbm_1.0.0-5+b4 
ruby-webrick_1.8.1-1 ruby-xmlrpc_0.3.3-2 ruby3.1_3.1.2-8.3 
ruby3.1-dev_3.1.2-8.3 rubygems-integration_1.18 
sbuild-build-depends-main-dummy_0.invalid.0 sed_4.9-2 sensible-utils_0.0.24 
swig_4.2.1-1 sysvinit-utils_3.10-1 tar_1.35+dfsg-3 tzdata_2024a-4 
usr-is-merged_39 util-linux_2.40.2-7 wdiff_1.2.2-6 xz-utils_5.6.2-2 
zlib1g_1:1.3.dfsg+really1.3.1-1

+------------------------------------------------------------------------------+
| Build                                                                        |
+------------------------------------------------------------------------------+


Unpack source
-------------

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 3.0 (quilt)
Source: ohcount
Binary: ohcount, ohcount-doc
Architecture: any all
Version: 4.0.0-4
Maintainer: Sylvestre Ledru <sylves...@debian.org>
Homepage: https://github.com/blackducksoftware/ohcount
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/debian/ohcount
Vcs-Git: https://salsa.debian.org/debian/ohcount.git
Build-Depends: debhelper-compat (= 13), libpcre2-dev, gem2deb, rake, ragel (>= 
6.3), ruby-diff-lcs, doxygen, gperf, file, libmagic-dev, swig
Package-List:
 ohcount deb utils optional arch=any
 ohcount-doc deb doc optional arch=all
Checksums-Sha1:
 5300aacf2815072cd7fc09bc03fb08550cec4cbe 1301002 ohcount_4.0.0.orig.tar.gz
 c67ed84e9224348eaf19f956429b247e5622ab14 14292 ohcount_4.0.0-4.debian.tar.xz
Checksums-Sha256:
 d71f69fd025f5bae58040988108f0d8d84f7204edda1247013cae555bfdae1b9 1301002 
ohcount_4.0.0.orig.tar.gz
 a04b692b8002bc031cedcd93d524288bfb9130db3ed23790295b52a3ed1832c5 14292 
ohcount_4.0.0-4.debian.tar.xz
Files:
 8828069ff8ec699fb171917ea4286ec2 1301002 ohcount_4.0.0.orig.tar.gz
 60715895c55e29e82469518a2227a2d0 14292 ohcount_4.0.0-4.debian.tar.xz
Ruby-Versions: all

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAmWErQQACgkQfmUo2nUv
G+HdDQ//Sg5STS7J9d32kJjtLWr/l0Z7Op1dxG6RSEAALthLpWHVE+18+vyQTpBV
PX8EB8DKzd971ywRVx3C6bCFXuh8SaGV7FiQwzqwMOIouLyjGmjI+p/sXj2kcEoZ
pXC/MtwfzX8demGk8WWuhO0y39r7e2RzLxGdI/gzl034dY0Gfs3h1Qhzhdl+n+/9
2tj7GhFrZ0F2nm0yzF2Xlb2gU0BFwzcD5viM7O0Z9Hyll+gsEwi1+WUycjkTcvuL
PcQuCgEriyVnojRKS1uyhx+33KkYnzmWlzlsRhWSs+6Ht5JBqaiMO4+3yQYbsQsL
PFDHcPtOVAEt8r5M8mMiC6PjEyA4DsgrORX5idgwpo1bB0BWwAtiFi6EgqZVLaMk
I8GsKH8K1U1O23+jyygoYNXyRlSiw63BXy6JZVd6Wl4C4WnHEcuWOE2iWmEpkPPU
Nu5loiQ3DWoYdQwQZw5OS0fhocvn101YaQAELYYy7erKq7xPzxW1POGqwsrTBWGF
D0kI7vbxmIouUdjpOPCFVVFwTtppWcGBwQWaUfqxkIyQiqqQOp81PETC9hiZcCba
drXR32M9Sq12q6/QuAFBiu0JR5XiGQaNq74Cby/5kmGPJCAlqDVrgfuUGSObbYx9
ABVu90rzFUxOny3lLKMGAymS/J25Y/fQwVabJdUceR9C+YTkmjg=
=tElM
-----END PGP SIGNATURE-----

gpgv: Signature made Thu Dec 21 21:24:20 2023 UTC
gpgv:                using RSA key B60DB5994D39BEC4D1A95CCF7E6528DA752F1BE1
gpgv: Can't check signature: No public key
dpkg-source: warning: cannot verify inline signature for ./ohcount_4.0.0-4.dsc: 
no acceptable signature found
dpkg-source: info: extracting ohcount in /<<PKGBUILDDIR>>
dpkg-source: info: unpacking ohcount_4.0.0.orig.tar.gz
dpkg-source: info: unpacking ohcount_4.0.0-4.debian.tar.xz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: applying disabled_test_suite.patch
dpkg-source: info: applying build-cflags.diff
dpkg-source: info: applying fix-buffer-overflow.patch
dpkg-source: info: applying swift.patch
dpkg-source: info: applying pcre2.patch

Check disk space
----------------

Sufficient free space for build

User Environment
----------------

APT_CONFIG=/var/lib/sbuild/apt.conf
HOME=/sbuild-nonexistent
LANG=pt_BR.UTF-8
LC_ALL=C.UTF-8
LOGNAME=terceiro
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-arm64-sbuild
SCHROOT_CHROOT_NAME=unstable-arm64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=terceiro
SCHROOT_SESSION_ID=unstable-arm64-sbuild-dceb5875-6530-4243-98f7-bee36fe168bd
SCHROOT_UID=1000
SCHROOT_USER=terceiro
SHELL=/bin/sh
USER=terceiro

dpkg-buildpackage
-----------------

Command: dpkg-buildpackage --sanitize-env -us -uc -rfakeroot -j32
dpkg-buildpackage: info: source package ohcount
dpkg-buildpackage: info: source version 4.0.0-4
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Sylvestre Ledru 
<sylves...@debian.org>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture arm64
 fakeroot debian/rules clean
dh clean --buildsystem=ruby --with ruby
   debian/rules override_dh_auto_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
dh_auto_clean -O--buildsystem=ruby
        dh_ruby --clean
W: XS-Ruby-Versions is deprecated, and will be ignored
./build clean
# Build script for Ohcount.
# Written by Mitchell Foral. mitchell<att>caladbolg.net.

# Options
# Change these for your system configuration.
if [ `uname` != "Darwin" ]
then
  # Linux
  INC_DIR=
  LIB_DIR=

  if [ `uname` == "FreeBSD" ] 
  then 
    INC_DIR=/usr/local/include 
    LIB_DIR=/usr/local/lib 
  fi 

  # You shouldn't have to change the following.
  CFLAGS=-O3
  WARN="-Wall -Wno-pointer-to-int-cast -Wno-parentheses"
  SHARED=-shared
  SHARED_NAME=libohcount.so
  RB_SHARED=-shared
  RB_SHARED_NAME=ohcount.so
else
  # Mac OSX
  INC_DIR=/opt/local/include
  LIB_DIR=/opt/local/lib
  # You shouldn't have to change the following.
  CFLAGS="-fno-common -g"
  WARN="-Wall -Wno-parentheses"
  SHARED="-dynamiclib -L$LIB_DIR -lpcre2-8"
  SHARED_NAME=libohcount.dylib
  RB_SHARED="-dynamic -bundle -lruby"
  RB_SHARED_NAME=ohcount.bundle
fi

# C compiler and flags
cc="gcc -fPIC -g $CFLAGS $WARN -I$INC_DIR -L$LIB_DIR"

# ARCHITECTURE
arch=`ruby/print_arch`
unhandled /etc/os-release result: debian

# Ohcount source files
files="src/sourcefile.c \
       src/detector.c \
       src/licenses.c \
       src/parser.o \
       src/loc.c \
       src/log.c \
       src/diff.c \
       src/parsed_language.c \
       src/hash/language_hash.c"

# If any src/hash/*.gperf file is newer than the header files (which were
# presumably generated together), regenerate the headers.
build_hash_headers()
{
  if [[ -z `ls src/hash/ | grep "_hash.h$"` ||
        ! -z `find src/hash/*.gperf -newer src/hash/parser_hash.h` ]]
  then
    echo "Generating hash headers"
    sh -c "cd src/hash/ && ./generate_headers" || exit 1
  fi
}

# If src/parser.o does not exist, or if there are Ragel parsers or parser
# header files newer than the existing parser.o, recompile parser.o.
build_parser_o()
{
  if [[ ! -f src/parser.o ||
        ! -z `find src/parsers/*.{h,rl} -newer src/parser.o` ]]
  then
    bash -c "cd src/parsers/ && bash ./compile" || exit 1
    echo "Building src/parser.c (will take a while)"
    bash -c "$cc -c src/parser.c -o src/parser.o" || exit 1
  fi
}

build_shared()
{
  build_hash_headers
  build_parser_o
  if [[ ! -f src/$SHARED_NAME ||
        ! -z `find src/*.{h,c} -newer src/$SHARED_NAME` ]]
  then
    echo "Building shared library"
    sh -c "$cc $SHARED $files -o src/$SHARED_NAME" || exit 1
  fi
}

build_ohcount()
{
  build_hash_headers
  build_parser_o
  echo "Building Ohcount"
  mkdir -p bin/
  sh -c "$cc src/ohcount.c $files -o bin/ohcount -lpcre2-8 -lmagic" || exit 1
}

build_test_suite()
{
  build_hash_headers
  build_parser_o
  echo "Building test suite"
  sh -c "$cc test/unit/all_tests.c $files -o test/unit/run_tests -lpcre2-8 
-lmagic" \
    || exit 1
}

run_test_suite()
{
  echo "Running test suite"
  echo "disabled test suite, does not work"
}

RUBY_HEADER_DIR=`ruby -rmkmf -e 'print RbConfig::expand(CONFIG["rubyhdrdir"])'`
rbconfig_arch=`ruby -rmkmf -e 'print RbConfig::expand(CONFIG["arch"])'`
RUBY_CONFIG_DIR="$RUBY_HEADER_DIR/$rbconfig_arch"
RUBY_VERSION=`ruby -rmkmf -e 'print RbConfig::expand(CONFIG["ruby_version"])'`

build_ruby_bindings()
{
        echo "Generating Ruby bindings for $arch"
        sh -c "swig -ruby -o ruby/ohcount_wrap.c ruby/ohcount.i" || exit 1
        mkdir -p ruby/$arch
    echo $cc $RB_SHARED ruby/ohcount_wrap.c $files -o 
ruby/$arch/$RB_SHARED_NAME \
    -I$RUBY_HEADER_DIR -I$RUBY_CONFIG_DIR  
-I/usr/include/$rbconfig_arch/ruby-$RUBY_VERSION  \
    -lpcre2-8 -lmagic
  sh -c "$cc $RB_SHARED ruby/ohcount_wrap.c $files -o 
ruby/$arch/$RB_SHARED_NAME \
    -I$RUBY_HEADER_DIR -I$RUBY_CONFIG_DIR  
-I/usr/include/$rbconfig_arch/ruby-$RUBY_VERSION  \
    -lpcre2-8 -lmagic" || exit 1
  sh -c "cd test/unit/ruby && ruby ruby_test.rb" || exit 1
}

if [ $# -eq 0 ] || [ $1 == "all" ]
then
  build_ohcount
  build_test_suite
  run_test_suite
  build_ruby_bindings
  echo $success
elif [ $1 == "shared" ]
then
  build_shared
  echo "Build successful; $SHARED_NAME is in src/"
elif [ $1 == "ohcount" ]
then
  build_ohcount
  echo "Build successful; ohcount is in bin/"
elif [ $1 == "tests" ]
then
  build_test_suite
  run_test_suite
elif [ $1 == "ruby" ]
then
  build_ruby_bindings
  echo "Build successful; $RB_SHARED_NAME is in ruby/$arch"
elif [ $1 == "clean" ]
then
  rm -f bin/ohcount
  rm -f test/unit/run_tests
  rm -f src/parser.o
  rm -f src/parsers/*.h
  rm -f src/hash/*.h
  rm -f src/hash/*.c
  rm -f src/$SHARED_NAME
  rm -f ruby/$RB_SHARED_NAME
  rm -rf ruby/$arch/*
  rm -f ruby/ohcount_wrap.c
else
  echo "Usage: build [all|ohcount|shared|tests|ruby|clean]"
fi
rm -rf doc_build
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_autoreconf_clean -O--buildsystem=ruby
   dh_clean -O--buildsystem=ruby
 dpkg-source -b .
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building ohcount using existing ./ohcount_4.0.0.orig.tar.gz
dpkg-source: info: using patch list from debian/patches/series
dpkg-source: info: building ohcount in ohcount_4.0.0-4.debian.tar.xz
dpkg-source: info: building ohcount in ohcount_4.0.0-4.dsc
 debian/rules build
make: 'build' is up to date.
 fakeroot debian/rules binary
dh binary --buildsystem=ruby --with ruby
   dh_update_autotools_config -O--buildsystem=ruby
   dh_autoreconf -O--buildsystem=ruby
   dh_auto_configure -O--buildsystem=ruby
        dh_ruby --configure
   dh_auto_build -O--buildsystem=ruby
        dh_ruby --build
   dh_auto_test -O--buildsystem=ruby
        dh_ruby --test
   create-stamp debian/debhelper-build-stamp
   dh_testroot -O--buildsystem=ruby
   dh_prep -O--buildsystem=ruby
   dh_auto_install -O--buildsystem=ruby
        dh_ruby --install /<<PKGBUILDDIR>>/debian/tmp

┌──────────────────────────────────────────────────────────────────────────────┐
│ Install files                                                                │
└──────────────────────────────────────────────────────────────────────────────┘


┌──────────────────────────────────────────────────────────────────────────────┐
│ Install Rubygems integration metadata                                        │
└──────────────────────────────────────────────────────────────────────────────┘

/usr/bin/ruby3.1 /usr/bin/gem2deb-test-runner

┌──────────────────────────────────────────────────────────────────────────────┐
│ Run tests for ruby3.1: no test suite!                                        │
└──────────────────────────────────────────────────────────────────────────────┘


┌──────────────────────────────────────────────────────────────────────────────┐
│ dh_ruby --install finished                                                   │
└──────────────────────────────────────────────────────────────────────────────┘

   debian/rules override_dh_install
make[1]: Entering directory '/<<PKGBUILDDIR>>'
./build all
# Build script for Ohcount.
# Written by Mitchell Foral. mitchell<att>caladbolg.net.

# Options
# Change these for your system configuration.
if [ `uname` != "Darwin" ]
then
  # Linux
  INC_DIR=
  LIB_DIR=

  if [ `uname` == "FreeBSD" ] 
  then 
    INC_DIR=/usr/local/include 
    LIB_DIR=/usr/local/lib 
  fi 

  # You shouldn't have to change the following.
  CFLAGS=-O3
  WARN="-Wall -Wno-pointer-to-int-cast -Wno-parentheses"
  SHARED=-shared
  SHARED_NAME=libohcount.so
  RB_SHARED=-shared
  RB_SHARED_NAME=ohcount.so
else
  # Mac OSX
  INC_DIR=/opt/local/include
  LIB_DIR=/opt/local/lib
  # You shouldn't have to change the following.
  CFLAGS="-fno-common -g"
  WARN="-Wall -Wno-parentheses"
  SHARED="-dynamiclib -L$LIB_DIR -lpcre2-8"
  SHARED_NAME=libohcount.dylib
  RB_SHARED="-dynamic -bundle -lruby"
  RB_SHARED_NAME=ohcount.bundle
fi

# C compiler and flags
cc="gcc -fPIC -g $CFLAGS $WARN -I$INC_DIR -L$LIB_DIR"

# ARCHITECTURE
arch=`ruby/print_arch`
unhandled /etc/os-release result: debian

# Ohcount source files
files="src/sourcefile.c \
       src/detector.c \
       src/licenses.c \
       src/parser.o \
       src/loc.c \
       src/log.c \
       src/diff.c \
       src/parsed_language.c \
       src/hash/language_hash.c"

# If any src/hash/*.gperf file is newer than the header files (which were
# presumably generated together), regenerate the headers.
build_hash_headers()
{
  if [[ -z `ls src/hash/ | grep "_hash.h$"` ||
        ! -z `find src/hash/*.gperf -newer src/hash/parser_hash.h` ]]
  then
    echo "Generating hash headers"
    sh -c "cd src/hash/ && ./generate_headers" || exit 1
  fi
}

# If src/parser.o does not exist, or if there are Ragel parsers or parser
# header files newer than the existing parser.o, recompile parser.o.
build_parser_o()
{
  if [[ ! -f src/parser.o ||
        ! -z `find src/parsers/*.{h,rl} -newer src/parser.o` ]]
  then
    bash -c "cd src/parsers/ && bash ./compile" || exit 1
    echo "Building src/parser.c (will take a while)"
    bash -c "$cc -c src/parser.c -o src/parser.o" || exit 1
  fi
}

build_shared()
{
  build_hash_headers
  build_parser_o
  if [[ ! -f src/$SHARED_NAME ||
        ! -z `find src/*.{h,c} -newer src/$SHARED_NAME` ]]
  then
    echo "Building shared library"
    sh -c "$cc $SHARED $files -o src/$SHARED_NAME" || exit 1
  fi
}

build_ohcount()
{
  build_hash_headers
  build_parser_o
  echo "Building Ohcount"
  mkdir -p bin/
  sh -c "$cc src/ohcount.c $files -o bin/ohcount -lpcre2-8 -lmagic" || exit 1
}

build_test_suite()
{
  build_hash_headers
  build_parser_o
  echo "Building test suite"
  sh -c "$cc test/unit/all_tests.c $files -o test/unit/run_tests -lpcre2-8 
-lmagic" \
    || exit 1
}

run_test_suite()
{
  echo "Running test suite"
  echo "disabled test suite, does not work"
}

RUBY_HEADER_DIR=`ruby -rmkmf -e 'print RbConfig::expand(CONFIG["rubyhdrdir"])'`
rbconfig_arch=`ruby -rmkmf -e 'print RbConfig::expand(CONFIG["arch"])'`
RUBY_CONFIG_DIR="$RUBY_HEADER_DIR/$rbconfig_arch"
RUBY_VERSION=`ruby -rmkmf -e 'print RbConfig::expand(CONFIG["ruby_version"])'`

build_ruby_bindings()
{
        echo "Generating Ruby bindings for $arch"
        sh -c "swig -ruby -o ruby/ohcount_wrap.c ruby/ohcount.i" || exit 1
        mkdir -p ruby/$arch
    echo $cc $RB_SHARED ruby/ohcount_wrap.c $files -o 
ruby/$arch/$RB_SHARED_NAME \
    -I$RUBY_HEADER_DIR -I$RUBY_CONFIG_DIR  
-I/usr/include/$rbconfig_arch/ruby-$RUBY_VERSION  \
    -lpcre2-8 -lmagic
  sh -c "$cc $RB_SHARED ruby/ohcount_wrap.c $files -o 
ruby/$arch/$RB_SHARED_NAME \
    -I$RUBY_HEADER_DIR -I$RUBY_CONFIG_DIR  
-I/usr/include/$rbconfig_arch/ruby-$RUBY_VERSION  \
    -lpcre2-8 -lmagic" || exit 1
  sh -c "cd test/unit/ruby && ruby ruby_test.rb" || exit 1
}

if [ $# -eq 0 ] || [ $1 == "all" ]
then
  build_ohcount
  build_test_suite
  run_test_suite
  build_ruby_bindings
  echo $success
elif [ $1 == "shared" ]
then
  build_shared
  echo "Build successful; $SHARED_NAME is in src/"
elif [ $1 == "ohcount" ]
then
  build_ohcount
  echo "Build successful; ohcount is in bin/"
elif [ $1 == "tests" ]
then
  build_test_suite
  run_test_suite
elif [ $1 == "ruby" ]
then
  build_ruby_bindings
  echo "Build successful; $RB_SHARED_NAME is in ruby/$arch"
elif [ $1 == "clean" ]
then
  rm -f bin/ohcount
  rm -f test/unit/run_tests
  rm -f src/parser.o
  rm -f src/parsers/*.h
  rm -f src/hash/*.h
  rm -f src/hash/*.c
  rm -f src/$SHARED_NAME
  rm -f ruby/$RB_SHARED_NAME
  rm -rf ruby/$arch/*
  rm -f ruby/ohcount_wrap.c
else
  echo "Usage: build [all|ohcount|shared|tests|ruby|clean]"
fi
Generating hash headers
Found gperf, making headers...
1 input keys have identical hash values, examine output carefully...
Found ragel, compiling...
Compiling actionscript.rl
Compiling ada.rl
Compiling ampl.rl
Compiling assembler.rl
Compiling augeas.rl
Compiling autoconf.rl
Compiling automake.rl
Compiling awk.rl
Compiling bat.rl
Compiling bfpp.rl
Compiling blitzmax.rl
Compiling boo.rl
Compiling brainfuck.rl
Compiling c.rl
Compiling chaiscript.rl
Compiling classic_basic.rl
Compiling clearsilver.rl
Compiling clearsilverhtml.rl
Compiling cmake.rl
Compiling coffeescript.rl
Compiling common.rl
Compiling coq.rl
Compiling crystal.rl
Compiling cs_aspx.rl
Compiling css.rl
Compiling d.rl
Compiling dcl.rl
Compiling dylan.rl
Compiling ebuild.rl
Compiling eiffel.rl
Compiling erlang.rl
Compiling exheres.rl
Compiling factor.rl
Compiling forth.rl
Compiling fortranfixed.rl
Compiling fortranfree.rl
Compiling fsharp.rl
Compiling glsl.rl
Compiling golang.rl
Compiling grace.rl
Compiling groovy.rl
Compiling haml.rl
Compiling haskell.rl
Compiling haxe.rl
Compiling html.rl
Compiling idl_pvwave.rl
Compiling jam.rl
Compiling java.rl
Compiling javascript.rl
Compiling jsp.rl
Compiling kotlin.rl
Compiling limbo.rl
Compiling lisp.rl
Compiling livecode.rl
Compiling logtalk.rl
Compiling lua.rl
Compiling makefile.rl
Compiling mathematica.rl
Compiling matlab.rl
Compiling metafont.rl
Compiling metapost.rl
Compiling metapost_with_tex.rl
Compiling modelica.rl
Compiling modula2.rl
Compiling modula3.rl
Compiling mxml.rl
Compiling nix.rl
Compiling nsis.rl
Compiling oberon.rl
Compiling objective_c.rl
Compiling objective_j.rl
Compiling ocaml.rl
Compiling octave.rl
Compiling pascal.rl
Compiling perl.rl
Compiling php.rl
Compiling phphtml.rl
Compiling pike.rl
Compiling postscript.rl
Compiling prolog.rl
Compiling puppet.rl
Compiling python.rl
Compiling r.rl
Compiling rebol.rl
Compiling rexx.rl
Compiling rhtml.rl
Compiling ruby.rl
Compiling rust.rl
Compiling scala.rl
Compiling scilab.rl
Compiling shell.rl
Compiling smalltalk.rl
Compiling sql.rl
Compiling stratego.rl
Compiling structured_basic.rl
Compiling swift.rl
Compiling tcl.rl
Compiling tex.rl
Compiling tex_dtx.rl
Compiling unrealscript.rl
Compiling vb_aspx.rl
Compiling vhdl.rl
Compiling vim.rl
Compiling visual_basic.rl
Compiling xaml.rl
Compiling xml.rl
Compiling xmlschema.rl
Compiling xslt.rl
Building src/parser.c (will take a while)
Building Ohcount
src/sourcefile.c: In function ‘ohcount_sourcefile_new’:
src/sourcefile.c:27:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   27 |   strncpy(sourcefile->filepath, filepath, length);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:25:16: note: length computed here
   25 |   int length = strlen(filepath);
      |                ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_set_diskpath’:
src/sourcefile.c:67:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   67 |   strncpy(sourcefile->diskpath, diskpath, size);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:65:14: note: length computed here
   65 |   int size = strlen(diskpath);
      |              ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_set_contents’:
src/sourcefile.c:77:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   77 |   strncpy(sourcefile->contents, contents, size);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:75:14: note: length computed here
   75 |   int size = strlen(contents);
      |              ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_list_add_directory’:
src/sourcefile.c:373:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
  373 |   strncpy(filepath, directory, strlen(directory));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:373:3: note: length computed here
  373 |   strncpy(filepath, directory, strlen(directory));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:384:7: warning: ‘strncpy’ specified bound depends on the 
length of the source argument [-Wstringop-truncation]
  384 |       strncpy(f_p, (const char *)file->d_name, length);
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:383:20: note: length computed here
  383 |       int length = strlen(file->d_name);
      |                    ^~~~~~~~~~~~~~~~~~~~
src/detector.c: In function ‘ohcount_is_binary_filename’:
src/detector.c:1090:5: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
 1090 |     strncpy(lowerext, p, length);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/detector.c:1085:18: note: length computed here
 1085 |     int length = strlen(p);
      |                  ^~~~~~~~~
Building test suite
In file included from test/unit/all_tests.c:7:
test/unit/license_test.h: In function ‘very_long_file_test’:
test/unit/license_test.h:70:9: warning: ‘strncpy’ output truncated before 
terminating nul copying 9 bytes from a string of the same length 
[-Wstringop-truncation]
   70 |         strncpy(a, "int = 1;\n", strlen("int = 1;\n"));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from test/unit/all_tests.c:10:
test/unit/sourcefile_test.h: In function ‘test_sourcefile_diff_very_long’:
test/unit/sourcefile_test.h:138:9: warning: ‘strncpy’ output truncated before 
terminating nul copying 9 bytes from a string of the same length 
[-Wstringop-truncation]
  138 |         strncpy(a, "int = 1;\n", strlen("int = 1;\n"));
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit/license_test.h: In function ‘src_vs_expected_tests’:
test/unit/license_test.h:14:3: warning: ‘strncpy’ output truncated before 
terminating nul copying 16 bytes from a string of the same length 
[-Wstringop-truncation]
   14 |   strncpy(src, src_licenses, strlen(src_licenses));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit/license_test.h:19:3: warning: ‘strncpy’ output truncated before 
terminating nul copying 21 bytes from a string of the same length 
[-Wstringop-truncation]
   19 |   strncpy(expected, expected_licenses, strlen(expected_licenses));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from test/unit/all_tests.c:9:
test/unit/parser_test.h: In function ‘test_parser_verify_parses’:
test/unit/parser_test.h:205:3: warning: ‘strncpy’ output truncated before 
terminating nul copying 11 bytes from a string of the same length 
[-Wstringop-truncation]
  205 |   strncpy(src, src_dir, strlen(src_dir));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit/parser_test.h:210:3: warning: ‘strncpy’ output truncated before 
terminating nul copying 16 bytes from a string of the same length 
[-Wstringop-truncation]
  210 |   strncpy(expected, expected_dir, strlen(expected_dir));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit/license_test.h: In function ‘src_vs_expected_tests’:
test/unit/license_test.h:32:9: warning: ‘strncpy’ specified bound depends on 
the length of the source argument [-Wstringop-truncation]
   32 |         strncpy(s_p, (const char *)file->d_name, length);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit/license_test.h:31:18: note: length computed here
   31 |         length = strlen(file->d_name);
      |                  ^~~~~~~~~~~~~~~~~~~~
test/unit/parser_test.h: In function ‘test_parser_verify_parses’:
test/unit/parser_test.h:220:9: warning: ‘strncpy’ specified bound depends on 
the length of the source argument [-Wstringop-truncation]
  220 |         strncpy(s_p, (const char *)file->d_name, length);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit/parser_test.h:219:22: note: length computed here
  219 |         int length = strlen(file->d_name);
      |                      ^~~~~~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_new’:
src/sourcefile.c:27:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   27 |   strncpy(sourcefile->filepath, filepath, length);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:25:16: note: length computed here
   25 |   int length = strlen(filepath);
      |                ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_set_diskpath’:
src/sourcefile.c:67:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   67 |   strncpy(sourcefile->diskpath, diskpath, size);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:65:14: note: length computed here
   65 |   int size = strlen(diskpath);
      |              ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_set_contents’:
src/sourcefile.c:77:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   77 |   strncpy(sourcefile->contents, contents, size);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:75:14: note: length computed here
   75 |   int size = strlen(contents);
      |              ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_list_add_directory’:
src/sourcefile.c:373:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
  373 |   strncpy(filepath, directory, strlen(directory));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:373:3: note: length computed here
  373 |   strncpy(filepath, directory, strlen(directory));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:384:7: warning: ‘strncpy’ specified bound depends on the 
length of the source argument [-Wstringop-truncation]
  384 |       strncpy(f_p, (const char *)file->d_name, length);
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:383:20: note: length computed here
  383 |       int length = strlen(file->d_name);
      |                    ^~~~~~~~~~~~~~~~~~~~
src/detector.c: In function ‘ohcount_is_binary_filename’:
src/detector.c:1090:5: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
 1090 |     strncpy(lowerext, p, length);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/detector.c:1085:18: note: length computed here
 1085 |     int length = strlen(p);
      |                  ^~~~~~~~~
Running test suite
disabled test suite, does not work
Generating Ruby bindings for aarch64-linux-gnu_debian
gcc -fPIC -g -O3 -Wall -Wno-pointer-to-int-cast -Wno-parentheses -I -L -shared 
ruby/ohcount_wrap.c src/sourcefile.c src/detector.c src/licenses.c src/parser.o 
src/loc.c src/log.c src/diff.c src/parsed_language.c src/hash/language_hash.c 
-o ruby/aarch64-linux-gnu_debian/ohcount.so -I/usr/include/ruby-3.1.0 
-I/usr/include/ruby-3.1.0/aarch64-linux-gnu 
-I/usr/include/aarch64-linux-gnu/ruby-3.1.0 -lpcre2-8 -lmagic
ruby/ohcount_wrap.c: In function ‘new_SourceFileListItem’:
ruby/ohcount_wrap.c:2241:9: warning: ‘rb_iterate’ is deprecated: by: 
rb_block_call since 1.9 [-Wdeprecated-declarations]
 2241 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_directory, 
(VALUE)list);
      |         ^~~~~~~~~~
In file included from /usr/include/ruby-3.1.0/ruby/ruby.h:40,
                 from /usr/include/ruby-3.1.0/ruby.h:38,
                 from ruby/ohcount_wrap.c:908:
/usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:7: note: declared here
  283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
rb_block_call_func_t proc, VALUE data2);
      |       ^~~~~~~~~~
ruby/ohcount_wrap.c:2241:34: error: passing argument 3 of ‘rb_iterate’ from 
incompatible pointer type [-Wincompatible-pointer-types]
 2241 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_directory, 
(VALUE)list);
      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                  |
      |                                  VALUE (*)(VALUE,  SourceFileList *) 
{aka long unsigned int (*)(long unsigned int,  struct SourceFileListItem *)}
/usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:75: note: expected 
‘rb_block_call_func_t’ {aka ‘long unsigned int (*)(long unsigned int,  long 
unsigned int,  int,  const long unsigned int *, long unsigned int)’} but 
argument is of type ‘VALUE (*)(VALUE,  SourceFileList *)’ {aka ‘long unsigned 
int (*)(long unsigned int,  struct SourceFileListItem *)’}
  283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
rb_block_call_func_t proc, VALUE data2);
      |                                                      
~~~~~~~~~~~~~~~~~~~~~^~~~
ruby/ohcount_wrap.c:2244:9: warning: ‘rb_iterate’ is deprecated: by: 
rb_block_call since 1.9 [-Wdeprecated-declarations]
 2244 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_file, 
(VALUE)list);
      |         ^~~~~~~~~~
/usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:7: note: declared here
  283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
rb_block_call_func_t proc, VALUE data2);
      |       ^~~~~~~~~~
ruby/ohcount_wrap.c:2244:34: error: passing argument 3 of ‘rb_iterate’ from 
incompatible pointer type [-Wincompatible-pointer-types]
 2244 |         rb_iterate(rb_each, val, SourceFileListItem_rb_add_file, 
(VALUE)list);
      |                                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                  |
      |                                  VALUE (*)(VALUE,  SourceFileList *) 
{aka long unsigned int (*)(long unsigned int,  struct SourceFileListItem *)}
/usr/include/ruby-3.1.0/ruby/internal/iterator.h:283:75: note: expected 
‘rb_block_call_func_t’ {aka ‘long unsigned int (*)(long unsigned int,  long 
unsigned int,  int,  const long unsigned int *, long unsigned int)’} but 
argument is of type ‘VALUE (*)(VALUE,  SourceFileList *)’ {aka ‘long unsigned 
int (*)(long unsigned int,  struct SourceFileListItem *)’}
  283 | VALUE rb_iterate(VALUE (*func1)(VALUE), VALUE data1, 
rb_block_call_func_t proc, VALUE data2);
      |                                                      
~~~~~~~~~~~~~~~~~~~~~^~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_new’:
src/sourcefile.c:27:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   27 |   strncpy(sourcefile->filepath, filepath, length);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:25:16: note: length computed here
   25 |   int length = strlen(filepath);
      |                ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_set_diskpath’:
src/sourcefile.c:67:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   67 |   strncpy(sourcefile->diskpath, diskpath, size);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:65:14: note: length computed here
   65 |   int size = strlen(diskpath);
      |              ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_set_contents’:
src/sourcefile.c:77:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
   77 |   strncpy(sourcefile->contents, contents, size);
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:75:14: note: length computed here
   75 |   int size = strlen(contents);
      |              ^~~~~~~~~~~~~~~~
src/sourcefile.c: In function ‘ohcount_sourcefile_list_add_directory’:
src/sourcefile.c:373:3: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
  373 |   strncpy(filepath, directory, strlen(directory));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:373:3: note: length computed here
  373 |   strncpy(filepath, directory, strlen(directory));
      |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:384:7: warning: ‘strncpy’ specified bound depends on the 
length of the source argument [-Wstringop-truncation]
  384 |       strncpy(f_p, (const char *)file->d_name, length);
      |       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/sourcefile.c:383:20: note: length computed here
  383 |       int length = strlen(file->d_name);
      |                    ^~~~~~~~~~~~~~~~~~~~
src/detector.c: In function ‘ohcount_is_binary_filename’:
src/detector.c:1090:5: warning: ‘strncpy’ output truncated before terminating 
nul copying as many bytes from a string as its length [-Wstringop-truncation]
 1090 |     strncpy(lowerext, p, length);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/detector.c:1085:18: note: length computed here
 1085 |     int length = strlen(p);
      |                  ^~~~~~~~~
make[1]: *** [debian/rules:12: override_dh_install] Error 1
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
make: *** [debian/rules:4: binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary subprocess returned exit 
status 2
--------------------------------------------------------------------------------
Build finished at 2024-08-28T00:01:16Z

Finished
--------


+------------------------------------------------------------------------------+
| Cleanup                                                                      |
+------------------------------------------------------------------------------+

Purging /<<BUILDDIR>>
Not cleaning session: cloned chroot in use
E: Build failure (dpkg-buildpackage died)

+------------------------------------------------------------------------------+
| Summary                                                                      |
+------------------------------------------------------------------------------+

Build Architecture: arm64
Build Type: full
Build-Space: 19812
Build-Time: 129
Distribution: unstable
Fail-Stage: build
Host Architecture: arm64
Install-Time: 27
Job: ohcount
Machine Architecture: arm64
Package: ohcount
Package-Time: 177
Source-Version: 4.0.0-4
Space: 19812
Status: attempted
Version: 4.0.0-4
--------------------------------------------------------------------------------
Finished at 2024-08-28T00:01:16Z
Build needed 00:02:57, 19812k disk space

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: ohcount
Source-Version: 4.0.0-5
Done: Gabriel Bustamante <gabrielbu...@gmail.com>

We believe that the bug you reported is fixed in the latest version of
ohcount, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1079...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gabriel Bustamante <gabrielbu...@gmail.com> (supplier of updated ohcount 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 22 Nov 2024 13:28:17 -0500
Source: ohcount
Architecture: source
Version: 4.0.0-5
Distribution: unstable
Urgency: medium
Maintainer: Sylvestre Ledru <sylves...@debian.org>
Changed-By: Gabriel Bustamante <gabrielbu...@gmail.com>
Closes: 1079834
Changes:
 ohcount (4.0.0-5) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix the FTBFS caused by a ruby update
     (Closes: #1079834)
Checksums-Sha1:
 0ed06e8123583708d01eaf635f6346c2fdd28d87 2009 ohcount_4.0.0-5.dsc
 7c73137f3617dbb252b02be7375a59ff4f46aaff 15032 ohcount_4.0.0-5.debian.tar.xz
 b7518781ee305ebd3f7782ec4872e4c8c0c753a4 10141 ohcount_4.0.0-5_amd64.buildinfo
Checksums-Sha256:
 744733e0259c7842690c4d2e7d31c9c902a6853dbde2582bf09c882d4b72b6e4 2009 
ohcount_4.0.0-5.dsc
 740228713ed4494577f9932ec13fe4be863daba9868d0bd2ac3f082c847d6a4b 15032 
ohcount_4.0.0-5.debian.tar.xz
 b0f1cd05cd270dd08b9c28f4a8bbbcc15fb6a626d63275f4cbeacaa669b2e249 10141 
ohcount_4.0.0-5_amd64.buildinfo
Files:
 78e24ac84c6634625cb5d57a78846a7e 2009 utils optional ohcount_4.0.0-5.dsc
 90ab70db629921c390d610cd4488ab33 15032 utils optional 
ohcount_4.0.0-5.debian.tar.xz
 37f8b733aa3d67baea0be8df3090ca27 10141 utils optional 
ohcount_4.0.0-5_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAmdB5C8ACgkQfmUo2nUv
G+FlOg//VfSpAGqBGxhekPqzxhHpT/9+5KAxwagTY8X0fbh9Y3QxDqP/Airqf7rL
tX8VMNcHMwrtAb978ajn9o1xHeic8WEE0YuX65mmB52Ww2nwUgDFcT3q6Uv197g6
94cghw+ryvG2Dsz5cW2/pFtS5ygIaKksmIBr8xRK07sfT0KqSS83oxPI9d7Ai5mq
ENXGccqVir3gHs1RAaAqA4imKlGvkY5Pm1sELE+1si2ryJfPeApeOcO52eRmKjmQ
ldFn1B+H9J8OosuxsR3ry97Di0iDeDMMXd0LdVlS/GdoIE9UzQxaCHP3/GiCV0LY
klv2QOWcutnvE5UIKFmhk1bOOCKkjj2ULZrYbnByxBxqGxCxjchdwIF3BQNArZc5
v8IWSiV3zl/b26asrqNJ68MzvaOKESVYImu1qF+7ppC2+2hoZUUqrN4SS2rHkPhg
bMeneHlUS5CDEDErbw+YKAWlcFnSuYrUZV8+P0j+0p/6m8sG2Uxf66572IAhIWTk
n+W30AgnUtGoiHv9Q2prEyYiSoc0TcQqUsErsAU+Sv15wLb5Pv56j1AR6DvXRiEp
be1JnYOlKjg2TJrCcqBIaT0xIdkUKtXBp7DuQCG/66H8YSq9/s0e00Kq1mjhSYg3
hPkCQRVujeW3F/cz6VPnwICVBw17e4XzpzkPdsjABYke3r8y12I=
=B0Qv
-----END PGP SIGNATURE-----

Attachment: pgpGxeq9_6nt8.pgp
Description: PGP signature


--- End Message ---

Reply via email to