Bug#972518: diffoscope: FTBFS with ocaml 4.11.1 and black 20.08b1

Sebastian Ramacher sramacher at debian.org
Mon Oct 19 20:55:18 BST 2020


Source: diffoscope
Version: 160
Severity: serious
Tags: ftbfs sid bullseye
Justification: fails to build from source

diffoscope fails to build with ocaml 4.11.1 and the new version of black:
| =================================== FAILURES ===================================
| ___________________________ test_code_is_black_clean ___________________________
|
|     @skip_unless_tool_is_at_least("black", black_version, "19.10b0")
|     def test_code_is_black_clean():
| >       output = subprocess.check_output(
|             ("black", "--diff", "."), stderr=subprocess.PIPE
|         ).decode("utf-8")
|
|
| tests/test_source.py:247: 
| _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
| /usr/lib/python3.9/subprocess.py:420: in check_output
|     return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
| _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
|
| input = None, capture_output = False, timeout = None, check = True
| popenargs = (('black', '--diff', '.'),), kwargs = {'stderr': -1, 'stdout': -1}
| process = <Popen: returncode: 123 args: ['black', '--diff', '.']>
| stdout = b'--- diffoscope/comparators/deb.py\t2020-09-11 09:08:38 +0000\n+++ diffoscope/comparators/deb.py\t2020-10-19 19:47:42...ogger.debug(\n                 "Unable to find the matching debug file %s in %s",\n                 debug_file_path,\n'
| stderr = b'would reformat diffoscope/comparators/deb.py\nerror: cannot format diffoscope/comparators/java.py: I/O operation on ...", line 19, in multiprocessing_finish\n    cov.stop()\nAttributeError: \'NoneType\' object has no attribute \'stop\'\n'
| retcode = 123
|
|     def run(*popenargs,
|             input=None, capture_output=False, timeout=None, check=False, **kwargs):
|         """Run command with arguments and return a CompletedProcess instance.
|     
|         The returned instance will have attributes args, returncode, stdout and
|         stderr. By default, stdout and stderr are not captured, and those attributes
|         will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
|     
|         If check is True and the exit code was non-zero, it raises a
|         CalledProcessError. The CalledProcessError object will have the return code
|         in the returncode attribute, and output & stderr attributes if those streams
|         were captured.
|     
|         If timeout is given, and the process takes too long, a TimeoutExpired
|         exception will be raised.
|     
|         There is an optional argument "input", allowing you to
|         pass bytes or a string to the subprocess's stdin.  If you use this argument
|         you may not also use the Popen constructor's "stdin" argument, as
|         it will be used internally.
|     
|         By default, all communication is in bytes, and therefore any "input" should
|         be bytes, and the stdout and stderr will be bytes. If in text mode, any
|         "input" should be a string, and stdout and stderr will be strings decoded
|         according to locale encoding, or by "encoding" if set. Text mode is
|         triggered by setting any of text, encoding, errors or universal_newlines.
|     
|         The other arguments are the same as for the Popen constructor.
|         """
|         if input is not None:
|             if kwargs.get('stdin') is not None:
|                 raise ValueError('stdin and input arguments may not both be used.')
|             kwargs['stdin'] = PIPE
|     
|         if capture_output:
|             if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
|                 raise ValueError('stdout and stderr arguments may not be used '
|                                  'with capture_output.')
|             kwargs['stdout'] = PIPE
|             kwargs['stderr'] = PIPE
|     
|         with Popen(*popenargs, **kwargs) as process:
|             try:
|                 stdout, stderr = process.communicate(input, timeout=timeout)
|             except TimeoutExpired as exc:
|                 process.kill()
|                 if _mswindows:
|                     # Windows accumulates the output in a single blocking
|                     # read() call run on child threads, with the timeout
|                     # being done in a join() on those threads.  communicate()
|                     # _after_ kill() is required to collect that and add it
|                     # to the exception.
|                     exc.stdout, exc.stderr = process.communicate()
|                 else:
|                     # POSIX _communicate already populated the output so
|                     # far into the TimeoutExpired exception.
|                     process.wait()
|                 raise
|             except:  # Including KeyboardInterrupt, communicate handled that.
|                 process.kill()
|                 # We don't call process.wait() as .__exit__ does that for us.
|                 raise
|             retcode = process.poll()
|             if check and retcode:
| >               raise CalledProcessError(retcode, process.args,
|                                          output=stdout, stderr=stderr)
| E               subprocess.CalledProcessError: Command '('black', '--diff', '.')' returned non-zero exit status 123.
|
| capture_output = False
| check      = True
| input      = None
| kwargs     = {'stderr': -1, 'stdout': -1}
| popenargs  = (('black', '--diff', '.'),)
| process    = <Popen: returncode: 123 args: ['black', '--diff', '.']>
| retcode    = 123
| stderr     = (b'would reformat diffoscope/comparators/deb.py\nerror: cannot format diffos'
|  b'cope/comparators/java.py: I/O operation on closed file\nwould reformat di'
|  b'ffoscope/comparators/lz4.py\nwould reformat diffoscope/comparators/elf.py'
|  b'\nerror: cannot format diffoscope/comparators/zst.py: I/O operation on cl'
|  b'osed file\nerror: cannot format diffoscope/comparators/utils/file.py: I/O'
|  b' operation on closed file\nTraceback (most recent call last):\n  File "/us'
|  b'r/lib/python3.8/multiprocessing/util.py", line 300, in _run_finalizers\n '
|  b'   finalizer()\n  File "/usr/lib/python3.8/multiprocessing/util.py", line'
|  b' 224, in __call__\n    res = self._callback(*self._args, **self._kwargs)\n'
|  b'  File "/usr/lib/python3/dist-packages/cov_core.py", line 19, in multiproces'
|  b"sing_finish\n    cov.stop()\nAttributeError: 'NoneType' object has no attr"
|  b'ibute \'stop\'\nTraceback (most recent call last):\n  File "/usr/lib/python3'
|  b'.8/multiprocessing/util.py", line 300, in _run_finalizers\n    finalizer('
|  b')\n  File "/usr/lib/python3.8/multiprocessing/util.py", line 224, in __ca'
|  b'll__\n    res = self._callback(*self._args, **self._kwargs)\n  File "/usr/'
|  b'lib/python3/dist-packages/cov_core.py", line 19, in multiprocessing_fini'
|  b"sh\n    cov.stop()\nAttributeError: 'NoneType' object has no attribute 'st"
|  b'op\'\nTraceback (most recent call last):\n  File "/usr/lib/python3.8/multip'
|  b'rocessing/util.py", line 300, in _run_finalizers\n    finalizer()\n  File '
|  b'"/usr/lib/python3.8/multiprocessing/util.py", line 224, in __call__\n    '
|  b'res = self._callback(*self._args, **self._kwargs)\n  File "/usr/lib/pytho'
|  b'n3/dist-packages/cov_core.py", line 19, in multiprocessing_finish\n    co'
|  b"v.stop()\nAttributeError: 'NoneType' object has no attribute 'stop'\nTrace"
|  b'back (most recent call last):\n  File "/usr/lib/python3.8/multiprocessing'
|  b'/util.py", line 300, in _run_finalizers\n    finalizer()\n  File "/usr/lib'
|  b'/python3.8/multiprocessing/util.py", line 224, in __call__\n    res = sel'
|  b'f._callback(*self._args, **self._kwargs)\n  File "/usr/lib/python3/dist-p'
|  b'ackages/cov_core.py", line 19, in multiprocessing_finish\n    cov.stop()\n'
|  b"AttributeError: 'NoneType' object has no attribute 'stop'\nOh no!"
|  b' \xf0\x9f\x92\xa5 \xf0\x9f\x92\x94 \xf0\x9f\x92\xa5\n3 files would be ref'
|  b'ormatted, 190 files would be left unchanged, 3 files would fail to reformat.'
|  b'\nTraceback (most recent call last):\n  File "/usr/lib/python3.8/multiproc'
|  b'essing/process.py", line 315, in _bootstrap\n    self.run()\n  File "/usr/'
|  b'lib/python3.8/multiprocessing/process.py", line 108, in run\n    self._ta'
|  b'rget(*self._args, **self._kwargs)\n  File "/usr/lib/python3.8/multiproces'
|  b'sing/managers.py", line 616, in _run_server\n    server.serve_forever()\n '
|  b' File "/usr/lib/python3.8/multiprocessing/managers.py", line 182, in serve_f'
|  b'orever\n    sys.exit(0)\nSystemExit: 0\n\nDuring handling of the above excep'
|  b'tion, another exception occurred:\n\nTraceback (most recent call last):\n  '
|  b'File "/usr/lib/python3.8/multiprocessing/util.py", line 300, in _run_finaliz'
|  b'ers\n    finalizer()\n  File "/usr/lib/python3.8/multiprocessing/util.py",'
|  b' line 224, in __call__\n    res = self._callback(*self._args, **self._kwa'
|  b'rgs)\n  File "/usr/lib/python3/dist-packages/cov_core.py", line 19, in mu'
|  b"ltiprocessing_finish\n    cov.stop()\nAttributeError: 'NoneType' object ha"
|  b"s no attribute 'stop'\n")
| stdout     = (b'--- diffoscope/comparators/deb.py\t2020-09-11 09:08:38 +0000\n+++ diffosco'
|  b'pe/comparators/deb.py\t2020-10-19 19:47:42.373921 +0000\n@@ -135,12 +135,1'
|  b'4 @@\n     def control(self):\n         if not deb822:\n             return'
|  b' None\n \n         if not hasattr(self, "_control"):\n-            control_'
|  b'file = self.as_container.control_tar.as_container.lookup_file(\n-        '
|  b'        "./control"\n+            control_file = (\n+                self.'
|  b'as_container.control_tar.as_container.lookup_file(\n+                    '
|  b'"./control"\n+                )\n             )\n             if control_fi'
|  b'le:\n                 with open(control_file.path, "rb") as f:\n          '
|  b'           self._control = deb822.Deb822(f)\n \n--- diffoscope/comparators'
|  b'/lz4.py\t2020-09-11 09:08:38 +0000\n+++ diffoscope/comparators/lz4.py\t2020'
|  b'-10-19 19:47:42.663850 +0000\n@@ -45,11 +45,13 @@\n     def extract(self, '
|  b'member_name, dest_dir):\n         dest_path = os.path.join(dest_dir, memb'
|  b'er_name)\n         logger.debug("lz4 extracting to %s", dest_path)\n      '
|  b'   with open(dest_path, "wb") as fp:\n             subprocess.check_call('
|  b'\n-                ["lz4", "-d", "-c", self.source.path], stdout=fp, stde'
|  b'rr=None,\n+                ["lz4", "-d", "-c", self.source.path],\n+      '
|  b'          stdout=fp,\n+                stderr=None,\n             )\n      '
|  b'   return dest_path\n \n \n class Lz4File(File):\n--- diffoscope/comparators'
|  b'/elf.py\t2020-09-11 09:08:38 +0000\n+++ diffoscope/comparators/elf.py\t2020'
|  b'-10-19 19:47:42.866422 +0000\n@@ -551,12 +551,14 @@\n \n         dbgsym_pac'
|  b'kage = deb.container.dbgsym_build_id_map[build_id]\n         debug_file_p'
|  b'ath = "./usr/lib/debug/.build-id/{0}/{1}.debug".format(\n             bui'
|  b'ld_id[:2], build_id[2:]\n         )\n-        debug_file = dbgsym_package.'
|  b'as_container.data_tar.as_container.lookup_file(\n-            debug_file_'
|  b'path\n+        debug_file = (\n+            dbgsym_package.as_container.da'
|  b'ta_tar.as_container.lookup_file(\n+                debug_file_path\n+     '
|  b'       )\n         )\n         if not debug_file:\n             logger.debu'
|  b'g(\n                 "Unable to find the matching debug file %s in %s",\n '
|  b'                debug_file_path,\n')
| timeout    = None
|
| /usr/lib/python3.9/subprocess.py:524: CalledProcessError
| __________________________________ test_diff ___________________________________
|
| differences = [<Difference ocamlobjinfo -- ocamlobjinfo []>]
|
|     @skip_unless_tool_is_at_least("ocamlobjinfo", ocaml_version, "4.08.1")
|     def test_diff(differences):
|         expected_diff = get_data("ocaml_expected_diff")
| >       assert differences[0].unified_diff == expected_diff
| E       AssertionError: assert '@@ -1,5 +1,5...ormatBasics\n' == '@@ -1,5 +1,5 ...ormatBasics\n'
| E           @@ -1,5 +1,5 @@
| E           -Unit name: Test1
| E           +Unit name: Test2
| E            Interfaces imported:
| E         - -	3e47d8b00458748ef1a9311764531b2c	Test1
| E         - +	de7049745527b20997c517c338bb83cb	Test2
| E         -  	c21c5d26416461b543321872a551ea0d	Stdlib
| E         -  	3a3ca1838627f7762f49679ce0278ad1	CamlinternalFormatBasics
| E         + -	4bf3070814d7fb8e8d365d95481f8cad	Test1
| E         + +	333f54d1aae1264e7ad64cbb437cbc4f	Test2
| E         +  	ad45f251bbf98d3a0bf3b883546ecfc8	Stdlib
| E         +  	a2b1a9d869fd05813beb35645bd9cd94	CamlinternalFormatBasics
|
| differences = [<Difference ocamlobjinfo -- ocamlobjinfo []>]
| expected_diff = ('@@ -1,5 +1,5 @@\n'
|  '-Unit name: Test1\n'
|  '+Unit name: Test2\n'
|  ' Interfaces imported:\n'
|  '-\t4bf3070814d7fb8e8d365d95481f8cad\tTest1\n'
|  '+\t333f54d1aae1264e7ad64cbb437cbc4f\tTest2\n'
|  ' \tad45f251bbf98d3a0bf3b883546ecfc8\tStdlib\n'
|  ' \ta2b1a9d869fd05813beb35645bd9cd94\tCamlinternalFormatBasics\n')
|
| tests/comparators/test_ocaml.py:79: AssertionError

See the attached build log for more details

Cheers


-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (650, 'unstable-debug'), (650, 'unstable'), (601, 'testing'), (600, 'experimental-debug'), (600, 'buildd-unstable'), (600, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.8.0-2-amd64 (SMP w/8 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8), LANGUAGE=en_US:en
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- 
Sebastian Ramacher
-------------- next part --------------
sbuild (Debian sbuild) 0.78.1 (09 February 2019) on rigel.ramacher.at

+==============================================================================+
| diffoscope (amd64)                           Mon, 19 Oct 2020 19:40:31 +0000 |
+==============================================================================+

Package: diffoscope
Distribution: unstable
Machine Architecture: amd64
Host Architecture: amd64
Build Architecture: amd64
Build Type: binary

I: NOTICE: Log filtering will replace 'var/run/schroot/mount/unstable-amd64-sbuild-477d791b-2034-4c62-b395-3f18678e328a' with '<<CHROOT>>'
I: NOTICE: Log filtering will replace 'build/diffoscope-rWnmDe/resolver-od55RV' with '<<RESOLVERDIR>>'

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

Get:1 http://localhost:3142/debian unstable InRelease [146 kB]
Get:2 http://localhost:3142/debian-buildd buildd-unstable InRelease [39.7 kB]
Hit:3 http://localhost:3142/ramacher unstable InRelease
Get:4 http://localhost:3142/debian unstable/main Sources [8921 kB]
Get:5 http://localhost:3142/debian unstable/main amd64 Packages [8440 kB]
Get:6 http://localhost:3142/debian-buildd buildd-unstable/main Sources [188 kB]
Get:7 http://localhost:3142/debian-buildd buildd-unstable/main amd64 Packages [213 kB]
Fetched 17.9 MB in 4s (4223 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

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


Check APT
---------

Checking available source versions...

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

Reading package lists...
NOTICE: 'diffoscope' packaging is maintained in the 'Git' version control system at:
https://salsa.debian.org/reproducible-builds/diffoscope.git
Please use:
git clone https://salsa.debian.org/reproducible-builds/diffoscope.git
to retrieve the latest (possibly unreleased) updates to the package.
Need to get 990 kB of source archives.
Get:1 http://localhost:3142/debian unstable/main diffoscope 160 (dsc) [4807 B]
Get:2 http://localhost:3142/debian unstable/main diffoscope 160 (tar) [985 kB]
Fetched 990 kB in 2s (559 kB/s)
Download complete and in download only mode
I: NOTICE: Log filtering will replace 'build/diffoscope-rWnmDe/diffoscope-160' with '<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/diffoscope-rWnmDe' with '<<BUILDDIR>>'

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


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

Merged Build-Depends: abootimg, apksigner, apktool, bash-completion, binutils-multiarch, black, caca-utils, colord, db-util, debhelper-compat (= 13), default-jdk-headless | default-jdk, device-tree-compiler (>= 1.4.2), dh-python (>= 2.20160818~), docx2txt, dpkg-dev (>= 1.17.14), e2fsprogs, enjarify, ffmpeg, flake8, fontforge-extras, fp-utils, ghc, ghostscript, giflib-tools, gnupg-utils, hdf5-tools, help2man, imagemagick, jsbeautifier, libarchive-tools, libjs-jquery, libjs-jquery-hotkeys, libjs-jquery-isonscreen, libjs-jquery-tablesorter, libjs-jquery-throttle-debounce, linux-image-amd64 | linux-image-generic, llvm, lz4 | liblz4-tool, mono-utils, mplayer, ocaml-nox, odt2txt, oggvideotools, openssh-client, openssl, pgpdump, poppler-utils, procyon-decompiler, python3-all, python3-argcomplete, python3-binwalk, python3-debian, python3-distro, python3-docutils, python3-guestfs, python3-h5py, python3-jsondiff, python3-libarchive-c, python3-magic, python3-pdfminer, python3-progressbar, python3-pypdf2, python3-pytest, python3-pytest-cov, python3-pyxattr, python3-rpm, python3-setuptools, python3-tlsh (>= 3.4.1), r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, unzip, wabt, xmlbeans, xxd | vim-common, zstd, build-essential, fakeroot
Merged Build-Conflicts: graphicsmagick-imagemagick-compat
Filtered Build-Depends: abootimg, apksigner, apktool, bash-completion, binutils-multiarch, black, caca-utils, colord, db-util, debhelper-compat (= 13), default-jdk-headless, device-tree-compiler (>= 1.4.2), dh-python (>= 2.20160818~), docx2txt, dpkg-dev (>= 1.17.14), e2fsprogs, enjarify, ffmpeg, flake8, fontforge-extras, fp-utils, ghc, ghostscript, giflib-tools, gnupg-utils, hdf5-tools, help2man, imagemagick, jsbeautifier, libarchive-tools, libjs-jquery, libjs-jquery-hotkeys, libjs-jquery-isonscreen, libjs-jquery-tablesorter, libjs-jquery-throttle-debounce, linux-image-amd64, llvm, lz4, mono-utils, mplayer, ocaml-nox, odt2txt, oggvideotools, openssh-client, openssl, pgpdump, poppler-utils, procyon-decompiler, python3-all, python3-argcomplete, python3-binwalk, python3-debian, python3-distro, python3-docutils, python3-guestfs, python3-h5py, python3-jsondiff, python3-libarchive-c, python3-magic, python3-pdfminer, python3-progressbar, python3-pypdf2, python3-pytest, python3-pytest-cov, python3-pyxattr, python3-rpm, python3-setuptools, python3-tlsh (>= 3.4.1), r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, unzip, wabt, xmlbeans, xxd, zstd, build-essential, fakeroot
Filtered Build-Conflicts: graphicsmagick-imagemagick-compat
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 [969 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [1033 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [1006 B]
Fetched 3008 B in 0s (243 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:
  aapt abootimg acl adwaita-icon-theme android-framework-res android-libaapt
  android-libandroidfw android-libbacktrace android-libbase android-libcutils
  android-liblog android-libunwind android-libutils android-libziparchive
  apksigner apktool attr augeas-lenses autoconf automake autopoint
  autotools-dev bash-completion binfmt-support binutils-multiarch black
  bsdextrautils bsdmainutils btrfs-progs ca-certificates ca-certificates-java
  caca-utils calendar colord colord-data cpio cryptsetup-bin curl db-util
  db5.3-util dbus dbus-user-session dconf-gsettings-backend dconf-service
  debhelper debootstrap default-jdk-headless default-jre-headless
  device-tree-compiler dh-autoreconf dh-python dh-strip-nondeterminism
  distro-info-data dmeventd dmidecode dmsetup docutils-common docx2txt
  dosfstools dwz enjarify exfat-fuse exfat-utils extlinux f2fs-tools fakeroot
  fastjar fdisk ffmpeg file flake8 fontconfig fontconfig-config
  fontforge-common fontforge-extras fonts-dejavu-core fonts-urw-base35
  fp-utils fp-utils-3.2.0 fpc-source-3.2.0 fuse gawk gdisk genisoimage gettext
  gettext-base ghc ghostscript giflib-tools glib-networking
  glib-networking-common glib-networking-services gnupg-utils groff-base
  grub-common grub2-common gsettings-desktop-schemas gtk-update-icon-cache
  hdf5-tools help2man hicolor-icon-theme icoutils imagemagick
  imagemagick-6-common imagemagick-6.q16 initramfs-tools initramfs-tools-core
  intltool-debian iproute2 ipxe-qemu isc-dhcp-client iso-codes jarwrapper
  java-common jsbeautifier junit klibc-utils kmod kpartx ldmtool less
  liba52-0.7.4 libaa1 libaec0 libafflib0v5 libaio1 libantlr-java
  libantlr3-runtime-java libaom0 libapache-pom-java libapparmor1
  libarchive-tools libarchive-zip-perl libarchive13 libargon2-1 libasound2
  libasound2-data libass9 libassuan0 libasyncns0 libatinject-jsr330-api-java
  libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libaudio2
  libaugeas0 libavahi-client3 libavahi-common-data libavahi-common3
  libavc1394-0 libavcodec58 libavdevice58 libavfilter7 libavformat58
  libavresample4 libavutil56 libbfio1 libblas3 libbluray2 libbrlapi0.7
  libbrotli1 libbs2b0 libbsd-dev libbsd0 libcaca0 libcacard0 libcairo-gobject2
  libcairo2 libcap2 libcap2-bin libcapstone3 libcbor0 libcdio-cdda2
  libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-0.9 libcolord2
  libcolorhug2 libcommons-cli-java libcommons-io-java libcommons-lang3-java
  libcommons-parent-java libcroco3 libcryptsetup12 libcups2 libcurl3-gnutls
  libcurl4 libdate-manip-perl libdatrie1 libdav1d4 libdaxctl1 libdbus-1-3
  libdc1394-25 libdca0 libdconf1 libde265-0 libdebhelper-perl
  libdevmapper-event1.02.1 libdevmapper1.02.1 libdns-export1110 libdom4j-java
  libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1
  libdrm2 libdv4 libdvdnav4 libdvdread8 libdw1 libedit2 libefiboot1 libefivar1
  libegl-mesa0 libegl1 libelf1 libenca0 libencode-locale-perl libepoxy0
  libewf2 libexif12 libexpat1 libf2fs-format4 libf2fs5 libfaad2 libfakeroot
  libfdisk1 libfdt1 libffi-dev libfftw3-double3 libfido2-1
  libfile-listing-perl libfile-stripnondeterminism-perl libflac8 libflite1
  libfontconfig1 libfontforge3 libfreetype6 libfribidi0 libfuse2 libgbm1
  libgd3 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common libgdraw6 libgfortran5
  libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0 libglvnd0
  libglx-mesa0 libglx0 libgme0 libgmp-dev libgmpxx4ldbl libgphoto2-6
  libgphoto2-port12 libgpm2 libgraphite2-3 libgs9 libgs9-common libgsm1
  libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common
  libguava-java libgudev-1.0-0 libguestfs0 libgusb2 libharfbuzz0b
  libhdf5-103-1 libhdf5-hl-100 libheif1 libhivex0 libhtml-parser-perl
  libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl
  libhttp-message-perl libhttp-negotiate-perl libibverbs1 libice6
  libicu4j-java libicu67 libid3tag0 libidn11 libiec61883-0 libieee1284-3
  libijs-0.35 libimlib2 libintellij-annotations-java libio-html-perl
  libio-socket-ssl-perl libip4tc2 libisc-export1105 libjack-jackd2-0
  libjansson4 libjaxen-java libjbig0 libjbig2dec0 libjcommander-java
  libjdom1-java libjetbrains-annotations-java libjpeg62-turbo libjs-jquery
  libjs-jquery-hotkeys libjs-jquery-isonscreen libjs-jquery-metadata
  libjs-jquery-tablesorter libjs-jquery-throttle-debounce libjson-c5
  libjson-glib-1.0-0 libjson-glib-1.0-common libjsr305-java libklibc libkmod2
  libksba8 liblapack3 liblcms2-2 libldap-2.4-2 libldm-1.0-0 liblilv-0-0
  liblirc-client0 libllvm11 libllvm9 liblocale-gettext-perl liblqr-1-0
  libltdl7 liblua5.2-0 liblvm2cmd2.03 liblwp-mediatypes-perl
  liblwp-protocol-https-perl liblzf1 liblzo2-2 libmad0 libmagic-mgc libmagic1
  libmagickcore-6.q16-6 libmagickwand-6.q16-6 libmfx1 libmng1 libmnl0
  libmono-corlib4.5-cil libmono-security4.0-cil
  libmono-system-configuration4.0-cil libmono-system-core4.0-cil
  libmono-system-numerics4.0-cil libmono-system-security4.0-cil
  libmono-system-xml4.0-cil libmono-system4.0-cil libmonoboehm-2.0-1
  libmp3lame0 libmpeg2-4 libmpg123-0 libmysofa1 libncurses-dev libncurses5-dev
  libncurses6 libncursesw6 libndctl6 libnet-http-perl libnet-ssleay-perl
  libnetpbm10 libnghttp2-14 libnl-3-200 libnl-route-3-200 libnorm1 libnspr4
  libnss3 libntfs-3g883 libnuma1 libogg0 libopenal-data libopenal1
  libopenjp2-7 libopenmpt0 libopus0 liborc-0.4-0 libpam-systemd libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libparted2
  libpcap0.8 libpci3 libpciaccess0 libpcsclite1 libperl4-corelibs-perl libpfm4
  libpgm-5.3-0 libpipeline1 libpixman-1-0 libpmem1 libpng16-16
  libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8
  libpoppler102 libpopt0 libpostproc55 libprocps8 libprocyon-java
  libprotobuf-lite23 libproxy1v5 libpulse0 libpython3-stdlib libpython3.8
  libpython3.8-minimal libpython3.8-stdlib libpython3.9-minimal
  libpython3.9-stdlib librabbitmq4 libraw1394-11 librdmacm1 libreadline5
  libreadline8 librest-0.7-0 librpm8 librpmbuild8 librpmio8 librpmsign8
  librsvg2-2 librtmp1 librubberband2 libsamplerate0 libsane libsane-common
  libsane1 libsasl2-2 libsasl2-modules-db libsaxonhe-java libsdl1.2debian
  libsdl2-2.0-0 libsensors-config libsensors5 libserd-0-0 libshine3
  libsigsegv2 libslang2 libslirp0 libsm6 libsmali-java libsnappy1v5
  libsndfile1 libsndio7.0 libsnmp-base libsnmp40 libsodium23 libsord-0-0
  libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libsphinxbase3
  libspice-server1 libspiro1 libsqlite3-0 libsratom-0-0 libsrt1-gnutls
  libssh-gcrypt-4 libssh2-1 libstringtemplate-java libsub-override-perl
  libswresample3 libswscale5 libsz2 libtcl8.6 libthai-data libthai0 libtheora0
  libtiff5 libtimedate-perl libtk8.6 libtool libtry-tiny-perl libtsk19
  libtwolame0 libuchardet0 libuninameslist1 libunwind8 liburi-perl liburing1
  libusb-1.0-0 libusbredirparser1 libva-drm2 libva-x11-2 libva2 libvdeplug2
  libvdpau1 libvhdi1 libvidstab1.1 libvirglrenderer1 libvirt0 libvmdk1
  libvorbis0a libvorbisenc2 libvorbisfile3 libvorbisidec1 libvpx6 libvulkan1
  libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1
  libwayland-server0 libwebp6 libwebpdemux2 libwebpmux3 libwrap0 libwww-perl
  libwww-robotrules-perl libx11-6 libx11-data libx11-xcb1 libx264-160
  libx265-192 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
  libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1
  libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 libxencall1
  libxendevicemodel1 libxenevtchn1 libxenforeignmemory1 libxengnttab1
  libxenmisc4.11 libxenstore3.0 libxentoolcore1 libxentoollog1 libxerces2-java
  libxext6 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0
  libxml-commons-external-java libxml-commons-resolver1.1-java libxml2
  libxmlbeans-java libxmlunit-java libxom-java libxpm4 libxpp3-java libxrandr2
  libxrender1 libxshmfence1 libxss1 libxt6 libxtables12 libxtst6 libxv1
  libxvidcore4 libxvmc1 libxxf86dga1 libxxf86vm1 libyajl2 libyaml-0-2
  libyaml-snake-java libyara4 libz3-4 libzmq5 libzvbi-common libzvbi0
  linux-base linux-image-5.9.0-1-amd64 linux-image-amd64 llvm llvm-9
  llvm-9-runtime llvm-runtime lsb-release lsscsi lvm2 lz4 lzop m4 man-db mdadm
  mime-support mono-4.0-gac mono-gac mono-runtime mono-runtime-common
  mono-runtime-sgen mono-utils mplayer mtools ncal netbase netpbm node-jquery
  ntfs-3g ocaml-base-nox ocaml-compiler-libs ocaml-interp ocaml-nox
  ocl-icd-libopencl1 odt2txt oggvideotools openjdk-11-jdk-headless
  openjdk-11-jre-headless openssh-client openssl osinfo-db p7zip p7zip-full
  parted pci.ids pciutils perl-openssl-defaults pgpdump po-debconf policykit-1
  poppler-data poppler-utils procps procyon-decompiler psmisc python3
  python3-all python3-appdirs python3-argcomplete python3-atomicwrites
  python3-attr python3-binwalk python3-cffi-backend python3-chardet
  python3-click python3-colorama python3-cov-core python3-coverage
  python3-cryptography python3-debian python3-distro python3-distutils
  python3-docutils python3-editorconfig python3-flake8 python3-guestfs
  python3-h5py python3-h5py-serial python3-importlib-metadata
  python3-jsbeautifier python3-jsondiff python3-lib2to3 python3-libarchive-c
  python3-magic python3-mccabe python3-minimal python3-more-itertools
  python3-mypy-extensions python3-nose2 python3-numpy python3-packaging
  python3-pathspec python3-pdfminer python3-pkg-resources python3-pluggy
  python3-progressbar python3-py python3-pycodestyle python3-pyflakes
  python3-pyparsing python3-pypdf2 python3-pytest python3-pytest-cov
  python3-pyxattr python3-regex python3-roman python3-rpm python3-setuptools
  python3-six python3-sortedcontainers python3-tlsh python3-toml
  python3-typed-ast python3-typing-extensions python3-wcwidth python3-zipp
  python3.8 python3.8-minimal python3.9 python3.9-minimal qemu-system-common
  qemu-system-data qemu-system-x86 qemu-utils r-base-core readline-common
  rpm-common rpm2cpio scrub seabios sensible-utils sgml-base shared-mime-info
  sleuthkit sng sqlite3 squashfs-tools supermin syslinux systemd systemd-sysv
  systemd-timesyncd tcpdump ucf udev unzip uuid-runtime wabt x11-common
  xdg-utils xkb-data xml-core xmlbeans xxd zerofree zip zstd
Suggested packages:
  augeas-doc autoconf-archive gnu-standards autoconf-doc python-black-doc
  whois vacation mailutils duperemove colord-sensor-argyll libarchive1 dh-make
  ubuntu-archive-keyring squid-deb-proxy-client default-jre ffmpeg-doc
  fonts-freefont-otf | fonts-freefont-ttf fonts-texgyre gawk-doc wodim
  cdrkit-doc gettext-doc libasprintf-dev libgettextpo-dev ghc-prof ghc-doc
  haskell-doc ghostscript-x groff multiboot-doc grub-emu xorriso desktop-base
  console-setup libterm-readline-gnu-perl | libterm-readline-perl-perl
  imagemagick-doc autotrace cups-bsd | lpr | lprng enscript gimp gnuplot grads
  graphviz hp2xx html2ps libwmf-bin povray radiance sane-utils
  texlive-base-bin transfig ufraw-batch iproute2-doc resolvconf avahi-autoipd
  isc-dhcp-client-ddns isoquery junit-doc lrzip libasound2-plugins alsa-utils
  libatinject-jsr330-api-java-doc nas augeas-tools libbluray-bdj
  libcommons-io-java-doc libcommons-lang3-java-doc cups-common
  libdom4j-java-doc libmsv-java libxpp2-java libdv-bin oss-compat libdvdcss2
  libfftw3-bin libfftw3-dev libgd-tools gmp-doc libgmp10-doc libmpfr-dev
  gphoto2 gpm libvisual-0.4-plugins gstreamer1.0-tools gvfs librsvg2-common
  libguestfs-gfs2 libguestfs-jfs libguestfs-nilfs libguestfs-rescue
  libguestfs-rsync libguestfs-zfs libdata-dump-perl
  libjetbrains-annotations-java-doc jackd2 libjcommander-java-doc
  libjdom1-java-doc libjsr305-java-doc liblcms2-utils lirc
  libcrypt-ssleay-perl libmagickcore-6.q16-6-extra libmono-i18n4.0-all
  libgamin0 ncurses-doc libportaudio2 opus-tools libparted-dev libparted-i18n
  pcscd pulseaudio libraw1394-doc librsvg2-bin avahi-daemon hplip lm-sensors
  serdi sndiod snmp-mibs-downloader sordi speex gstreamer1.0-plugins-ugly
  tcl8.6 tk8.6 libtool-doc gfortran | fortran95-compiler gcj-jdk
  libauthen-ntlm-perl libxerces2-java-doc libxml-commons-resolver1.1-java-doc
  libxom-java-doc linux-doc-5.9 debian-kernel-handbook llvm-9-doc m4-doc
  apparmor www-browser dracut-core fonts-freefont-ttf mplayer-doc netselect
  | fping floppyd ocaml-doc elpa-tuareg opencl-icd openjdk-11-demo
  openjdk-11-source libnss-mdns fonts-dejavu-extra fonts-ipafont-gothic
  fonts-ipafont-mincho fonts-wqy-microhei | fonts-wqy-zenhei fonts-indic
  keychain libpam-ssh monkeysphere ssh-askpass p7zip-rar parted-doc
  libmail-box-perl fonts-japanese-mincho | fonts-ipafont-mincho
  fonts-japanese-gothic | fonts-ipafont-gothic fonts-arphic-ukai
  fonts-arphic-uming fonts-nanum python3-doc python3-tk python3-venv
  python-attr-doc python-coverage-doc python-cryptography-doc
  python3-cryptography-vectors docutils-doc fonts-linuxlibertine
  | ttf-linux-libertine texlive-lang-french texlive-latex-base
  texlive-latex-recommended python-h5py-doc python-nose2-doc gfortran
  python-numpy-doc python3-dev python3-numpy-dbg pdfminer-data subversion
  python-pyparsing-doc python3-pyxattr-dbg python-pyxattr-doc
  python-setuptools-doc python-sortedcontainers-doc python3.8-venv
  python3.8-doc python3.9-venv python3.9-doc samba vde2 qemu-block-extra
  elpa-ess r-doc-info | r-doc-pdf r-mathlib r-base-html readline-doc rpm-i18n
  sgml-base-doc autopsy mac-robber sqlite3-doc systemd-container
Recommended packages:
  librsvg2-common toilet gnupg arch-test syslinux-common fonts-cantarell
  fonts-inconsolata fp-compiler-3.2.0 gpg gpg-agent gpgconf gpgsm os-prober
  libmagickcore-6.q16-6-extra busybox | busybox-static pigz libatm1
  isc-dhcp-common alsa-ucm-conf alsa-topology-conf at-spi2-core libaacs0
  libpam-cap libarchive-cpio-perl libgdk-pixbuf2.0-bin libglib2.0-data
  xdg-user-dirs libgphoto2-l10n fonts-droid-fallback gstreamer1.0-plugins-base
  libgtk-3-bin libguestfs-hfsplus libguestfs-reiserfs libguestfs-xfs usb.ids
  libhtml-format-perl libclone-perl ibverbs-providers javascript-common
  libldap-common gsfonts libmono-i18n-west4.0-cil ca-certificates-mono
  libmono-btls-interface4.0-cil pocketsphinx-en-us sane-utils ipp-usb
  libsasl2-modules gstreamer1.0-libav gstreamer1.0-plugins-good libltdl-dev
  va-driver-all | va-driver vdpau-driver-all | vdpau-driver
  mesa-vulkan-drivers | vulkan-icd libdata-dump-perl libhtml-form-perl
  libhttp-daemon-perl libmailtools-perl firmware-linux-free apparmor
  llvm-9-dev thin-provisioning-tools default-mta | mail-transport-agent
  cli-common ocaml-man ledit | readline-editor xauth libmail-sendmail-perl arj
  cramfsswap mtd-utils ncompress python3-pyqtgraph python3-apt python3-pil
  python3-pygments python3-crypto pyflakes3 qemu-system-gui ovmf r-recommended
  r-base-dev r-doc-html libnss-systemd libfile-mimeinfo-perl libnet-dbus-perl
  libx11-protocol-perl x11-utils x11-xserver-utils
The following NEW packages will be installed:
  aapt abootimg acl adwaita-icon-theme android-framework-res android-libaapt
  android-libandroidfw android-libbacktrace android-libbase android-libcutils
  android-liblog android-libunwind android-libutils android-libziparchive
  apksigner apktool attr augeas-lenses autoconf automake autopoint
  autotools-dev bash-completion binfmt-support binutils-multiarch black
  bsdextrautils bsdmainutils btrfs-progs ca-certificates ca-certificates-java
  caca-utils calendar colord colord-data cpio cryptsetup-bin curl db-util
  db5.3-util dbus dbus-user-session dconf-gsettings-backend dconf-service
  debhelper debootstrap default-jdk-headless default-jre-headless
  device-tree-compiler dh-autoreconf dh-python dh-strip-nondeterminism
  distro-info-data dmeventd dmidecode dmsetup docutils-common docx2txt
  dosfstools dwz enjarify exfat-fuse exfat-utils extlinux f2fs-tools fakeroot
  fastjar fdisk ffmpeg file flake8 fontconfig fontconfig-config
  fontforge-common fontforge-extras fonts-dejavu-core fonts-urw-base35
  fp-utils fp-utils-3.2.0 fpc-source-3.2.0 fuse gawk gdisk genisoimage gettext
  gettext-base ghc ghostscript giflib-tools glib-networking
  glib-networking-common glib-networking-services gnupg-utils groff-base
  grub-common grub2-common gsettings-desktop-schemas gtk-update-icon-cache
  hdf5-tools help2man hicolor-icon-theme icoutils imagemagick
  imagemagick-6-common imagemagick-6.q16 initramfs-tools initramfs-tools-core
  intltool-debian iproute2 ipxe-qemu isc-dhcp-client iso-codes jarwrapper
  java-common jsbeautifier junit klibc-utils kmod kpartx ldmtool less
  liba52-0.7.4 libaa1 libaec0 libafflib0v5 libaio1 libantlr-java
  libantlr3-runtime-java libaom0 libapache-pom-java libapparmor1
  libarchive-tools libarchive-zip-perl libarchive13 libargon2-1 libasound2
  libasound2-data libass9 libassuan0 libasyncns0 libatinject-jsr330-api-java
  libatk-bridge2.0-0 libatk1.0-0 libatk1.0-data libatspi2.0-0 libaudio2
  libaugeas0 libavahi-client3 libavahi-common-data libavahi-common3
  libavc1394-0 libavcodec58 libavdevice58 libavfilter7 libavformat58
  libavresample4 libavutil56 libbfio1 libblas3 libbluray2 libbrlapi0.7
  libbrotli1 libbs2b0 libbsd-dev libbsd0 libcaca0 libcacard0 libcairo-gobject2
  libcairo2 libcap2 libcap2-bin libcapstone3 libcbor0 libcdio-cdda2
  libcdio-paranoia2 libcdio19 libchromaprint1 libcodec2-0.9 libcolord2
  libcolorhug2 libcommons-cli-java libcommons-io-java libcommons-lang3-java
  libcommons-parent-java libcroco3 libcryptsetup12 libcups2 libcurl3-gnutls
  libcurl4 libdate-manip-perl libdatrie1 libdav1d4 libdaxctl1 libdbus-1-3
  libdc1394-25 libdca0 libdconf1 libde265-0 libdebhelper-perl
  libdevmapper-event1.02.1 libdevmapper1.02.1 libdns-export1110 libdom4j-java
  libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm-nouveau2 libdrm-radeon1
  libdrm2 libdv4 libdvdnav4 libdvdread8 libdw1 libedit2 libefiboot1 libefivar1
  libegl-mesa0 libegl1 libelf1 libenca0 libencode-locale-perl libepoxy0
  libewf2 libexif12 libexpat1 libf2fs-format4 libf2fs5 libfaad2 libfakeroot
  libfdisk1 libfdt1 libffi-dev libfftw3-double3 libfido2-1
  libfile-listing-perl libfile-stripnondeterminism-perl libflac8 libflite1
  libfontconfig1 libfontforge3 libfreetype6 libfribidi0 libfuse2 libgbm1
  libgd3 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common libgdraw6 libgfortran5
  libgif7 libgl1 libgl1-mesa-dri libglapi-mesa libglib2.0-0 libglvnd0
  libglx-mesa0 libglx0 libgme0 libgmp-dev libgmpxx4ldbl libgphoto2-6
  libgphoto2-port12 libgpm2 libgraphite2-3 libgs9 libgs9-common libgsm1
  libgstreamer-plugins-base1.0-0 libgstreamer1.0-0 libgtk-3-0 libgtk-3-common
  libguava-java libgudev-1.0-0 libguestfs0 libgusb2 libharfbuzz0b
  libhdf5-103-1 libhdf5-hl-100 libheif1 libhivex0 libhtml-parser-perl
  libhtml-tagset-perl libhtml-tree-perl libhttp-cookies-perl libhttp-date-perl
  libhttp-message-perl libhttp-negotiate-perl libibverbs1 libice6
  libicu4j-java libicu67 libid3tag0 libidn11 libiec61883-0 libieee1284-3
  libijs-0.35 libimlib2 libintellij-annotations-java libio-html-perl
  libio-socket-ssl-perl libip4tc2 libisc-export1105 libjack-jackd2-0
  libjansson4 libjaxen-java libjbig0 libjbig2dec0 libjcommander-java
  libjdom1-java libjetbrains-annotations-java libjpeg62-turbo libjs-jquery
  libjs-jquery-hotkeys libjs-jquery-isonscreen libjs-jquery-metadata
  libjs-jquery-tablesorter libjs-jquery-throttle-debounce libjson-c5
  libjson-glib-1.0-0 libjson-glib-1.0-common libjsr305-java libklibc libkmod2
  libksba8 liblapack3 liblcms2-2 libldap-2.4-2 libldm-1.0-0 liblilv-0-0
  liblirc-client0 libllvm11 libllvm9 liblocale-gettext-perl liblqr-1-0
  libltdl7 liblua5.2-0 liblvm2cmd2.03 liblwp-mediatypes-perl
  liblwp-protocol-https-perl liblzf1 liblzo2-2 libmad0 libmagic-mgc libmagic1
  libmagickcore-6.q16-6 libmagickwand-6.q16-6 libmfx1 libmng1 libmnl0
  libmono-corlib4.5-cil libmono-security4.0-cil
  libmono-system-configuration4.0-cil libmono-system-core4.0-cil
  libmono-system-numerics4.0-cil libmono-system-security4.0-cil
  libmono-system-xml4.0-cil libmono-system4.0-cil libmonoboehm-2.0-1
  libmp3lame0 libmpeg2-4 libmpg123-0 libmysofa1 libncurses-dev libncurses5-dev
  libncurses6 libncursesw6 libndctl6 libnet-http-perl libnet-ssleay-perl
  libnetpbm10 libnghttp2-14 libnl-3-200 libnl-route-3-200 libnorm1 libnspr4
  libnss3 libntfs-3g883 libnuma1 libogg0 libopenal-data libopenal1
  libopenjp2-7 libopenmpt0 libopus0 liborc-0.4-0 libpam-systemd libpango-1.0-0
  libpangocairo-1.0-0 libpangoft2-1.0-0 libpaper-utils libpaper1 libparted2
  libpcap0.8 libpci3 libpciaccess0 libpcsclite1 libperl4-corelibs-perl libpfm4
  libpgm-5.3-0 libpipeline1 libpixman-1-0 libpmem1 libpng16-16
  libpocketsphinx3 libpolkit-agent-1-0 libpolkit-gobject-1-0 libpoppler-glib8
  libpoppler102 libpopt0 libpostproc55 libprocps8 libprocyon-java
  libprotobuf-lite23 libproxy1v5 libpulse0 libpython3-stdlib libpython3.8
  libpython3.8-minimal libpython3.8-stdlib libpython3.9-minimal
  libpython3.9-stdlib librabbitmq4 libraw1394-11 librdmacm1 libreadline5
  libreadline8 librest-0.7-0 librpm8 librpmbuild8 librpmio8 librpmsign8
  librsvg2-2 librtmp1 librubberband2 libsamplerate0 libsane libsane-common
  libsane1 libsasl2-2 libsasl2-modules-db libsaxonhe-java libsdl1.2debian
  libsdl2-2.0-0 libsensors-config libsensors5 libserd-0-0 libshine3
  libsigsegv2 libslang2 libslirp0 libsm6 libsmali-java libsnappy1v5
  libsndfile1 libsndio7.0 libsnmp-base libsnmp40 libsodium23 libsord-0-0
  libsoup-gnome2.4-1 libsoup2.4-1 libsoxr0 libspeex1 libsphinxbase3
  libspice-server1 libspiro1 libsqlite3-0 libsratom-0-0 libsrt1-gnutls
  libssh-gcrypt-4 libssh2-1 libstringtemplate-java libsub-override-perl
  libswresample3 libswscale5 libsz2 libtcl8.6 libthai-data libthai0 libtheora0
  libtiff5 libtimedate-perl libtk8.6 libtool libtry-tiny-perl libtsk19
  libtwolame0 libuchardet0 libuninameslist1 libunwind8 liburi-perl liburing1
  libusb-1.0-0 libusbredirparser1 libva-drm2 libva-x11-2 libva2 libvdeplug2
  libvdpau1 libvhdi1 libvidstab1.1 libvirglrenderer1 libvirt0 libvmdk1
  libvorbis0a libvorbisenc2 libvorbisfile3 libvorbisidec1 libvpx6 libvulkan1
  libwavpack1 libwayland-client0 libwayland-cursor0 libwayland-egl1
  libwayland-server0 libwebp6 libwebpdemux2 libwebpmux3 libwrap0 libwww-perl
  libwww-robotrules-perl libx11-6 libx11-data libx11-xcb1 libx264-160
  libx265-192 libxau6 libxcb-dri2-0 libxcb-dri3-0 libxcb-glx0 libxcb-present0
  libxcb-render0 libxcb-shape0 libxcb-shm0 libxcb-sync1 libxcb-xfixes0 libxcb1
  libxcomposite1 libxcursor1 libxdamage1 libxdmcp6 libxencall1
  libxendevicemodel1 libxenevtchn1 libxenforeignmemory1 libxengnttab1
  libxenmisc4.11 libxenstore3.0 libxentoolcore1 libxentoollog1 libxerces2-java
  libxext6 libxfixes3 libxft2 libxi6 libxinerama1 libxkbcommon0
  libxml-commons-external-java libxml-commons-resolver1.1-java libxml2
  libxmlbeans-java libxmlunit-java libxom-java libxpm4 libxpp3-java libxrandr2
  libxrender1 libxshmfence1 libxss1 libxt6 libxtables12 libxtst6 libxv1
  libxvidcore4 libxvmc1 libxxf86dga1 libxxf86vm1 libyajl2 libyaml-0-2
  libyaml-snake-java libyara4 libz3-4 libzmq5 libzvbi-common libzvbi0
  linux-base linux-image-5.9.0-1-amd64 linux-image-amd64 llvm llvm-9
  llvm-9-runtime llvm-runtime lsb-release lsscsi lvm2 lz4 lzop m4 man-db mdadm
  mime-support mono-4.0-gac mono-gac mono-runtime mono-runtime-common
  mono-runtime-sgen mono-utils mplayer mtools ncal netbase netpbm node-jquery
  ntfs-3g ocaml-base-nox ocaml-compiler-libs ocaml-interp ocaml-nox
  ocl-icd-libopencl1 odt2txt oggvideotools openjdk-11-jdk-headless
  openjdk-11-jre-headless openssh-client openssl osinfo-db p7zip p7zip-full
  parted pci.ids pciutils perl-openssl-defaults pgpdump po-debconf policykit-1
  poppler-data poppler-utils procps procyon-decompiler psmisc python3
  python3-all python3-appdirs python3-argcomplete python3-atomicwrites
  python3-attr python3-binwalk python3-cffi-backend python3-chardet
  python3-click python3-colorama python3-cov-core python3-coverage
  python3-cryptography python3-debian python3-distro python3-distutils
  python3-docutils python3-editorconfig python3-flake8 python3-guestfs
  python3-h5py python3-h5py-serial python3-importlib-metadata
  python3-jsbeautifier python3-jsondiff python3-lib2to3 python3-libarchive-c
  python3-magic python3-mccabe python3-minimal python3-more-itertools
  python3-mypy-extensions python3-nose2 python3-numpy python3-packaging
  python3-pathspec python3-pdfminer python3-pkg-resources python3-pluggy
  python3-progressbar python3-py python3-pycodestyle python3-pyflakes
  python3-pyparsing python3-pypdf2 python3-pytest python3-pytest-cov
  python3-pyxattr python3-regex python3-roman python3-rpm python3-setuptools
  python3-six python3-sortedcontainers python3-tlsh python3-toml
  python3-typed-ast python3-typing-extensions python3-wcwidth python3-zipp
  python3.8 python3.8-minimal python3.9 python3.9-minimal qemu-system-common
  qemu-system-data qemu-system-x86 qemu-utils r-base-core readline-common
  rpm-common rpm2cpio sbuild-build-depends-main-dummy scrub seabios
  sensible-utils sgml-base shared-mime-info sleuthkit sng sqlite3
  squashfs-tools supermin syslinux systemd systemd-sysv systemd-timesyncd
  tcpdump ucf udev unzip uuid-runtime wabt x11-common xdg-utils xkb-data
  xml-core xmlbeans xxd zerofree zip zstd
0 upgraded, 743 newly installed, 0 to remove and 0 not upgraded.
Need to get 911 MB of archives.
After this operation, 3571 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [1440 B]
Get:2 http://localhost:3142/debian unstable/main amd64 libapparmor1 amd64 2.13.4-3+b1 [97.1 kB]
Get:3 http://localhost:3142/debian unstable/main amd64 libcap2 amd64 1:2.44-1 [23.6 kB]
Get:4 http://localhost:3142/debian unstable/main amd64 libargon2-1 amd64 0~20171227-0.2 [19.6 kB]
Get:5 http://localhost:3142/debian unstable/main amd64 dmsetup amd64 2:1.02.171-3 [91.4 kB]
Get:6 http://localhost:3142/debian unstable/main amd64 libdevmapper1.02.1 amd64 2:1.02.171-3 [142 kB]
Get:7 http://localhost:3142/debian unstable/main amd64 libjson-c5 amd64 0.15-1 [42.8 kB]
Get:8 http://localhost:3142/debian unstable/main amd64 libcryptsetup12 amd64 2:2.3.4-1 [241 kB]
Get:9 http://localhost:3142/debian unstable/main amd64 libip4tc2 amd64 1.8.5-3 [34.5 kB]
Get:10 http://localhost:3142/debian unstable/main amd64 libkmod2 amd64 27+20200310-2 [55.0 kB]
Get:11 http://localhost:3142/debian unstable/main amd64 systemd-timesyncd amd64 246.6-2 [127 kB]
Get:12 http://localhost:3142/debian unstable/main amd64 systemd amd64 246.6-2 [4322 kB]
Get:13 http://localhost:3142/debian unstable/main amd64 systemd-sysv amd64 246.6-2 [109 kB]
Get:14 http://localhost:3142/debian unstable/main amd64 libdbus-1-3 amd64 1.12.20-1 [217 kB]
Get:15 http://localhost:3142/debian unstable/main amd64 libexpat1 amd64 2.2.10-1 [96.9 kB]
Get:16 http://localhost:3142/debian unstable/main amd64 dbus amd64 1.12.20-1 [238 kB]
Get:17 http://localhost:3142/debian unstable/main amd64 bsdextrautils amd64 2.36-3+b1 [140 kB]
Get:18 http://localhost:3142/debian unstable/main amd64 libuchardet0 amd64 0.0.7-1 [67.8 kB]
Get:19 http://localhost:3142/debian unstable/main amd64 groff-base amd64 1.22.4-5 [920 kB]
Get:20 http://localhost:3142/debian unstable/main amd64 libpipeline1 amd64 1.5.3-1 [34.3 kB]
Get:21 http://localhost:3142/debian unstable/main amd64 man-db amd64 2.9.3-2 [1314 kB]
Get:22 http://localhost:3142/debian unstable/main amd64 readline-common all 8.0-4 [72.5 kB]
Get:23 http://localhost:3142/debian unstable/main amd64 libreadline8 amd64 8.0-4 [160 kB]
Get:24 http://localhost:3142/debian unstable/main amd64 libsigsegv2 amd64 2.12-2 [32.8 kB]
Get:25 http://localhost:3142/debian unstable/main amd64 gawk amd64 1:5.0.1+dfsg-1 [610 kB]
Get:26 http://localhost:3142/debian unstable/main amd64 libgmpxx4ldbl amd64 2:6.2.0+dfsg-6 [23.1 kB]
Get:27 http://localhost:3142/debian unstable/main amd64 libgmp-dev amd64 2:6.2.0+dfsg-6 [643 kB]
Get:28 http://localhost:3142/debian unstable/main amd64 libffi-dev amd64 3.3-4 [56.4 kB]
Get:29 http://localhost:3142/debian unstable/main amd64 libbsd0 amd64 0.10.0-1 [107 kB]
Get:30 http://localhost:3142/debian unstable/main amd64 libbsd-dev amd64 0.10.0-1 [227 kB]
Get:31 http://localhost:3142/debian unstable/main amd64 libncurses6 amd64 6.2+20200918-1 [102 kB]
Get:32 http://localhost:3142/debian unstable/main amd64 libncursesw6 amd64 6.2+20200918-1 [132 kB]
Get:33 http://localhost:3142/debian unstable/main amd64 libncurses-dev amd64 6.2+20200918-1 [344 kB]
Get:34 http://localhost:3142/debian unstable/main amd64 libncurses5-dev amd64 6.2+20200918-1 [940 B]
Get:35 http://localhost:3142/debian unstable/main amd64 ghc amd64 8.8.4-1 [72.6 MB]
Get:36 http://localhost:3142/debian unstable/main amd64 node-jquery all 3.5.1+dfsg-4 [309 kB]
Get:37 http://localhost:3142/debian unstable/main amd64 libjs-jquery all 3.5.1+dfsg-4 [3612 B]
Get:38 http://localhost:3142/debian unstable/main amd64 libjs-jquery-hotkeys all 0~20130707+git2d51e3a9+dfsg-2 [11.3 kB]
Get:39 http://localhost:3142/debian unstable/main amd64 liblocale-gettext-perl amd64 1.07-4 [18.8 kB]
Get:40 http://localhost:3142/debian unstable/main amd64 libfftw3-double3 amd64 3.3.8-2 [733 kB]
Get:41 http://localhost:3142/debian unstable/main amd64 libbrotli1 amd64 1.0.9-2+b1 [282 kB]
Get:42 http://localhost:3142/debian unstable/main amd64 libpng16-16 amd64 1.6.37-3 [294 kB]
Get:43 http://localhost:3142/debian unstable/main amd64 libfreetype6 amd64 2.10.2+dfsg-3 [409 kB]
Get:44 http://localhost:3142/debian unstable/main amd64 sensible-utils all 0.0.12+nmu1 [16.0 kB]
Get:45 http://localhost:3142/debian unstable/main amd64 ucf all 3.0043 [74.0 kB]
Get:46 http://localhost:3142/debian unstable/main amd64 fonts-dejavu-core all 2.37-2 [1069 kB]
Get:47 http://localhost:3142/debian unstable/main amd64 fonts-urw-base35 all 20200910-1 [6367 kB]
Get:48 http://localhost:3142/debian unstable/main amd64 fontconfig-config all 2.13.1-4.2 [281 kB]
Get:49 http://localhost:3142/debian unstable/main amd64 libfontconfig1 amd64 2.13.1-4.2 [347 kB]
Get:50 http://localhost:3142/debian unstable/main amd64 libaom0 amd64 1.0.0.errata1-3 [1158 kB]
Get:51 http://localhost:3142/debian unstable/main amd64 libdav1d4 amd64 0.7.1-3 [333 kB]
Get:52 http://localhost:3142/debian unstable/main amd64 libde265-0 amd64 1.0.7-1 [242 kB]
Get:53 http://localhost:3142/debian unstable/main amd64 libnuma1 amd64 2.0.12-1+b1 [26.3 kB]
Get:54 http://localhost:3142/debian unstable/main amd64 libx265-192 amd64 3.4-2 [1095 kB]
Get:55 http://localhost:3142/debian unstable/main amd64 libheif1 amd64 1.9.1-1 [186 kB]
Get:56 http://localhost:3142/debian unstable/main amd64 libjbig0 amd64 2.1-3.1+b2 [31.0 kB]
Get:57 http://localhost:3142/debian unstable/main amd64 libjpeg62-turbo amd64 1:2.0.5-1.1 [149 kB]
Get:58 http://localhost:3142/debian unstable/main amd64 liblcms2-2 amd64 2.9-4+b1 [146 kB]
Get:59 http://localhost:3142/debian unstable/main amd64 libglib2.0-0 amd64 2.66.1-2 [1362 kB]
Get:60 http://localhost:3142/debian unstable/main amd64 liblqr-1-0 amd64 0.4.2-2.1 [29.1 kB]
Get:61 http://localhost:3142/debian unstable/main amd64 libltdl7 amd64 2.4.6-14 [390 kB]
Get:62 http://localhost:3142/debian unstable/main amd64 libopenjp2-7 amd64 2.3.1-1 [159 kB]
Get:63 http://localhost:3142/debian unstable/main amd64 libwebp6 amd64 0.6.1-2+b1 [261 kB]
Get:64 http://localhost:3142/debian unstable/main amd64 libtiff5 amd64 4.1.0+git191117-2 [271 kB]
Get:65 http://localhost:3142/debian unstable/main amd64 libwebpdemux2 amd64 0.6.1-2+b1 [87.7 kB]
Get:66 http://localhost:3142/debian unstable/main amd64 libwebpmux3 amd64 0.6.1-2+b1 [97.9 kB]
Get:67 http://localhost:3142/debian unstable/main amd64 libxau6 amd64 1:1.0.8-1+b2 [19.9 kB]
Get:68 http://localhost:3142/debian unstable/main amd64 libxdmcp6 amd64 1:1.1.2-3 [26.3 kB]
Get:69 http://localhost:3142/debian unstable/main amd64 libxcb1 amd64 1.14-2 [139 kB]
Get:70 http://localhost:3142/debian unstable/main amd64 libx11-data all 2:1.6.12-1 [311 kB]
Get:71 http://localhost:3142/debian unstable/main amd64 libx11-6 amd64 2:1.6.12-1 [770 kB]
Get:72 http://localhost:3142/debian unstable/main amd64 libxext6 amd64 2:1.3.3-1+b2 [52.5 kB]
Get:73 http://localhost:3142/debian unstable/main amd64 libicu67 amd64 67.1-4 [8624 kB]
Get:74 http://localhost:3142/debian unstable/main amd64 libxml2 amd64 2.9.10+dfsg-6.1 [692 kB]
Get:75 http://localhost:3142/debian unstable/main amd64 imagemagick-6-common all 8:6.9.11.24+dfsg-1 [208 kB]
Get:76 http://localhost:3142/debian unstable/main amd64 libmagickcore-6.q16-6 amd64 8:6.9.11.24+dfsg-1+b1 [1804 kB]
Get:77 http://localhost:3142/debian unstable/main amd64 libmagickwand-6.q16-6 amd64 8:6.9.11.24+dfsg-1+b1 [448 kB]
Get:78 http://localhost:3142/debian unstable/main amd64 libsane-common all 1.0.31-2 [1270 kB]
Get:79 http://localhost:3142/debian unstable/main amd64 libaio1 amd64 0.3.112-8 [12.5 kB]
Get:80 http://localhost:3142/debian unstable/main amd64 libdevmapper-event1.02.1 amd64 2:1.02.171-3 [22.9 kB]
Get:81 http://localhost:3142/debian unstable/main amd64 libreadline5 amd64 5.2+dfsg-3+b13 [120 kB]
Get:82 http://localhost:3142/debian unstable/main amd64 liblvm2cmd2.03 amd64 2.03.09-3 [686 kB]
Get:83 http://localhost:3142/debian unstable/main amd64 dmeventd amd64 2:1.02.171-3 [69.1 kB]
Get:84 http://localhost:3142/debian unstable/main amd64 lvm2 amd64 2.03.09-3 [1160 kB]
Get:85 http://localhost:3142/debian unstable/main amd64 udev amd64 246.6-2 [1436 kB]
Get:86 http://localhost:3142/debian unstable/main amd64 mdadm amd64 4.1-8 [457 kB]
Get:87 http://localhost:3142/debian unstable/main amd64 libfuse2 amd64 2.9.9-3 [128 kB]
Get:88 http://localhost:3142/debian unstable/main amd64 fuse amd64 2.9.9-3 [72.3 kB]
Get:89 http://localhost:3142/debian unstable/main amd64 libntfs-3g883 amd64 1:2017.3.23AR.3-3 [167 kB]
Get:90 http://localhost:3142/debian unstable/main amd64 ntfs-3g amd64 1:2017.3.23AR.3-3 [407 kB]
Get:91 http://localhost:3142/debian unstable/main amd64 poppler-data all 0.4.9-2 [1473 kB]
Get:92 http://localhost:3142/debian unstable/main amd64 libpython3.8-minimal amd64 3.8.6-1 [761 kB]
Get:93 http://localhost:3142/debian unstable/main amd64 python3.8-minimal amd64 3.8.6-1 [1863 kB]
Get:94 http://localhost:3142/debian unstable/main amd64 python3-minimal amd64 3.8.6-1 [37.7 kB]
Get:95 http://localhost:3142/debian unstable/main amd64 mime-support all 3.64 [37.8 kB]
Get:96 http://localhost:3142/debian unstable/main amd64 libsqlite3-0 amd64 3.33.0-1 [790 kB]
Get:97 http://localhost:3142/debian unstable/main amd64 libpython3.8-stdlib amd64 3.8.6-1 [1720 kB]
Get:98 http://localhost:3142/debian unstable/main amd64 python3.8 amd64 3.8.6-1 [422 kB]
Get:99 http://localhost:3142/debian unstable/main amd64 libpython3-stdlib amd64 3.8.6-1 [20.9 kB]
Get:100 http://localhost:3142/debian unstable/main amd64 python3 amd64 3.8.6-1 [64.0 kB]
Get:101 http://localhost:3142/debian unstable/main amd64 libpython3.9-minimal amd64 3.9.0-5 [797 kB]
Get:102 http://localhost:3142/debian unstable/main amd64 python3.9-minimal amd64 3.9.0-5 [1957 kB]
Get:103 http://localhost:3142/debian unstable/main amd64 sgml-base all 1.30 [15.1 kB]
Get:104 http://localhost:3142/debian unstable/main amd64 uuid-runtime amd64 2.36-3+b1 [99.9 kB]
Get:105 http://localhost:3142/debian unstable/main amd64 calendar amd64 12.1.7 [132 kB]
Get:106 http://localhost:3142/debian unstable/main amd64 ncal amd64 12.1.7 [29.9 kB]
Get:107 http://localhost:3142/debian unstable/main amd64 bsdmainutils all 12.1.7 [16.2 kB]
Get:108 http://localhost:3142/debian unstable/main amd64 cpio amd64 2.13+dfsg-4 [244 kB]
Get:109 http://localhost:3142/debian unstable/main amd64 dmidecode amd64 3.2-4 [63.4 kB]
Get:110 http://localhost:3142/debian unstable/main amd64 libfdisk1 amd64 2.36-3+b1 [238 kB]
Get:111 http://localhost:3142/debian unstable/main amd64 fdisk amd64 2.36-3+b1 [190 kB]
Get:112 http://localhost:3142/debian unstable/main amd64 libelf1 amd64 0.181-1 [164 kB]
Get:113 http://localhost:3142/debian unstable/main amd64 libmnl0 amd64 1.0.4-3 [12.5 kB]
Get:114 http://localhost:3142/debian unstable/main amd64 libxtables12 amd64 1.8.5-3 [44.7 kB]
Get:115 http://localhost:3142/debian unstable/main amd64 libcap2-bin amd64 1:2.44-1 [32.6 kB]
Get:116 http://localhost:3142/debian unstable/main amd64 iproute2 amd64 5.9.0-1 [925 kB]
Get:117 http://localhost:3142/debian unstable/main amd64 libisc-export1105 amd64 1:9.11.19+dfsg-1 [399 kB]
Get:118 http://localhost:3142/debian unstable/main amd64 libdns-export1110 amd64 1:9.11.19+dfsg-1 [993 kB]
Get:119 http://localhost:3142/debian unstable/main amd64 isc-dhcp-client amd64 4.4.1-2.1+b2 [339 kB]
Get:120 http://localhost:3142/debian unstable/main amd64 kmod amd64 27+20200310-2 [92.0 kB]
Get:121 http://localhost:3142/debian unstable/main amd64 less amd64 551-2 [133 kB]
Get:122 http://localhost:3142/debian unstable/main amd64 netbase all 6.2 [19.9 kB]
Get:123 http://localhost:3142/debian unstable/main amd64 libprocps8 amd64 2:3.3.16-5 [62.7 kB]
Get:124 http://localhost:3142/debian unstable/main amd64 procps amd64 2:3.3.16-5 [262 kB]
Get:125 http://localhost:3142/debian unstable/main amd64 bash-completion all 1:2.11-2 [234 kB]
Get:126 http://localhost:3142/debian unstable/main amd64 libmagic-mgc amd64 1:5.38-5 [262 kB]
Get:127 http://localhost:3142/debian unstable/main amd64 libmagic1 amd64 1:5.38-5 [120 kB]
Get:128 http://localhost:3142/debian unstable/main amd64 file amd64 1:5.38-5 [67.9 kB]
Get:129 http://localhost:3142/debian unstable/main amd64 gettext-base amd64 0.19.8.1-10 [123 kB]
Get:130 http://localhost:3142/debian unstable/main amd64 libpam-systemd amd64 246.6-2 [277 kB]
Get:131 http://localhost:3142/debian unstable/main amd64 libedit2 amd64 3.1-20191231-1 [95.4 kB]
Get:132 http://localhost:3142/debian unstable/main amd64 libcbor0 amd64 0.5.0+dfsg-2 [24.0 kB]
Get:133 http://localhost:3142/debian unstable/main amd64 libfido2-1 amd64 1.5.0-2 [52.3 kB]
Get:134 http://localhost:3142/debian unstable/main amd64 openssh-client amd64 1:8.3p1-1 [910 kB]
Get:135 http://localhost:3142/debian unstable/main amd64 pci.ids all 0.0~2020.09.21-1 [221 kB]
Get:136 http://localhost:3142/debian unstable/main amd64 libpci3 amd64 1:3.7.0-4 [62.6 kB]
Get:137 http://localhost:3142/debian unstable/main amd64 pciutils amd64 1:3.7.0-4 [97.6 kB]
Get:138 http://localhost:3142/debian unstable/main amd64 android-liblog amd64 1:8.1.0+r23-8 [44.6 kB]
Get:139 http://localhost:3142/debian unstable/main amd64 android-libbase amd64 1:8.1.0+r23-8 [32.4 kB]
Get:140 http://localhost:3142/debian unstable/main amd64 android-libcutils amd64 1:8.1.0+r23-8 [32.5 kB]
Get:141 http://localhost:3142/debian unstable/main amd64 p7zip amd64 16.02+dfsg-8 [381 kB]
Get:142 http://localhost:3142/debian unstable/main amd64 p7zip-full amd64 16.02+dfsg-8 [1183 kB]
Get:143 http://localhost:3142/debian unstable/main amd64 android-libunwind amd64 10.0.0+r36-3 [48.3 kB]
Get:144 http://localhost:3142/debian unstable/main amd64 android-libbacktrace amd64 1:8.1.0+r23-8 [53.6 kB]
Get:145 http://localhost:3142/debian unstable/main amd64 android-libutils amd64 1:8.1.0+r23-8 [59.4 kB]
Get:146 http://localhost:3142/debian unstable/main amd64 android-libziparchive amd64 1:8.1.0+r23-8 [33.8 kB]
Get:147 http://localhost:3142/debian unstable/main amd64 android-libandroidfw amd64 1:8.1.0+r23-3+b2 [136 kB]
Get:148 http://localhost:3142/debian unstable/main amd64 android-libaapt amd64 1:8.1.0+r23-3+b2 [272 kB]
Get:149 http://localhost:3142/debian unstable/main amd64 libprotobuf-lite23 amd64 3.12.3-2+b1 [242 kB]
Get:150 http://localhost:3142/debian unstable/main amd64 aapt amd64 1:8.1.0+r23-3+b2 [551 kB]
Get:151 http://localhost:3142/debian unstable/main amd64 abootimg amd64 0.6-1+b2 [14.6 kB]
Get:152 http://localhost:3142/debian unstable/main amd64 acl amd64 2.2.53-8 [60.8 kB]
Get:153 http://localhost:3142/debian unstable/main amd64 hicolor-icon-theme all 0.17-2 [11.4 kB]
Get:154 http://localhost:3142/debian unstable/main amd64 libgdk-pixbuf2.0-common all 2.40.0+dfsg-5 [317 kB]
Get:155 http://localhost:3142/debian unstable/main amd64 shared-mime-info amd64 2.0-1 [701 kB]
Get:156 http://localhost:3142/debian unstable/main amd64 libgdk-pixbuf2.0-0 amd64 2.40.0+dfsg-5 [177 kB]
Get:157 http://localhost:3142/debian unstable/main amd64 gtk-update-icon-cache amd64 3.24.23-2 [86.2 kB]
Get:158 http://localhost:3142/debian unstable/main amd64 adwaita-icon-theme all 3.38.0-1 [10.9 MB]
Get:159 http://localhost:3142/debian unstable/main amd64 android-framework-res all 1:8.1.0+r23-3 [13.5 MB]
Get:160 http://localhost:3142/debian unstable/main amd64 binfmt-support amd64 2.2.1-1 [66.1 kB]
Get:161 http://localhost:3142/debian unstable/main amd64 fastjar amd64 2:0.98-7 [80.1 kB]
Get:162 http://localhost:3142/debian unstable/main amd64 jarwrapper all 0.77 [21.7 kB]
Get:163 http://localhost:3142/debian unstable/main amd64 openssl amd64 1.1.1h-1 [848 kB]
Get:164 http://localhost:3142/debian unstable/main amd64 ca-certificates all 20200601 [158 kB]
Get:165 http://localhost:3142/debian unstable/main amd64 libnspr4 amd64 2:4.28-1 [112 kB]
Get:166 http://localhost:3142/debian unstable/main amd64 libnss3 amd64 2:3.56-1 [1301 kB]
Get:167 http://localhost:3142/debian unstable/main amd64 ca-certificates-java all 20190909 [15.7 kB]
Get:168 http://localhost:3142/debian unstable/main amd64 java-common all 0.72 [14.5 kB]
Get:169 http://localhost:3142/debian unstable/main amd64 libavahi-common-data amd64 0.8-3 [126 kB]
Get:170 http://localhost:3142/debian unstable/main amd64 libavahi-common3 amd64 0.8-3 [58.3 kB]
Get:171 http://localhost:3142/debian unstable/main amd64 libavahi-client3 amd64 0.8-3 [61.7 kB]
Get:172 http://localhost:3142/debian unstable/main amd64 libcups2 amd64 2.3.3-3 [348 kB]
Get:173 http://localhost:3142/debian unstable/main amd64 libasound2-data all 1.2.3.2-1 [38.1 kB]
Get:174 http://localhost:3142/debian unstable/main amd64 libasound2 amd64 1.2.3.2-1 [355 kB]
Get:175 http://localhost:3142/debian unstable/main amd64 libpcsclite1 amd64 1.9.0-1 [59.3 kB]
Get:176 http://localhost:3142/debian unstable/main amd64 libxi6 amd64 2:1.7.10-1 [83.4 kB]
Get:177 http://localhost:3142/debian unstable/main amd64 libxrender1 amd64 1:0.9.10-1 [33.0 kB]
Get:178 http://localhost:3142/debian unstable/main amd64 x11-common all 1:7.7+21 [252 kB]
Get:179 http://localhost:3142/debian unstable/main amd64 libxtst6 amd64 2:1.2.3-1 [27.8 kB]
Get:180 http://localhost:3142/debian unstable/main amd64 openjdk-11-jre-headless amd64 11.0.8+10-1.1 [37.4 MB]
Get:181 http://localhost:3142/debian unstable/main amd64 default-jre-headless amd64 2:1.11-72 [10.9 kB]
Get:182 http://localhost:3142/debian unstable/main amd64 apksigner all 30.0.3-1 [358 kB]
Get:183 http://localhost:3142/debian unstable/main amd64 libantlr3-runtime-java all 3.5.2-9 [166 kB]
Get:184 http://localhost:3142/debian unstable/main amd64 libcommons-cli-java all 1.4-2 [57.3 kB]
Get:185 http://localhost:3142/debian unstable/main amd64 libapache-pom-java all 18-1 [4676 B]
Get:186 http://localhost:3142/debian unstable/main amd64 libcommons-parent-java all 43-1 [10.8 kB]
Get:187 http://localhost:3142/debian unstable/main amd64 libcommons-io-java all 2.8.0-1 [279 kB]
Get:188 http://localhost:3142/debian unstable/main amd64 libcommons-lang3-java all 3.11-1 [550 kB]
Get:189 http://localhost:3142/debian unstable/main amd64 libatinject-jsr330-api-java all 1.0+ds1-5 [5312 B]
Get:190 http://localhost:3142/debian unstable/main amd64 libjsr305-java all 0.1~+svn49-11 [26.9 kB]
Get:191 http://localhost:3142/debian unstable/main amd64 libguava-java all 29.0-6 [2419 kB]
Get:192 http://localhost:3142/debian unstable/main amd64 libsmali-java all 2.4.0-1 [1344 kB]
Get:193 http://localhost:3142/debian unstable/main amd64 libantlr-java all 2.7.7+dfsg-10 [458 kB]
Get:194 http://localhost:3142/debian unstable/main amd64 libstringtemplate-java all 3.2.1-2 [152 kB]
Get:195 http://localhost:3142/debian unstable/main amd64 junit all 3.8.2-9 [110 kB]
Get:196 http://localhost:3142/debian unstable/main amd64 libxmlunit-java all 1.6-2 [100 kB]
Get:197 http://localhost:3142/debian unstable/main amd64 libxpp3-java all 1.1.4c-3 [292 kB]
Get:198 http://localhost:3142/debian unstable/main amd64 libyaml-snake-java all 1.26+ds-1 [278 kB]
Get:199 http://localhost:3142/debian unstable/main amd64 apktool all 2.4.1-1 [212 kB]
Get:200 http://localhost:3142/debian unstable/main amd64 attr amd64 1:2.4.48-5 [41.7 kB]
Get:201 http://localhost:3142/debian unstable/main amd64 augeas-lenses all 1.12.0-2 [451 kB]
Get:202 http://localhost:3142/debian unstable/main amd64 m4 amd64 1.4.18-4 [203 kB]
Get:203 http://localhost:3142/debian unstable/main amd64 autoconf all 2.69-11.1 [341 kB]
Get:204 http://localhost:3142/debian unstable/main amd64 autotools-dev all 20180224.1 [77.0 kB]
Get:205 http://localhost:3142/debian unstable/main amd64 automake all 1:1.16.2-4 [801 kB]
Get:206 http://localhost:3142/debian unstable/main amd64 autopoint all 0.19.8.1-10 [435 kB]
Get:207 http://localhost:3142/debian unstable/main amd64 binutils-multiarch amd64 2.35.1-2 [1915 kB]
Get:208 http://localhost:3142/debian unstable/main amd64 python3-pkg-resources all 50.3.0-1 [187 kB]
Get:209 http://localhost:3142/debian unstable/main amd64 python3-appdirs all 1.4.4-1 [12.7 kB]
Get:210 http://localhost:3142/debian unstable/main amd64 python3-colorama all 0.4.3-1 [27.8 kB]
Get:211 http://localhost:3142/debian unstable/main amd64 python3-click all 7.1.2-1 [75.7 kB]
Get:212 http://localhost:3142/debian unstable/main amd64 python3-mypy-extensions all 0.4.3-2 [5700 B]
Get:213 http://localhost:3142/debian unstable/main amd64 python3-pathspec all 0.8.0-1 [27.3 kB]
Get:214 http://localhost:3142/debian unstable/main amd64 python3-regex amd64 0.1.20200714-1+b1 [298 kB]
Get:215 http://localhost:3142/debian unstable/main amd64 python3-toml all 0.10.1-1 [15.9 kB]
Get:216 http://localhost:3142/debian unstable/main amd64 python3-typed-ast amd64 1.4.1-1+b2 [222 kB]
Get:217 http://localhost:3142/debian unstable/main amd64 python3-typing-extensions all 3.7.4.3-1 [29.8 kB]
Get:218 http://localhost:3142/debian unstable/main amd64 black all 20.8b1-2 [111 kB]
Get:219 http://localhost:3142/debian unstable/main amd64 liblzo2-2 amd64 2.10-2 [56.9 kB]
Get:220 http://localhost:3142/debian unstable/main amd64 btrfs-progs amd64 5.7-1 [690 kB]
Get:221 http://localhost:3142/debian unstable/main amd64 libslang2 amd64 2.3.2-5 [509 kB]
Get:222 http://localhost:3142/debian unstable/main amd64 libcaca0 amd64 0.99.beta19-2.1 [346 kB]
Get:223 http://localhost:3142/debian unstable/main amd64 libgif7 amd64 5.1.9-1 [44.7 kB]
Get:224 http://localhost:3142/debian unstable/main amd64 libid3tag0 amd64 0.15.1b-14 [35.4 kB]
Get:225 http://localhost:3142/debian unstable/main amd64 libx11-xcb1 amd64 2:1.6.12-1 [203 kB]
Get:226 http://localhost:3142/debian unstable/main amd64 libxcb-shm0 amd64 1.14-2 [101 kB]
Get:227 http://localhost:3142/debian unstable/main amd64 libimlib2 amd64 1.7.0-1 [212 kB]
Get:228 http://localhost:3142/debian unstable/main amd64 caca-utils amd64 0.99.beta19-2.1 [196 kB]
Get:229 http://localhost:3142/debian unstable/main amd64 libcolord2 amd64 1.4.4-2 [143 kB]
Get:230 http://localhost:3142/debian unstable/main amd64 libusb-1.0-0 amd64 2:1.0.23-2 [58.0 kB]
Get:231 http://localhost:3142/debian unstable/main amd64 libgusb2 amd64 0.3.4-0.2 [26.5 kB]
Get:232 http://localhost:3142/debian unstable/main amd64 libcolorhug2 amd64 1.4.4-2 [46.0 kB]
Get:233 http://localhost:3142/debian unstable/main amd64 libgudev-1.0-0 amd64 234-1 [14.7 kB]
Get:234 http://localhost:3142/debian unstable/main amd64 libpolkit-gobject-1-0 amd64 0.105-29 [48.4 kB]
Get:235 http://localhost:3142/debian unstable/main amd64 libpixman-1-0 amd64 0.36.0-1 [537 kB]
Get:236 http://localhost:3142/debian unstable/main amd64 libxcb-render0 amd64 1.14-2 [111 kB]
Get:237 http://localhost:3142/debian unstable/main amd64 libcairo2 amd64 1.16.0-4 [689 kB]
Get:238 http://localhost:3142/debian unstable/main amd64 libsasl2-modules-db amd64 2.1.27+dfsg-2 [69.0 kB]
Get:239 http://localhost:3142/debian unstable/main amd64 libsasl2-2 amd64 2.1.27+dfsg-2 [106 kB]
Get:240 http://localhost:3142/debian unstable/main amd64 libldap-2.4-2 amd64 2.4.54+dfsg-1 [231 kB]
Get:241 http://localhost:3142/debian unstable/main amd64 libnghttp2-14 amd64 1.41.0-3 [74.0 kB]
Get:242 http://localhost:3142/debian unstable/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b2 [60.8 kB]
Get:243 http://localhost:3142/debian unstable/main amd64 libssh2-1 amd64 1.8.0-2.1 [140 kB]
Get:244 http://localhost:3142/debian unstable/main amd64 libcurl3-gnutls amd64 7.72.0-1 [333 kB]
Get:245 http://localhost:3142/debian unstable/main amd64 libcurl4 amd64 7.72.0-1 [336 kB]
Get:246 http://localhost:3142/debian unstable/main amd64 libexif12 amd64 0.6.22-2 [374 kB]
Get:247 http://localhost:3142/debian unstable/main amd64 libxpm4 amd64 1:3.5.12-1 [49.1 kB]
Get:248 http://localhost:3142/debian unstable/main amd64 libgd3 amd64 2.3.0-2 [137 kB]
Get:249 http://localhost:3142/debian unstable/main amd64 libgphoto2-port12 amd64 2.5.26-1 [149 kB]
Get:250 http://localhost:3142/debian unstable/main amd64 libgphoto2-6 amd64 2.5.26-1 [743 kB]
Get:251 http://localhost:3142/debian unstable/main amd64 libieee1284-3 amd64 0.2.11-14 [29.2 kB]
Get:252 http://localhost:3142/debian unstable/main amd64 libpoppler102 amd64 20.09.0-2 [1676 kB]
Get:253 http://localhost:3142/debian unstable/main amd64 libpoppler-glib8 amd64 20.09.0-2 [133 kB]
Get:254 http://localhost:3142/debian unstable/main amd64 libsensors-config all 1:3.6.0-2 [32.0 kB]
Get:255 http://localhost:3142/debian unstable/main amd64 libsensors5 amd64 1:3.6.0-2 [53.1 kB]
Get:256 http://localhost:3142/debian unstable/main amd64 libwrap0 amd64 7.6.q-30 [58.9 kB]
Get:257 http://localhost:3142/debian unstable/main amd64 libsnmp-base all 5.9+dfsg-3 [1736 kB]
Get:258 http://localhost:3142/debian unstable/main amd64 libsnmp40 amd64 5.9+dfsg-3 [2554 kB]
Get:259 http://localhost:3142/debian unstable/main amd64 libsane1 amd64 1.0.31-2 [2512 kB]
Get:260 http://localhost:3142/debian unstable/main amd64 libsane amd64 1.0.31-2 [47.1 kB]
Get:261 http://localhost:3142/debian unstable/main amd64 dbus-user-session amd64 1.12.20-1 [96.0 kB]
Get:262 http://localhost:3142/debian unstable/main amd64 libdconf1 amd64 0.38.0-1 [43.5 kB]
Get:263 http://localhost:3142/debian unstable/main amd64 dconf-service amd64 0.38.0-1 [37.5 kB]
Get:264 http://localhost:3142/debian unstable/main amd64 dconf-gsettings-backend amd64 0.38.0-1 [30.6 kB]
Get:265 http://localhost:3142/debian unstable/main amd64 libpolkit-agent-1-0 amd64 0.105-29 [27.9 kB]
Get:266 http://localhost:3142/debian unstable/main amd64 policykit-1 amd64 0.105-29 [96.4 kB]
Get:267 http://localhost:3142/debian unstable/main amd64 colord-data all 1.4.4-2 [1224 kB]
Get:268 http://localhost:3142/debian unstable/main amd64 colord amd64 1.4.4-2 [198 kB]
Get:269 http://localhost:3142/debian unstable/main amd64 libpopt0 amd64 1.18-1 [49.7 kB]
Get:270 http://localhost:3142/debian unstable/main amd64 cryptsetup-bin amd64 2:2.3.4-1 [403 kB]
Get:271 http://localhost:3142/debian unstable/main amd64 curl amd64 7.72.0-1 [264 kB]
Get:272 http://localhost:3142/debian unstable/main amd64 db5.3-util amd64 5.3.28+dfsg1-0.6 [64.6 kB]
Get:273 http://localhost:3142/debian unstable/main amd64 db-util all 5.3.1+nmu1 [2932 B]
Get:274 http://localhost:3142/debian unstable/main amd64 libtool all 2.4.6-14 [513 kB]
Get:275 http://localhost:3142/debian unstable/main amd64 dh-autoreconf all 19 [16.9 kB]
Get:276 http://localhost:3142/debian unstable/main amd64 libdebhelper-perl all 13.2.1 [188 kB]
Get:277 http://localhost:3142/debian unstable/main amd64 libarchive-zip-perl all 1.68-1 [104 kB]
Get:278 http://localhost:3142/debian unstable/main amd64 libsub-override-perl all 0.09-2 [10.2 kB]
Get:279 http://localhost:3142/debian unstable/main amd64 libfile-stripnondeterminism-perl all 1.9.0-1 [25.5 kB]
Get:280 http://localhost:3142/debian unstable/main amd64 dh-strip-nondeterminism all 1.9.0-1 [15.2 kB]
Get:281 http://localhost:3142/debian unstable/main amd64 dwz amd64 0.13-5 [151 kB]
Get:282 http://localhost:3142/debian unstable/main amd64 libcroco3 amd64 0.6.13-1 [146 kB]
Get:283 http://localhost:3142/debian unstable/main amd64 gettext amd64 0.19.8.1-10 [1303 kB]
Get:284 http://localhost:3142/debian unstable/main amd64 intltool-debian all 0.35.0+20060710.5 [26.8 kB]
Get:285 http://localhost:3142/debian unstable/main amd64 po-debconf all 1.0.21 [248 kB]
Get:286 http://localhost:3142/debian unstable/main amd64 debhelper all 13.2.1 [1007 kB]
Get:287 http://localhost:3142/debian unstable/main amd64 debootstrap all 1.0.123 [75.3 kB]
Get:288 http://localhost:3142/debian unstable/main amd64 openjdk-11-jdk-headless amd64 11.0.8+10-1.1 [217 MB]
Get:289 http://localhost:3142/debian unstable/main amd64 default-jdk-headless amd64 2:1.11-72 [1100 B]
Get:290 http://localhost:3142/debian unstable/main amd64 libfdt1 amd64 1.6.0-1 [21.0 kB]
Get:291 http://localhost:3142/debian unstable/main amd64 libyaml-0-2 amd64 0.2.2-1 [49.6 kB]
Get:292 http://localhost:3142/debian unstable/main amd64 device-tree-compiler amd64 1.6.0-1 [228 kB]
Get:293 http://localhost:3142/debian unstable/main amd64 python3-lib2to3 all 3.8.6-1 [78.4 kB]
Get:294 http://localhost:3142/debian unstable/main amd64 python3-distutils all 3.8.6-1 [145 kB]
Get:295 http://localhost:3142/debian unstable/main amd64 dh-python all 4.20200925 [98.3 kB]
Get:296 http://localhost:3142/debian unstable/main amd64 distro-info-data all 0.44 [6620 B]
Get:297 http://localhost:3142/debian unstable/main amd64 xml-core all 0.18+nmu1 [23.8 kB]
Get:298 http://localhost:3142/debian unstable/main amd64 docutils-common all 0.16+dfsg-3 [129 kB]
Get:299 http://localhost:3142/debian unstable/main amd64 unzip amd64 6.0-25 [172 kB]
Get:300 http://localhost:3142/debian unstable/main amd64 docx2txt all 1.4-2 [17.8 kB]
Get:301 http://localhost:3142/debian unstable/main amd64 dosfstools amd64 4.1-2 [98.4 kB]
Get:302 http://localhost:3142/debian unstable/main amd64 enjarify all 1:1.0.3-4 [80.2 kB]
Get:303 http://localhost:3142/debian unstable/main amd64 exfat-fuse amd64 1.3.0-2 [30.1 kB]
Get:304 http://localhost:3142/debian unstable/main amd64 exfat-utils amd64 1.3.0-2 [45.2 kB]
Get:305 http://localhost:3142/debian unstable/main amd64 extlinux amd64 3:6.04~git20190206.bf6db5b4+dfsg1-3 [192 kB]
Get:306 http://localhost:3142/debian unstable/main amd64 libf2fs5 amd64 1.11.0-1.1 [14.4 kB]
Get:307 http://localhost:3142/debian unstable/main amd64 libf2fs-format4 amd64 1.11.0-1.1 [18.6 kB]
Get:308 http://localhost:3142/debian unstable/main amd64 f2fs-tools amd64 1.11.0-1.1 [156 kB]
Get:309 http://localhost:3142/debian unstable/main amd64 libfakeroot amd64 1.25.3-1 [47.0 kB]
Get:310 http://localhost:3142/debian unstable/main amd64 fakeroot amd64 1.25.3-1 [87.0 kB]
Get:311 http://localhost:3142/debian unstable/main amd64 libdrm-common all 2.4.102-1 [14.5 kB]
Get:312 http://localhost:3142/debian unstable/main amd64 libdrm2 amd64 2.4.102-1 [41.5 kB]
Get:313 http://localhost:3142/debian unstable/main amd64 libva2 amd64 2.9.0-1 [68.3 kB]
Get:314 http://localhost:3142/debian unstable/main amd64 libmfx1 amd64 20.3.0-1 [3250 kB]
Get:315 http://localhost:3142/debian unstable/main amd64 libva-drm2 amd64 2.9.0-1 [18.7 kB]
Get:316 http://localhost:3142/debian unstable/main amd64 libxfixes3 amd64 1:5.0.3-2 [22.1 kB]
Get:317 http://localhost:3142/debian unstable/main amd64 libva-x11-2 amd64 2.9.0-1 [23.6 kB]
Get:318 http://localhost:3142/debian unstable/main amd64 libvdpau1 amd64 1.4-2 [29.2 kB]
Get:319 http://localhost:3142/debian unstable/main amd64 ocl-icd-libopencl1 amd64 2.2.12-4 [37.8 kB]
Get:320 http://localhost:3142/debian unstable/main amd64 libavutil56 amd64 7:4.3.1-4 [298 kB]
Get:321 http://localhost:3142/debian unstable/main amd64 libcodec2-0.9 amd64 0.9.2-3 [7891 kB]
Get:322 http://localhost:3142/debian unstable/main amd64 libgsm1 amd64 1.0.18-2 [27.7 kB]
Get:323 http://localhost:3142/debian unstable/main amd64 libmp3lame0 amd64 3.100-3 [364 kB]
Get:324 http://localhost:3142/debian unstable/main amd64 libopus0 amd64 1.3.1-0.1 [190 kB]
Get:325 http://localhost:3142/debian unstable/main amd64 libcairo-gobject2 amd64 1.16.0-4 [124 kB]
Get:326 http://localhost:3142/debian unstable/main amd64 fontconfig amd64 2.13.1-4.2 [417 kB]
Get:327 http://localhost:3142/debian unstable/main amd64 libfribidi0 amd64 1.0.8-2 [64.8 kB]
Get:328 http://localhost:3142/debian unstable/main amd64 libgraphite2-3 amd64 1.3.14-1 [81.2 kB]
Get:329 http://localhost:3142/debian unstable/main amd64 libharfbuzz0b amd64 2.6.7-1 [1467 kB]
Get:330 http://localhost:3142/debian unstable/main amd64 libthai-data all 0.1.28-3 [170 kB]
Get:331 http://localhost:3142/debian unstable/main amd64 libdatrie1 amd64 0.2.12-3 [39.5 kB]
Get:332 http://localhost:3142/debian unstable/main amd64 libthai0 amd64 0.1.28-3 [54.2 kB]
Get:333 http://localhost:3142/debian unstable/main amd64 libpango-1.0-0 amd64 1.46.2-1 [191 kB]
Get:334 http://localhost:3142/debian unstable/main amd64 libpangoft2-1.0-0 amd64 1.46.2-1 [61.2 kB]
Get:335 http://localhost:3142/debian unstable/main amd64 libpangocairo-1.0-0 amd64 1.46.2-1 [50.0 kB]
Get:336 http://localhost:3142/debian unstable/main amd64 librsvg2-2 amd64 2.50.1+dfsg-1 [2339 kB]
Get:337 http://localhost:3142/debian unstable/main amd64 libshine3 amd64 3.1.1-2 [23.6 kB]
Get:338 http://localhost:3142/debian unstable/main amd64 libsnappy1v5 amd64 1.1.8-1 [17.9 kB]
Get:339 http://localhost:3142/debian unstable/main amd64 libspeex1 amd64 1.2~rc1.2-1.1 [55.4 kB]
Get:340 http://localhost:3142/debian unstable/main amd64 libsoxr0 amd64 0.1.3-4 [77.8 kB]
Get:341 http://localhost:3142/debian unstable/main amd64 libswresample3 amd64 7:4.3.1-4 [95.9 kB]
Get:342 http://localhost:3142/debian unstable/main amd64 libogg0 amd64 1.3.2-1+b1 [21.3 kB]
Get:343 http://localhost:3142/debian unstable/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15 [169 kB]
Get:344 http://localhost:3142/debian unstable/main amd64 libtwolame0 amd64 0.4.0-2 [51.1 kB]
Get:345 http://localhost:3142/debian unstable/main amd64 libvorbis0a amd64 1.3.7-1 [93.0 kB]
Get:346 http://localhost:3142/debian unstable/main amd64 libvorbisenc2 amd64 1.3.7-1 [80.6 kB]
Get:347 http://localhost:3142/debian unstable/main amd64 libvpx6 amd64 1.8.2-1 [833 kB]
Get:348 http://localhost:3142/debian unstable/main amd64 libwavpack1 amd64 5.3.0-1 [87.7 kB]
Get:349 http://localhost:3142/debian unstable/main amd64 libx264-160 amd64 2:0.160.3011+gitcde9a93-2 [539 kB]
Get:350 http://localhost:3142/debian unstable/main amd64 libxvidcore4 amd64 2:1.3.7-1 [242 kB]
Get:351 http://localhost:3142/debian unstable/main amd64 libzvbi-common all 0.2.35-18 [64.6 kB]
Get:352 http://localhost:3142/debian unstable/main amd64 libzvbi0 amd64 0.2.35-18 [271 kB]
Get:353 http://localhost:3142/debian unstable/main amd64 libavcodec58 amd64 7:4.3.1-4 [4943 kB]
Get:354 http://localhost:3142/debian unstable/main amd64 libraw1394-11 amd64 2.1.2-2 [41.1 kB]
Get:355 http://localhost:3142/debian unstable/main amd64 libavc1394-0 amd64 0.5.4-5 [19.9 kB]
Get:356 http://localhost:3142/debian unstable/main amd64 libass9 amd64 1:0.14.0-2 [96.7 kB]
Get:357 http://localhost:3142/debian unstable/main amd64 libbluray2 amd64 1:1.2.0-3 [147 kB]
Get:358 http://localhost:3142/debian unstable/main amd64 libchromaprint1 amd64 1.5.0-1 [41.2 kB]
Get:359 http://localhost:3142/debian unstable/main amd64 libgme0 amd64 0.6.3-2 [128 kB]
Get:360 http://localhost:3142/debian unstable/main amd64 libmpg123-0 amd64 1.26.3-1 [145 kB]
Get:361 http://localhost:3142/debian unstable/main amd64 libvorbisfile3 amd64 1.3.7-1 [26.1 kB]
Get:362 http://localhost:3142/debian unstable/main amd64 libopenmpt0 amd64 0.4.11-1 [616 kB]
Get:363 http://localhost:3142/debian unstable/main amd64 librabbitmq4 amd64 0.10.0-1 [41.0 kB]
Get:364 http://localhost:3142/debian unstable/main amd64 libsrt1-gnutls amd64 1.4.2-1 [271 kB]
Get:365 http://localhost:3142/debian unstable/main amd64 libssh-gcrypt-4 amd64 0.9.4-1 [217 kB]
Get:366 http://localhost:3142/debian unstable/main amd64 libnorm1 amd64 1.5.8+dfsg2-2 [289 kB]
Get:367 http://localhost:3142/debian unstable/main amd64 libpgm-5.3-0 amd64 5.3.128~dfsg-2 [161 kB]
Get:368 http://localhost:3142/debian unstable/main amd64 libsodium23 amd64 1.0.18-1 [161 kB]
Get:369 http://localhost:3142/debian unstable/main amd64 libzmq5 amd64 4.3.3-2+b1 [273 kB]
Get:370 http://localhost:3142/debian unstable/main amd64 libavformat58 amd64 7:4.3.1-4 [1038 kB]
Get:371 http://localhost:3142/debian unstable/main amd64 libbs2b0 amd64 3.1.0+dfsg-2.2+b1 [12.2 kB]
Get:372 http://localhost:3142/debian unstable/main amd64 libflite1 amd64 2.2-1 [12.8 MB]
Get:373 http://localhost:3142/debian unstable/main amd64 libserd-0-0 amd64 0.30.6-1 [45.8 kB]
Get:374 http://localhost:3142/debian unstable/main amd64 libsord-0-0 amd64 0.16.6-1 [22.7 kB]
Get:375 http://localhost:3142/debian unstable/main amd64 libsratom-0-0 amd64 0.6.6-1 [17.7 kB]
Get:376 http://localhost:3142/debian unstable/main amd64 liblilv-0-0 amd64 0.24.10-1 [48.7 kB]
Get:377 http://localhost:3142/debian unstable/main amd64 libmysofa1 amd64 1.1~dfsg1-1 [1157 kB]
Get:378 http://localhost:3142/debian unstable/main amd64 libblas3 amd64 3.9.0-3 [153 kB]
Get:379 http://localhost:3142/debian unstable/main amd64 libgfortran5 amd64 10.2.0-15 [728 kB]
Get:380 http://localhost:3142/debian unstable/main amd64 liblapack3 amd64 3.9.0-3 [2166 kB]
Get:381 http://localhost:3142/debian unstable/main amd64 libasyncns0 amd64 0.8-6+b1 [13.0 kB]
Get:382 http://localhost:3142/debian unstable/main amd64 libflac8 amd64 1.3.3-1 [112 kB]
Get:383 http://localhost:3142/debian unstable/main amd64 libsndfile1 amd64 1.0.28-8 [253 kB]
Get:384 http://localhost:3142/debian unstable/main amd64 libpulse0 amd64 13.0-5 [283 kB]
Get:385 http://localhost:3142/debian unstable/main amd64 libsphinxbase3 amd64 0.8+5prealpha+1-11+b1 [120 kB]
Get:386 http://localhost:3142/debian unstable/main amd64 libpocketsphinx3 amd64 0.8+5prealpha+1-12 [124 kB]
Get:387 http://localhost:3142/debian unstable/main amd64 libpostproc55 amd64 7:4.3.1-4 [93.8 kB]
Get:388 http://localhost:3142/debian unstable/main amd64 libsamplerate0 amd64 0.1.9-2 [949 kB]
Get:389 http://localhost:3142/debian unstable/main amd64 librubberband2 amd64 1.9.0-1 [86.0 kB]
Get:390 http://localhost:3142/debian unstable/main amd64 libswscale5 amd64 7:4.3.1-4 [197 kB]
Get:391 http://localhost:3142/debian unstable/main amd64 libvidstab1.1 amd64 1.1.0-2+b1 [37.8 kB]
Get:392 http://localhost:3142/debian unstable/main amd64 libavfilter7 amd64 7:4.3.1-4 [1287 kB]
Get:393 http://localhost:3142/debian unstable/main amd64 libcdio19 amd64 2.1.0-2 [204 kB]
Get:394 http://localhost:3142/debian unstable/main amd64 libcdio-cdda2 amd64 10.2+2.0.0-1+b2 [20.7 kB]
Get:395 http://localhost:3142/debian unstable/main amd64 libcdio-paranoia2 amd64 10.2+2.0.0-1+b2 [20.5 kB]
Get:396 http://localhost:3142/debian unstable/main amd64 libdc1394-25 amd64 2.2.6-3 [108 kB]
Get:397 http://localhost:3142/debian unstable/main amd64 libglvnd0 amd64 1.3.2-1 [53.6 kB]
Get:398 http://localhost:3142/debian unstable/main amd64 libglapi-mesa amd64 20.2.1-1 [71.0 kB]
Get:399 http://localhost:3142/debian unstable/main amd64 libxcb-dri2-0 amd64 1.14-2 [103 kB]
Get:400 http://localhost:3142/debian unstable/main amd64 libxcb-dri3-0 amd64 1.14-2 [102 kB]
Get:401 http://localhost:3142/debian unstable/main amd64 libxcb-glx0 amd64 1.14-2 [118 kB]
Get:402 http://localhost:3142/debian unstable/main amd64 libxcb-present0 amd64 1.14-2 [101 kB]
Get:403 http://localhost:3142/debian unstable/main amd64 libxcb-sync1 amd64 1.14-2 [105 kB]
Get:404 http://localhost:3142/debian unstable/main amd64 libxcb-xfixes0 amd64 1.14-2 [105 kB]
Get:405 http://localhost:3142/debian unstable/main amd64 libxdamage1 amd64 1:1.1.5-2 [15.7 kB]
Get:406 http://localhost:3142/debian unstable/main amd64 libxshmfence1 amd64 1.3-1 [8820 B]
Get:407 http://localhost:3142/debian unstable/main amd64 libxxf86vm1 amd64 1:1.1.4-1+b2 [20.8 kB]
Get:408 http://localhost:3142/debian unstable/main amd64 libdrm-amdgpu1 amd64 2.4.102-1 [28.2 kB]
Get:409 http://localhost:3142/debian unstable/main amd64 libpciaccess0 amd64 0.16-1 [53.6 kB]
Get:410 http://localhost:3142/debian unstable/main amd64 libdrm-intel1 amd64 2.4.102-1 [70.4 kB]
Get:411 http://localhost:3142/debian unstable/main amd64 libdrm-nouveau2 amd64 2.4.102-1 [26.5 kB]
Get:412 http://localhost:3142/debian unstable/main amd64 libdrm-radeon1 amd64 2.4.102-1 [29.7 kB]
Get:413 http://localhost:3142/debian unstable/main amd64 libz3-4 amd64 4.8.9-1 [6783 kB]
Get:414 http://localhost:3142/debian unstable/main amd64 libllvm11 amd64 1:11.0.0-2 [17.9 MB]
Get:415 http://localhost:3142/debian unstable/main amd64 libvulkan1 amd64 1.2.154.1-1 [102 kB]
Get:416 http://localhost:3142/debian unstable/main amd64 libgl1-mesa-dri amd64 20.2.1-1 [9609 kB]
Get:417 http://localhost:3142/debian unstable/main amd64 libglx-mesa0 amd64 20.2.1-1 [186 kB]
Get:418 http://localhost:3142/debian unstable/main amd64 libglx0 amd64 1.3.2-1 [35.7 kB]
Get:419 http://localhost:3142/debian unstable/main amd64 libgl1 amd64 1.3.2-1 [89.5 kB]
Get:420 http://localhost:3142/debian unstable/main amd64 libiec61883-0 amd64 1.2.0-3 [31.2 kB]
Get:421 http://localhost:3142/debian unstable/main amd64 libjack-jackd2-0 amd64 1.9.16~dfsg-1 [289 kB]
Get:422 http://localhost:3142/debian unstable/main amd64 libopenal-data all 1:1.19.1-2 [170 kB]
Get:423 http://localhost:3142/debian unstable/main amd64 libsndio7.0 amd64 1.5.0-3 [24.7 kB]
Get:424 http://localhost:3142/debian unstable/main amd64 libopenal1 amd64 1:1.19.1-2 [501 kB]
Get:425 http://localhost:3142/debian unstable/main amd64 libwayland-server0 amd64 1.18.0-2~exp1.1 [34.4 kB]
Get:426 http://localhost:3142/debian unstable/main amd64 libgbm1 amd64 20.2.1-1 [74.7 kB]
Get:427 http://localhost:3142/debian unstable/main amd64 libwayland-client0 amd64 1.18.0-2~exp1.1 [26.9 kB]
Get:428 http://localhost:3142/debian unstable/main amd64 libwayland-cursor0 amd64 1.18.0-2~exp1.1 [14.6 kB]
Get:429 http://localhost:3142/debian unstable/main amd64 libwayland-egl1 amd64 1.18.0-2~exp1.1 [8448 B]
Get:430 http://localhost:3142/debian unstable/main amd64 libxcursor1 amd64 1:1.2.0-2 [37.3 kB]
Get:431 http://localhost:3142/debian unstable/main amd64 libxinerama1 amd64 2:1.1.4-2 [17.7 kB]
Get:432 http://localhost:3142/debian unstable/main amd64 xkb-data all 2.29-2 [655 kB]
Get:433 http://localhost:3142/debian unstable/main amd64 libxkbcommon0 amd64 1.0.1-1 [124 kB]
Get:434 http://localhost:3142/debian unstable/main amd64 libxrandr2 amd64 2:1.5.1-1 [37.5 kB]
Get:435 http://localhost:3142/debian unstable/main amd64 libxss1 amd64 1:1.2.3-1 [17.8 kB]
Get:436 http://localhost:3142/debian unstable/main amd64 libsdl2-2.0-0 amd64 2.0.12+dfsg1-4 [456 kB]
Get:437 http://localhost:3142/debian unstable/main amd64 libxcb-shape0 amd64 1.14-2 [102 kB]
Get:438 http://localhost:3142/debian unstable/main amd64 libxv1 amd64 2:1.0.11-1 [24.6 kB]
Get:439 http://localhost:3142/debian unstable/main amd64 libavdevice58 amd64 7:4.3.1-4 [114 kB]
Get:440 http://localhost:3142/debian unstable/main amd64 libavresample4 amd64 7:4.3.1-4 [92.6 kB]
Get:441 http://localhost:3142/debian unstable/main amd64 ffmpeg amd64 7:4.3.1-4 [1589 kB]
Get:442 http://localhost:3142/debian unstable/main amd64 python3-mccabe all 0.6.1-3 [9988 B]
Get:443 http://localhost:3142/debian unstable/main amd64 python3-pycodestyle all 2.6.0-1 [47.1 kB]
Get:444 http://localhost:3142/debian unstable/main amd64 python3-pyflakes all 2.2.0-1 [62.0 kB]
Get:445 http://localhost:3142/debian unstable/main amd64 python3-setuptools all 50.3.0-1 [511 kB]
Get:446 http://localhost:3142/debian unstable/main amd64 python3-flake8 all 3.8.3-1 [68.6 kB]
Get:447 http://localhost:3142/debian unstable/main amd64 flake8 all 3.8.3-1 [22.0 kB]
Get:448 http://localhost:3142/debian unstable/main amd64 fontforge-common all 1:20190801~dfsg-5 [1511 kB]
Get:449 http://localhost:3142/debian unstable/main amd64 libpython3.8 amd64 3.8.6-1 [1608 kB]
Get:450 http://localhost:3142/debian unstable/main amd64 libspiro1 amd64 1:20200505-2 [20.6 kB]
Get:451 http://localhost:3142/debian unstable/main amd64 libuninameslist1 amd64 20200413-1 [368 kB]
Get:452 http://localhost:3142/debian unstable/main amd64 libfontforge3 amd64 1:20190801~dfsg-5 [1933 kB]
Get:453 http://localhost:3142/debian unstable/main amd64 libatk1.0-data all 2.36.0-2 [149 kB]
Get:454 http://localhost:3142/debian unstable/main amd64 libatk1.0-0 amd64 2.36.0-2 [52.2 kB]
Get:455 http://localhost:3142/debian unstable/main amd64 libatspi2.0-0 amd64 2.38.0-2 [72.4 kB]
Get:456 http://localhost:3142/debian unstable/main amd64 libatk-bridge2.0-0 amd64 2.38.0-1 [64.6 kB]
Get:457 http://localhost:3142/debian unstable/main amd64 libepoxy0 amd64 1.5.4-1 [188 kB]
Get:458 http://localhost:3142/debian unstable/main amd64 libjson-glib-1.0-common all 1.6.0-1 [55.5 kB]
Get:459 http://localhost:3142/debian unstable/main amd64 libjson-glib-1.0-0 amd64 1.6.0-1 [65.0 kB]
Get:460 http://localhost:3142/debian unstable/main amd64 libproxy1v5 amd64 0.4.15-14 [58.4 kB]
Get:461 http://localhost:3142/debian unstable/main amd64 glib-networking-common all 2.66.0-2 [68.1 kB]
Get:462 http://localhost:3142/debian unstable/main amd64 glib-networking-services amd64 2.66.0-2 [17.5 kB]
Get:463 http://localhost:3142/debian unstable/main amd64 gsettings-desktop-schemas all 3.38.0-2 [588 kB]
Get:464 http://localhost:3142/debian unstable/main amd64 glib-networking amd64 2.66.0-2 [67.6 kB]
Get:465 http://localhost:3142/debian unstable/main amd64 libsoup2.4-1 amd64 2.72.0-2 [280 kB]
Get:466 http://localhost:3142/debian unstable/main amd64 libsoup-gnome2.4-1 amd64 2.72.0-2 [22.2 kB]
Get:467 http://localhost:3142/debian unstable/main amd64 librest-0.7-0 amd64 0.8.1-1+b1 [33.8 kB]
Get:468 http://localhost:3142/debian unstable/main amd64 libxcomposite1 amd64 1:0.4.5-1 [16.6 kB]
Get:469 http://localhost:3142/debian unstable/main amd64 libgtk-3-common all 3.24.23-2 [3728 kB]
Get:470 http://localhost:3142/debian unstable/main amd64 libgtk-3-0 amd64 3.24.23-2 [2710 kB]
Get:471 http://localhost:3142/debian unstable/main amd64 libgdraw6 amd64 1:20190801~dfsg-5 [1407 kB]
Get:472 http://localhost:3142/debian unstable/main amd64 fontforge-extras amd64 1:20190801~dfsg-5 [294 kB]
Get:473 http://localhost:3142/debian unstable/main amd64 fpc-source-3.2.0 all 3.2.0+dfsg-8 [19.7 MB]
Get:474 http://localhost:3142/debian unstable/main amd64 fp-utils-3.2.0 amd64 3.2.0+dfsg-8 [3415 kB]
Get:475 http://localhost:3142/debian unstable/main amd64 fp-utils all 3.2.0+dfsg-8 [49.0 kB]
Get:476 http://localhost:3142/debian unstable/main amd64 gdisk amd64 1.0.5-1 [215 kB]
Get:477 http://localhost:3142/debian unstable/main amd64 genisoimage amd64 9:1.1.11-3.1 [376 kB]
Get:478 http://localhost:3142/debian unstable/main amd64 libgs9-common all 9.53.3~dfsg-4 [733 kB]
Get:479 http://localhost:3142/debian unstable/main amd64 libidn11 amd64 1.33-2.4 [116 kB]
Get:480 http://localhost:3142/debian unstable/main amd64 libijs-0.35 amd64 0.35-15 [16.4 kB]
Get:481 http://localhost:3142/debian unstable/main amd64 libjbig2dec0 amd64 0.19-1 [66.9 kB]
Get:482 http://localhost:3142/debian unstable/main amd64 libpaper1 amd64 1.1.28+b1 [21.6 kB]
Get:483 http://localhost:3142/debian unstable/main amd64 libgs9 amd64 9.53.3~dfsg-4 [2225 kB]
Get:484 http://localhost:3142/debian unstable/main amd64 ghostscript amd64 9.53.3~dfsg-4 [97.2 kB]
Get:485 http://localhost:3142/debian unstable/main amd64 libperl4-corelibs-perl all 0.004-2 [38.4 kB]
Get:486 http://localhost:3142/debian unstable/main amd64 giflib-tools amd64 5.1.9-1 [118 kB]
Get:487 http://localhost:3142/debian unstable/main amd64 libefivar1 amd64 37-5 [50.0 kB]
Get:488 http://localhost:3142/debian unstable/main amd64 libefiboot1 amd64 37-5 [41.8 kB]
Get:489 http://localhost:3142/debian unstable/main amd64 grub-common amd64 2.04-9 [2604 kB]
Get:490 http://localhost:3142/debian unstable/main amd64 grub2-common amd64 2.04-9 [586 kB]
Get:491 http://localhost:3142/debian unstable/main amd64 libaec0 amd64 1.0.4-1 [20.3 kB]
Get:492 http://localhost:3142/debian unstable/main amd64 libsz2 amd64 1.0.4-1 [6760 B]
Get:493 http://localhost:3142/debian unstable/main amd64 libhdf5-103-1 amd64 1.10.6+repack-2 [1185 kB]
Get:494 http://localhost:3142/debian unstable/main amd64 libhdf5-hl-100 amd64 1.10.6+repack-2 [81.6 kB]
Get:495 http://localhost:3142/debian unstable/main amd64 hdf5-tools amd64 1.10.6+repack-2 [438 kB]
Get:496 http://localhost:3142/debian unstable/main amd64 help2man amd64 1.47.16 [181 kB]
Get:497 http://localhost:3142/debian unstable/main amd64 libencode-locale-perl all 1.05-1 [13.7 kB]
Get:498 http://localhost:3142/debian unstable/main amd64 libtimedate-perl all 2.3300-1 [39.2 kB]
Get:499 http://localhost:3142/debian unstable/main amd64 libhttp-date-perl all 6.05-1 [10.4 kB]
Get:500 http://localhost:3142/debian unstable/main amd64 libfile-listing-perl all 6.11-1 [11.2 kB]
Get:501 http://localhost:3142/debian unstable/main amd64 libhtml-tagset-perl all 3.20-4 [13.0 kB]
Get:502 http://localhost:3142/debian unstable/main amd64 liburi-perl all 1.76-2 [90.2 kB]
Get:503 http://localhost:3142/debian unstable/main amd64 libhtml-parser-perl amd64 3.75-1 [105 kB]
Get:504 http://localhost:3142/debian unstable/main amd64 libhtml-tree-perl all 5.07-2 [213 kB]
Get:505 http://localhost:3142/debian unstable/main amd64 libio-html-perl all 1.001-1 [17.6 kB]
Get:506 http://localhost:3142/debian unstable/main amd64 liblwp-mediatypes-perl all 6.04-1 [19.9 kB]
Get:507 http://localhost:3142/debian unstable/main amd64 libhttp-message-perl all 6.26-1 [79.4 kB]
Get:508 http://localhost:3142/debian unstable/main amd64 libhttp-cookies-perl all 6.08-1 [19.3 kB]
Get:509 http://localhost:3142/debian unstable/main amd64 libhttp-negotiate-perl all 6.01-1 [12.8 kB]
Get:510 http://localhost:3142/debian unstable/main amd64 perl-openssl-defaults amd64 5 [7360 B]
Get:511 http://localhost:3142/debian unstable/main amd64 libnet-ssleay-perl amd64 1.88-3 [320 kB]
Get:512 http://localhost:3142/debian unstable/main amd64 libio-socket-ssl-perl all 2.068-1 [215 kB]
Get:513 http://localhost:3142/debian unstable/main amd64 libnet-http-perl all 6.19-1 [24.8 kB]
Get:514 http://localhost:3142/debian unstable/main amd64 liblwp-protocol-https-perl all 6.09-1 [12.0 kB]
Get:515 http://localhost:3142/debian unstable/main amd64 libtry-tiny-perl all 0.30-1 [23.3 kB]
Get:516 http://localhost:3142/debian unstable/main amd64 libwww-robotrules-perl all 6.02-1 [12.9 kB]
Get:517 http://localhost:3142/debian unstable/main amd64 libwww-perl all 6.49-1 [192 kB]
Get:518 http://localhost:3142/debian unstable/main amd64 icoutils amd64 0.32.3-3 [67.5 kB]
Get:519 http://localhost:3142/debian unstable/main amd64 imagemagick-6.q16 amd64 8:6.9.11.24+dfsg-1+b1 [380 kB]
Get:520 http://localhost:3142/debian unstable/main amd64 imagemagick amd64 8:6.9.11.24+dfsg-1+b1 [163 kB]
Get:521 http://localhost:3142/debian unstable/main amd64 libklibc amd64 2.0.8-1 [56.1 kB]
Get:522 http://localhost:3142/debian unstable/main amd64 klibc-utils amd64 2.0.8-1 [94.4 kB]
Get:523 http://localhost:3142/debian unstable/main amd64 initramfs-tools-core all 0.139 [102 kB]
Get:524 http://localhost:3142/debian unstable/main amd64 linux-base all 4.6 [32.4 kB]
Get:525 http://localhost:3142/debian unstable/main amd64 initramfs-tools all 0.139 [71.6 kB]
Get:526 http://localhost:3142/debian unstable/main amd64 ipxe-qemu all 1.0.0+git-20190125.36a4c85-5 [696 kB]
Get:527 http://localhost:3142/debian unstable/main amd64 iso-codes all 4.5.0-1 [2793 kB]
Get:528 http://localhost:3142/debian unstable/main amd64 python3-editorconfig all 0.12.2-2.1 [14.1 kB]
Get:529 http://localhost:3142/debian unstable/main amd64 python3-six all 1.15.0-1 [16.8 kB]
Get:530 http://localhost:3142/debian unstable/main amd64 python3-jsbeautifier all 1.13.0-1 [61.6 kB]
Get:531 http://localhost:3142/debian unstable/main amd64 jsbeautifier all 1.13.0-1 [3772 B]
Get:532 http://localhost:3142/debian unstable/main amd64 kpartx amd64 0.8.4-4 [38.2 kB]
Get:533 http://localhost:3142/debian unstable/main amd64 libldm-1.0-0 amd64 0.2.4-3 [21.8 kB]
Get:534 http://localhost:3142/debian unstable/main amd64 ldmtool amd64 0.2.4-3 [14.0 kB]
Get:535 http://localhost:3142/debian unstable/main amd64 liba52-0.7.4 amd64 0.7.4-20 [31.4 kB]
Get:536 http://localhost:3142/debian unstable/main amd64 libgpm2 amd64 1.20.7-6 [35.3 kB]
Get:537 http://localhost:3142/debian unstable/main amd64 libaa1 amd64 1.4p5-46+b1 [55.7 kB]
Get:538 http://localhost:3142/debian unstable/main amd64 libafflib0v5 amd64 3.7.19-1 [237 kB]
Get:539 http://localhost:3142/debian unstable/main amd64 libarchive13 amd64 3.4.3-2 [342 kB]
Get:540 http://localhost:3142/debian unstable/main amd64 libarchive-tools amd64 3.4.3-2 [79.3 kB]
Get:541 http://localhost:3142/debian unstable/main amd64 libassuan0 amd64 2.5.3-7.1 [50.5 kB]
Get:542 http://localhost:3142/debian unstable/main amd64 libice6 amd64 2:1.0.10-1 [58.5 kB]
Get:543 http://localhost:3142/debian unstable/main amd64 libsm6 amd64 2:1.2.3-1 [35.1 kB]
Get:544 http://localhost:3142/debian unstable/main amd64 libxt6 amd64 1:1.2.0-1 [189 kB]
Get:545 http://localhost:3142/debian unstable/main amd64 libaudio2 amd64 1.9.4-6+b1 [80.3 kB]
Get:546 http://localhost:3142/debian unstable/main amd64 libaugeas0 amd64 1.12.0-2 [338 kB]
Get:547 http://localhost:3142/debian unstable/main amd64 libbfio1 amd64 20170123-5 [309 kB]
Get:548 http://localhost:3142/debian unstable/main amd64 libbrlapi0.7 amd64 6.0+dfsg-6+b1 [95.8 kB]
Get:549 http://localhost:3142/debian unstable/main amd64 libcacard0 amd64 1:2.7.0-1 [84.5 kB]
Get:550 http://localhost:3142/debian unstable/main amd64 libcapstone3 amd64 4.0.1+really+3.0.5-2+b1 [451 kB]
Get:551 http://localhost:3142/debian unstable/main amd64 libdate-manip-perl all 6.82-1 [929 kB]
Get:552 http://localhost:3142/debian unstable/main amd64 libdaxctl1 amd64 70.1-1 [17.0 kB]
Get:553 http://localhost:3142/debian unstable/main amd64 libdca0 amd64 0.0.7-2 [89.8 kB]
Get:554 http://localhost:3142/debian unstable/main amd64 libjaxen-java all 1.1.6-4 [214 kB]
Get:555 http://localhost:3142/debian unstable/main amd64 libdom4j-java all 2.1.3-1 [310 kB]
Get:556 http://localhost:3142/debian unstable/main amd64 libdv4 amd64 1.0.0-12 [74.2 kB]
Get:557 http://localhost:3142/debian unstable/main amd64 libdvdread8 amd64 6.1.1-2 [89.3 kB]
Get:558 http://localhost:3142/debian unstable/main amd64 libdvdnav4 amd64 6.1.0-1+b1 [46.9 kB]
Get:559 http://localhost:3142/debian unstable/main amd64 libdw1 amd64 0.181-1 [234 kB]
Get:560 http://localhost:3142/debian unstable/main amd64 libegl-mesa0 amd64 20.2.1-1 [142 kB]
Get:561 http://localhost:3142/debian unstable/main amd64 libenca0 amd64 1.19-1+b1 [62.5 kB]
Get:562 http://localhost:3142/debian unstable/main amd64 libewf2 amd64 20140807-2+b1 [550 kB]
Get:563 http://localhost:3142/debian unstable/main amd64 libfaad2 amd64 2.9.2-1 [160 kB]
Get:564 http://localhost:3142/debian unstable/main amd64 libunwind8 amd64 1.3.2-2 [54.5 kB]
Get:565 http://localhost:3142/debian unstable/main amd64 libgstreamer1.0-0 amd64 1.18.0-3 [2221 kB]
Get:566 http://localhost:3142/debian unstable/main amd64 liborc-0.4-0 amd64 1:0.4.32-1 [192 kB]
Get:567 http://localhost:3142/debian unstable/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.18.0-2 [2141 kB]
Get:568 http://localhost:3142/debian unstable/main amd64 libhivex0 amd64 1.3.19-1+b2 [65.4 kB]
Get:569 http://localhost:3142/debian unstable/main amd64 libjansson4 amd64 2.13.1-1 [39.0 kB]
Get:570 http://localhost:3142/debian unstable/main amd64 libvhdi1 amd64 20181227-1.1+b1 [357 kB]
Get:571 http://localhost:3142/debian unstable/main amd64 libvmdk1 amd64 20200926-1 [407 kB]
Get:572 http://localhost:3142/debian unstable/main amd64 libtsk19 amd64 4.10.0+dfsg-1 [410 kB]
Get:573 http://localhost:3142/debian unstable/main amd64 libnl-3-200 amd64 3.4.0-1+b1 [63.6 kB]
Get:574 http://localhost:3142/debian unstable/main amd64 libyajl2 amd64 2.1.0-3 [23.8 kB]
Get:575 http://localhost:3142/debian unstable/main amd64 libvirt0 amd64 6.6.0-2 [3858 kB]
Get:576 http://localhost:3142/debian unstable/main amd64 libyara4 amd64 4.0.2-1 [144 kB]
Get:577 http://localhost:3142/debian unstable/main amd64 supermin amd64 5.2.0-2 [426 kB]
Get:578 http://localhost:3142/debian unstable/main amd64 libnl-route-3-200 amd64 3.4.0-1+b1 [161 kB]
Get:579 http://localhost:3142/debian unstable/main amd64 libibverbs1 amd64 31.0-1 [57.2 kB]
Get:580 http://localhost:3142/debian unstable/main amd64 libndctl6 amd64 70.1-1 [53.9 kB]
Get:581 http://localhost:3142/debian unstable/main amd64 libpmem1 amd64 1.9.1-3 [84.2 kB]
Get:582 http://localhost:3142/debian unstable/main amd64 librdmacm1 amd64 31.0-1 [68.1 kB]
Get:583 http://localhost:3142/debian unstable/main amd64 libslirp0 amd64 4.3.1-1 [55.7 kB]
Get:584 http://localhost:3142/debian unstable/main amd64 libspice-server1 amd64 0.14.3-1 [351 kB]
Get:585 http://localhost:3142/debian unstable/main amd64 liburing1 amd64 0.7-1 [8372 B]
Get:586 http://localhost:3142/debian unstable/main amd64 libvdeplug2 amd64 2.3.2+r586-7 [24.7 kB]
Get:587 http://localhost:3142/debian unstable/main amd64 libvirglrenderer1 amd64 0.8.2-4 [168 kB]
Get:588 http://localhost:3142/debian unstable/main amd64 libxentoolcore1 amd64 4.11.4+24-gddaaccbbab-1 [31.9 kB]
Get:589 http://localhost:3142/debian unstable/main amd64 libxentoollog1 amd64 4.11.4+24-gddaaccbbab-1 [33.8 kB]
Get:590 http://localhost:3142/debian unstable/main amd64 libxencall1 amd64 4.11.4+24-gddaaccbbab-1 [33.9 kB]
Get:591 http://localhost:3142/debian unstable/main amd64 libxendevicemodel1 amd64 4.11.4+24-gddaaccbbab-1 [34.9 kB]
Get:592 http://localhost:3142/debian unstable/main amd64 libxenevtchn1 amd64 4.11.4+24-gddaaccbbab-1 [32.5 kB]
Get:593 http://localhost:3142/debian unstable/main amd64 libxenforeignmemory1 amd64 4.11.4+24-gddaaccbbab-1 [34.3 kB]
Get:594 http://localhost:3142/debian unstable/main amd64 libxengnttab1 amd64 4.11.4+24-gddaaccbbab-1 [34.2 kB]
Get:595 http://localhost:3142/debian unstable/main amd64 libxenstore3.0 amd64 4.11.4+24-gddaaccbbab-1 [41.4 kB]
Get:596 http://localhost:3142/debian unstable/main amd64 libxenmisc4.11 amd64 4.11.4+24-gddaaccbbab-1 [468 kB]
Get:597 http://localhost:3142/debian unstable/main amd64 libusbredirparser1 amd64 0.8.0-1+b1 [17.4 kB]
Get:598 http://localhost:3142/debian unstable/main amd64 qemu-system-common amd64 1:5.1+dfsg-4 [1739 kB]
Get:599 http://localhost:3142/debian unstable/main amd64 qemu-system-data all 1:5.1+dfsg-4 [1148 kB]
Get:600 http://localhost:3142/debian unstable/main amd64 seabios all 1.14.0-1 [147 kB]
Get:601 http://localhost:3142/debian unstable/main amd64 qemu-system-x86 amd64 1:5.1+dfsg-4 [7963 kB]
Get:602 http://localhost:3142/debian unstable/main amd64 libnetpbm10 amd64 2:10.0-15.3+b2 [86.7 kB]
Get:603 http://localhost:3142/debian unstable/main amd64 netpbm amd64 2:10.0-15.3+b2 [1029 kB]
Get:604 http://localhost:3142/debian unstable/main amd64 osinfo-db all 0.20200325-1 [101 kB]
Get:605 http://localhost:3142/debian unstable/main amd64 lsscsi amd64 0.31-1+b1 [50.4 kB]
Get:606 http://localhost:3142/debian unstable/main amd64 lzop amd64 1.04-1 [83.4 kB]
Get:607 http://localhost:3142/debian unstable/main amd64 mtools amd64 4.0.24-1 [196 kB]
Get:608 http://localhost:3142/debian unstable/main amd64 libparted2 amd64 3.3-4 [331 kB]
Get:609 http://localhost:3142/debian unstable/main amd64 parted amd64 3.3-4 [215 kB]
Get:610 http://localhost:3142/debian unstable/main amd64 psmisc amd64 23.3-1 [131 kB]
Get:611 http://localhost:3142/debian unstable/main amd64 qemu-utils amd64 1:5.1+dfsg-4 [1070 kB]
Get:612 http://localhost:3142/debian unstable/main amd64 scrub amd64 2.6.1-1+b1 [34.5 kB]
Get:613 http://localhost:3142/debian unstable/main amd64 sleuthkit amd64 4.10.0+dfsg-1 [337 kB]
Get:614 http://localhost:3142/debian unstable/main amd64 squashfs-tools amd64 1:4.4-2 [134 kB]
Get:615 http://localhost:3142/debian unstable/main amd64 syslinux amd64 3:6.04~git20190206.bf6db5b4+dfsg1-3 [203 kB]
Get:616 http://localhost:3142/debian unstable/main amd64 zerofree amd64 1.1.1-1 [8432 B]
Get:617 http://localhost:3142/debian unstable/main amd64 libguestfs0 amd64 1:1.42.0-11 [4370 kB]
Get:618 http://localhost:3142/debian unstable/main amd64 libicu4j-java all 62.1-2 [14.3 MB]
Get:619 http://localhost:3142/debian unstable/main amd64 libjetbrains-annotations-java all 20.1.0-1 [22.2 kB]
Get:620 http://localhost:3142/debian unstable/main amd64 libintellij-annotations-java all 20.1.0-1 [4088 B]
Get:621 http://localhost:3142/debian unstable/main amd64 libjcommander-java all 1.71-3 [72.7 kB]
Get:622 http://localhost:3142/debian unstable/main amd64 libjdom1-java all 1.1.3-2 [156 kB]
Get:623 http://localhost:3142/debian unstable/main amd64 libjs-jquery-isonscreen all 1.2.0-1 [3046 B]
Get:624 http://localhost:3142/debian unstable/main amd64 libjs-jquery-metadata all 12-1.1 [7420 B]
Get:625 http://localhost:3142/debian unstable/main amd64 libjs-jquery-tablesorter all 1:2.31.3+dfsg1-1 [185 kB]
Get:626 http://localhost:3142/debian unstable/main amd64 libjs-jquery-throttle-debounce all 1.1+dfsg.1-1 [6178 B]
Get:627 http://localhost:3142/debian unstable/main amd64 libksba8 amd64 1.4.0-2 [123 kB]
Get:628 http://localhost:3142/debian unstable/main amd64 liblirc-client0 amd64 0.10.1-6.2 [70.9 kB]
Get:629 http://localhost:3142/debian unstable/main amd64 libllvm9 amd64 1:9.0.1-14+b1 [15.0 MB]
Get:630 http://localhost:3142/debian unstable/main amd64 liblua5.2-0 amd64 5.2.4-1.1+b3 [108 kB]
Get:631 http://localhost:3142/debian unstable/main amd64 liblzf1 amd64 3.6-2 [9896 B]
Get:632 http://localhost:3142/debian unstable/main amd64 libmad0 amd64 0.15.1b-10 [69.9 kB]
Get:633 http://localhost:3142/debian unstable/main amd64 libmng1 amd64 1.0.10+dfsg-3.1+b5 [211 kB]
Get:634 http://localhost:3142/debian unstable/main amd64 libmono-system-core4.0-cil all 6.8.0.105+dfsg-3 [326 kB]
Get:635 http://localhost:3142/debian unstable/main amd64 libmono-system-numerics4.0-cil all 6.8.0.105+dfsg-3 [72.5 kB]
Get:636 http://localhost:3142/debian unstable/main amd64 libmono-system-xml4.0-cil all 6.8.0.105+dfsg-3 [839 kB]
Get:637 http://localhost:3142/debian unstable/main amd64 libmono-system-security4.0-cil all 6.8.0.105+dfsg-3 [138 kB]
Get:638 http://localhost:3142/debian unstable/main amd64 libmono-system-configuration4.0-cil all 6.8.0.105+dfsg-3 [78.7 kB]
Get:639 http://localhost:3142/debian unstable/main amd64 libmono-system4.0-cil all 6.8.0.105+dfsg-3 [826 kB]
Get:640 http://localhost:3142/debian unstable/main amd64 libmono-security4.0-cil all 6.8.0.105+dfsg-3 [119 kB]
Get:641 http://localhost:3142/debian unstable/main amd64 mono-4.0-gac all 6.8.0.105+dfsg-3 [178 kB]
Get:642 http://localhost:3142/debian unstable/main amd64 mono-gac all 6.8.0.105+dfsg-3 [42.7 kB]
Get:643 http://localhost:3142/debian unstable/main amd64 mono-runtime-common amd64 6.8.0.105+dfsg-3 [1204 kB]
Get:644 http://localhost:3142/debian unstable/main amd64 mono-runtime-sgen amd64 6.8.0.105+dfsg-3 [1681 kB]
Get:645 http://localhost:3142/debian unstable/main amd64 mono-runtime amd64 6.8.0.105+dfsg-3 [38.5 kB]
Get:646 http://localhost:3142/debian unstable/main amd64 libmono-corlib4.5-cil all 6.8.0.105+dfsg-3 [1276 kB]
Get:647 http://localhost:3142/debian unstable/main amd64 libmonoboehm-2.0-1 amd64 6.8.0.105+dfsg-3 [1608 kB]
Get:648 http://localhost:3142/debian unstable/main amd64 libmpeg2-4 amd64 0.5.1-9 [55.7 kB]
Get:649 http://localhost:3142/debian unstable/main amd64 libpaper-utils amd64 1.1.28+b1 [18.3 kB]
Get:650 http://localhost:3142/debian unstable/main amd64 libpcap0.8 amd64 1.9.1-4 [153 kB]
Get:651 http://localhost:3142/debian unstable/main amd64 libpfm4 amd64 4.10.1+git44-ga2909cd-1 [272 kB]
Get:652 http://localhost:3142/debian unstable/main amd64 libprocyon-java all 0.5.36-1 [2209 kB]
Get:653 http://localhost:3142/debian unstable/main amd64 libpython3.9-stdlib amd64 3.9.0-5 [1750 kB]
Get:654 http://localhost:3142/debian unstable/main amd64 librpmio8 amd64 4.14.2.1+dfsg1-1.1+b2 [1383 kB]
Get:655 http://localhost:3142/debian unstable/main amd64 librpm8 amd64 4.14.2.1+dfsg1-1.1+b2 [1486 kB]
Get:656 http://localhost:3142/debian unstable/main amd64 librpmbuild8 amd64 4.14.2.1+dfsg1-1.1+b2 [1380 kB]
Get:657 http://localhost:3142/debian unstable/main amd64 librpmsign8 amd64 4.14.2.1+dfsg1-1.1+b2 [1317 kB]
Get:658 http://localhost:3142/debian unstable/main amd64 libxml-commons-resolver1.1-java all 1.2-11 [98.3 kB]
Get:659 http://localhost:3142/debian unstable/main amd64 libxml-commons-external-java all 1.4.01-5 [240 kB]
Get:660 http://localhost:3142/debian unstable/main amd64 libxerces2-java all 2.12.1-1 [1440 kB]
Get:661 http://localhost:3142/debian unstable/main amd64 libxom-java all 1.2.10-1 [170 kB]
Get:662 http://localhost:3142/debian unstable/main amd64 libsaxonhe-java all 9.9.1.5+dfsg-1 [4321 kB]
Get:663 http://localhost:3142/debian unstable/main amd64 libsdl1.2debian amd64 1.2.15+dfsg2-5 [193 kB]
Get:664 http://localhost:3142/debian unstable/main amd64 libtcl8.6 amd64 8.6.10+dfsg-1 [1007 kB]
Get:665 http://localhost:3142/debian unstable/main amd64 libxft2 amd64 2.3.2-2 [57.2 kB]
Get:666 http://localhost:3142/debian unstable/main amd64 libtk8.6 amd64 8.6.10-1 [773 kB]
Get:667 http://localhost:3142/debian unstable/main amd64 libvorbisidec1 amd64 1.2.1+git20180316-7 [72.3 kB]
Get:668 http://localhost:3142/debian unstable/main amd64 libxmlbeans-java all 3.0.2-1 [2159 kB]
Get:669 http://localhost:3142/debian unstable/main amd64 libxvmc1 amd64 2:1.0.12-2 [25.6 kB]
Get:670 http://localhost:3142/debian unstable/main amd64 libxxf86dga1 amd64 2:1.1.4-1+b3 [22.1 kB]
Get:671 http://localhost:3142/debian unstable/main amd64 linux-image-5.9.0-1-amd64 amd64 5.9.1-1 [50.8 MB]
Get:672 http://localhost:3142/debian unstable/main amd64 linux-image-amd64 amd64 5.9.1-1 [1472 B]
Get:673 http://localhost:3142/debian unstable/main amd64 llvm-9-runtime amd64 1:9.0.1-14+b1 [213 kB]
Get:674 http://localhost:3142/debian unstable/main amd64 llvm-runtime amd64 1:9.0-49.1 [7788 B]
Get:675 http://localhost:3142/debian unstable/main amd64 llvm-9 amd64 1:9.0.1-14+b1 [4850 kB]
Get:676 http://localhost:3142/debian unstable/main amd64 llvm amd64 1:9.0-49.1 [10.1 kB]
Get:677 http://localhost:3142/debian unstable/main amd64 lsb-release all 11.1.0 [27.9 kB]
Get:678 http://localhost:3142/debian unstable/main amd64 lz4 amd64 1.9.2-2 [84.1 kB]
Get:679 http://localhost:3142/debian unstable/main amd64 mono-utils amd64 6.8.0.105+dfsg-3 [5231 kB]
Get:680 http://localhost:3142/debian unstable/main amd64 libegl1 amd64 1.3.2-1 [34.8 kB]
Get:681 http://localhost:3142/debian unstable/main amd64 mplayer amd64 2:1.4+ds1-1 [2297 kB]
Get:682 http://localhost:3142/debian unstable/main amd64 ocaml-base-nox amd64 4.11.1-3 [707 kB]
Get:683 http://localhost:3142/debian unstable/main amd64 ocaml-interp amd64 4.11.1-3 [5859 kB]
Get:684 http://localhost:3142/debian unstable/main amd64 ocaml-nox amd64 4.11.1-3 [68.2 MB]
Get:685 http://localhost:3142/debian unstable/main amd64 ocaml-compiler-libs amd64 4.11.1-3 [29.9 MB]
Get:686 http://localhost:3142/debian unstable/main amd64 odt2txt amd64 0.5-7 [15.5 kB]
Get:687 http://localhost:3142/debian unstable/main amd64 oggvideotools amd64 0.9.1-5.1 [719 kB]
Get:688 http://localhost:3142/debian unstable/main amd64 pgpdump amd64 0.33-2 [21.9 kB]
Get:689 http://localhost:3142/debian unstable/main amd64 poppler-utils amd64 20.09.0-2 [188 kB]
Get:690 http://localhost:3142/debian unstable/main amd64 procyon-decompiler all 0.5.36-1 [26.6 kB]
Get:691 http://localhost:3142/debian unstable/main amd64 python3.9 amd64 3.9.0-5 [455 kB]
Get:692 http://localhost:3142/debian unstable/main amd64 python3-all amd64 3.8.6-1 [1060 B]
Get:693 http://localhost:3142/debian unstable/main amd64 python3-argcomplete all 1.8.1-1.3 [29.6 kB]
Get:694 http://localhost:3142/debian unstable/main amd64 python3-atomicwrites all 1.4.0-1 [10.2 kB]
Get:695 http://localhost:3142/debian unstable/main amd64 python3-attr all 19.3.0-5 [43.4 kB]
Get:696 http://localhost:3142/debian unstable/main amd64 python3-binwalk all 2.2.0+dfsg1-1 [97.8 kB]
Get:697 http://localhost:3142/debian unstable/main amd64 python3-cffi-backend amd64 1.14.3-2 [104 kB]
Get:698 http://localhost:3142/debian unstable/main amd64 python3-chardet all 3.0.4-7 [81.1 kB]
Get:699 http://localhost:3142/debian unstable/main amd64 python3-coverage amd64 5.1+dfsg.1-2+b1 [170 kB]
Get:700 http://localhost:3142/debian unstable/main amd64 python3-nose2 all 0.9.2-1 [94.1 kB]
Get:701 http://localhost:3142/debian unstable/main amd64 python3-cov-core all 1.15.0-3 [7528 B]
Get:702 http://localhost:3142/debian unstable/main amd64 python3-cryptography amd64 3.1-1+b1 [218 kB]
Get:703 http://localhost:3142/debian unstable/main amd64 python3-debian all 0.1.38 [77.6 kB]
Get:704 http://localhost:3142/debian unstable/main amd64 python3-distro all 1.5.0-1 [17.1 kB]
Get:705 http://localhost:3142/debian unstable/main amd64 python3-roman all 2.0.0-5 [9064 B]
Get:706 http://localhost:3142/debian unstable/main amd64 python3-docutils all 0.16+dfsg-3 [384 kB]
Get:707 http://localhost:3142/debian unstable/main amd64 python3-guestfs amd64 1:1.42.0-11 [1389 kB]
Get:708 http://localhost:3142/debian unstable/main amd64 python3-numpy amd64 1:1.19.2-2+b1 [3350 kB]
Get:709 http://localhost:3142/debian unstable/main amd64 python3-h5py-serial amd64 2.10.0-9+b1 [1057 kB]
Get:710 http://localhost:3142/debian unstable/main amd64 python3-h5py all 2.10.0-9 [11.4 kB]
Get:711 http://localhost:3142/debian unstable/main amd64 python3-more-itertools all 4.2.0-3 [42.7 kB]
Get:712 http://localhost:3142/debian unstable/main amd64 python3-zipp all 1.0.0-3 [6060 B]
Get:713 http://localhost:3142/debian unstable/main amd64 python3-importlib-metadata all 1.6.0-2 [10.3 kB]
Get:714 http://localhost:3142/debian unstable/main amd64 python3-jsondiff all 1.1.1-4 [7376 B]
Get:715 http://localhost:3142/debian unstable/main amd64 python3-libarchive-c all 2.9-0.1 [14.5 kB]
Get:716 http://localhost:3142/debian unstable/main amd64 python3-magic all 2:0.4.15-4 [9376 B]
Get:717 http://localhost:3142/debian unstable/main amd64 python3-pyparsing all 2.4.7-1 [109 kB]
Get:718 http://localhost:3142/debian unstable/main amd64 python3-packaging all 20.4-1 [30.4 kB]
Get:719 http://localhost:3142/debian unstable/main amd64 python3-sortedcontainers all 2.1.0-2 [31.4 kB]
Get:720 http://localhost:3142/debian unstable/main amd64 python3-pdfminer all 20200726-1 [105 kB]
Get:721 http://localhost:3142/debian unstable/main amd64 python3-pluggy all 0.13.0-5 [22.1 kB]
Get:722 http://localhost:3142/debian unstable/main amd64 python3-progressbar all 2.5-2 [11.5 kB]
Get:723 http://localhost:3142/debian unstable/main amd64 python3-py all 1.9.0-1 [94.0 kB]
Get:724 http://localhost:3142/debian unstable/main amd64 python3-pypdf2 all 1.26.0-4 [57.2 kB]
Get:725 http://localhost:3142/debian unstable/main amd64 python3-wcwidth all 0.1.9+dfsg1-2 [18.2 kB]
Get:726 http://localhost:3142/debian unstable/main amd64 python3-pytest all 4.6.11-1 [268 kB]
Get:727 http://localhost:3142/debian unstable/main amd64 python3-pytest-cov all 2.8.1-1 [22.1 kB]
Get:728 http://localhost:3142/debian unstable/main amd64 python3-pyxattr amd64 0.6.1-2+b2 [18.1 kB]
Get:729 http://localhost:3142/debian unstable/main amd64 rpm-common amd64 4.14.2.1+dfsg1-1.1+b2 [1337 kB]
Get:730 http://localhost:3142/debian unstable/main amd64 python3-rpm amd64 4.14.2.1+dfsg1-1.1+b2 [1368 kB]
Get:731 http://localhost:3142/debian unstable/main amd64 python3-tlsh amd64 3.4.4+20151206-1.3+b3 [15.5 kB]
Get:732 http://localhost:3142/debian unstable/main amd64 zip amd64 3.0-11+b1 [234 kB]
Get:733 http://localhost:3142/debian unstable/main amd64 xdg-utils all 1.1.3-2 [74.6 kB]
Get:734 http://localhost:3142/debian unstable/main amd64 r-base-core amd64 4.0.3-1 [25.1 MB]
Get:735 http://localhost:3142/debian unstable/main amd64 rpm2cpio amd64 4.14.2.1+dfsg1-1.1+b2 [1316 kB]
Get:736 http://localhost:3142/debian unstable/main amd64 sng amd64 1.1.0-4 [35.8 kB]
Get:737 http://localhost:3142/debian unstable/main amd64 sqlite3 amd64 3.33.0-1 [1190 kB]
Get:738 http://localhost:3142/debian unstable/main amd64 tcpdump amd64 4.9.3-6 [400 kB]
Get:739 http://localhost:3142/debian unstable/main amd64 wabt amd64 1.0.19-1 [1093 kB]
Get:740 http://localhost:3142/debian unstable/main amd64 xmlbeans all 3.0.2-1 [10.5 kB]
Get:741 http://localhost:3142/debian unstable/main amd64 xxd amd64 2:8.2.0716-3 [157 kB]
Get:742 http://localhost:3142/debian unstable/main amd64 zstd amd64 1.4.5+dfsg-4 [549 kB]
Get:743 http://localhost:3142/debian unstable/main amd64 gnupg-utils amd64 2.2.20-1 [889 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 911 MB in 1min 19s (11.5 MB/s)
Selecting previously unselected package libapparmor1:amd64.
(Reading database ... 15168 files and directories currently installed.)
Preparing to unpack .../00-libapparmor1_2.13.4-3+b1_amd64.deb ...
Unpacking libapparmor1:amd64 (2.13.4-3+b1) ...
Selecting previously unselected package libcap2:amd64.
Preparing to unpack .../01-libcap2_1%3a2.44-1_amd64.deb ...
Unpacking libcap2:amd64 (1:2.44-1) ...
Selecting previously unselected package libargon2-1:amd64.
Preparing to unpack .../02-libargon2-1_0~20171227-0.2_amd64.deb ...
Unpacking libargon2-1:amd64 (0~20171227-0.2) ...
Selecting previously unselected package dmsetup.
Preparing to unpack .../03-dmsetup_2%3a1.02.171-3_amd64.deb ...
Unpacking dmsetup (2:1.02.171-3) ...
Selecting previously unselected package libdevmapper1.02.1:amd64.
Preparing to unpack .../04-libdevmapper1.02.1_2%3a1.02.171-3_amd64.deb ...
Unpacking libdevmapper1.02.1:amd64 (2:1.02.171-3) ...
Selecting previously unselected package libjson-c5:amd64.
Preparing to unpack .../05-libjson-c5_0.15-1_amd64.deb ...
Unpacking libjson-c5:amd64 (0.15-1) ...
Selecting previously unselected package libcryptsetup12:amd64.
Preparing to unpack .../06-libcryptsetup12_2%3a2.3.4-1_amd64.deb ...
Unpacking libcryptsetup12:amd64 (2:2.3.4-1) ...
Selecting previously unselected package libip4tc2:amd64.
Preparing to unpack .../07-libip4tc2_1.8.5-3_amd64.deb ...
Unpacking libip4tc2:amd64 (1.8.5-3) ...
Selecting previously unselected package libkmod2:amd64.
Preparing to unpack .../08-libkmod2_27+20200310-2_amd64.deb ...
Unpacking libkmod2:amd64 (27+20200310-2) ...
Selecting previously unselected package systemd-timesyncd.
Preparing to unpack .../09-systemd-timesyncd_246.6-2_amd64.deb ...
Unpacking systemd-timesyncd (246.6-2) ...
Selecting previously unselected package systemd.
Preparing to unpack .../10-systemd_246.6-2_amd64.deb ...
Unpacking systemd (246.6-2) ...
Setting up libapparmor1:amd64 (2.13.4-3+b1) ...
Setting up libcap2:amd64 (1:2.44-1) ...
Setting up libargon2-1:amd64 (0~20171227-0.2) ...
Setting up libjson-c5:amd64 (0.15-1) ...
Setting up libip4tc2:amd64 (1.8.5-3) ...
Setting up libkmod2:amd64 (27+20200310-2) ...
Setting up libdevmapper1.02.1:amd64 (2:1.02.171-3) ...
Setting up libcryptsetup12:amd64 (2:2.3.4-1) ...
Setting up systemd-timesyncd (246.6-2) ...
Created symlink /etc/systemd/system/dbus-org.freedesktop.timesync1.service → /lib/systemd/system/systemd-timesyncd.service.
Created symlink /etc/systemd/system/sysinit.target.wants/systemd-timesyncd.service → /lib/systemd/system/systemd-timesyncd.service.
Setting up systemd (246.6-2) ...
Created symlink /etc/systemd/system/getty.target.wants/getty at tty1.service → /lib/systemd/system/getty at .service.
Created symlink /etc/systemd/system/multi-user.target.wants/remote-fs.target → /lib/systemd/system/remote-fs.target.
Created symlink /etc/systemd/system/sysinit.target.wants/systemd-pstore.service → /lib/systemd/system/systemd-pstore.service.
Setting up dmsetup (2:1.02.171-3) ...
Selecting previously unselected package systemd-sysv.
(Reading database ... 16033 files and directories currently installed.)
Preparing to unpack .../00-systemd-sysv_246.6-2_amd64.deb ...
Unpacking systemd-sysv (246.6-2) ...
Selecting previously unselected package libdbus-1-3:amd64.
Preparing to unpack .../01-libdbus-1-3_1.12.20-1_amd64.deb ...
Unpacking libdbus-1-3:amd64 (1.12.20-1) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../02-libexpat1_2.2.10-1_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.10-1) ...
Selecting previously unselected package dbus.
Preparing to unpack .../03-dbus_1.12.20-1_amd64.deb ...
Unpacking dbus (1.12.20-1) ...
Selecting previously unselected package bsdextrautils.
Preparing to unpack .../04-bsdextrautils_2.36-3+b1_amd64.deb ...
Unpacking bsdextrautils (2.36-3+b1) ...
Selecting previously unselected package libuchardet0:amd64.
Preparing to unpack .../05-libuchardet0_0.0.7-1_amd64.deb ...
Unpacking libuchardet0:amd64 (0.0.7-1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../06-groff-base_1.22.4-5_amd64.deb ...
Unpacking groff-base (1.22.4-5) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../07-libpipeline1_1.5.3-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.3-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../08-man-db_2.9.3-2_amd64.deb ...
Unpacking man-db (2.9.3-2) ...
Selecting previously unselected package readline-common.
Preparing to unpack .../09-readline-common_8.0-4_all.deb ...
Unpacking readline-common (8.0-4) ...
Selecting previously unselected package libreadline8:amd64.
Preparing to unpack .../10-libreadline8_8.0-4_amd64.deb ...
Unpacking libreadline8:amd64 (8.0-4) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../11-libsigsegv2_2.12-2_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.12-2) ...
Setting up readline-common (8.0-4) ...
Setting up libreadline8:amd64 (8.0-4) ...
Setting up libsigsegv2:amd64 (2.12-2) ...
Selecting previously unselected package gawk.
(Reading database ... 16689 files and directories currently installed.)
Preparing to unpack .../00-gawk_1%3a5.0.1+dfsg-1_amd64.deb ...
Unpacking gawk (1:5.0.1+dfsg-1) ...
Selecting previously unselected package libgmpxx4ldbl:amd64.
Preparing to unpack .../01-libgmpxx4ldbl_2%3a6.2.0+dfsg-6_amd64.deb ...
Unpacking libgmpxx4ldbl:amd64 (2:6.2.0+dfsg-6) ...
Selecting previously unselected package libgmp-dev:amd64.
Preparing to unpack .../02-libgmp-dev_2%3a6.2.0+dfsg-6_amd64.deb ...
Unpacking libgmp-dev:amd64 (2:6.2.0+dfsg-6) ...
Selecting previously unselected package libffi-dev:amd64.
Preparing to unpack .../03-libffi-dev_3.3-4_amd64.deb ...
Unpacking libffi-dev:amd64 (3.3-4) ...
Selecting previously unselected package libbsd0:amd64.
Preparing to unpack .../04-libbsd0_0.10.0-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.10.0-1) ...
Selecting previously unselected package libbsd-dev:amd64.
Preparing to unpack .../05-libbsd-dev_0.10.0-1_amd64.deb ...
Unpacking libbsd-dev:amd64 (0.10.0-1) ...
Selecting previously unselected package libncurses6:amd64.
Preparing to unpack .../06-libncurses6_6.2+20200918-1_amd64.deb ...
Unpacking libncurses6:amd64 (6.2+20200918-1) ...
Selecting previously unselected package libncursesw6:amd64.
Preparing to unpack .../07-libncursesw6_6.2+20200918-1_amd64.deb ...
Unpacking libncursesw6:amd64 (6.2+20200918-1) ...
Selecting previously unselected package libncurses-dev:amd64.
Preparing to unpack .../08-libncurses-dev_6.2+20200918-1_amd64.deb ...
Unpacking libncurses-dev:amd64 (6.2+20200918-1) ...
Selecting previously unselected package libncurses5-dev:amd64.
Preparing to unpack .../09-libncurses5-dev_6.2+20200918-1_amd64.deb ...
Unpacking libncurses5-dev:amd64 (6.2+20200918-1) ...
Selecting previously unselected package ghc.
Preparing to unpack .../10-ghc_8.8.4-1_amd64.deb ...
Unpacking ghc (8.8.4-1) ...
Selecting previously unselected package node-jquery.
Preparing to unpack .../11-node-jquery_3.5.1+dfsg-4_all.deb ...
Unpacking node-jquery (3.5.1+dfsg-4) ...
Selecting previously unselected package libjs-jquery.
Preparing to unpack .../12-libjs-jquery_3.5.1+dfsg-4_all.deb ...
Unpacking libjs-jquery (3.5.1+dfsg-4) ...
Selecting previously unselected package libjs-jquery-hotkeys.
Preparing to unpack .../13-libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2_all.deb ...
Unpacking libjs-jquery-hotkeys (0~20130707+git2d51e3a9+dfsg-2) ...
Selecting previously unselected package liblocale-gettext-perl.
Preparing to unpack .../14-liblocale-gettext-perl_1.07-4_amd64.deb ...
Unpacking liblocale-gettext-perl (1.07-4) ...
Selecting previously unselected package libfftw3-double3:amd64.
Preparing to unpack .../15-libfftw3-double3_3.3.8-2_amd64.deb ...
Unpacking libfftw3-double3:amd64 (3.3.8-2) ...
Selecting previously unselected package libbrotli1:amd64.
Preparing to unpack .../16-libbrotli1_1.0.9-2+b1_amd64.deb ...
Unpacking libbrotli1:amd64 (1.0.9-2+b1) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../17-libpng16-16_1.6.37-3_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.37-3) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../18-libfreetype6_2.10.2+dfsg-3_amd64.deb ...
Unpacking libfreetype6:amd64 (2.10.2+dfsg-3) ...
Selecting previously unselected package sensible-utils.
Preparing to unpack .../19-sensible-utils_0.0.12+nmu1_all.deb ...
Unpacking sensible-utils (0.0.12+nmu1) ...
Selecting previously unselected package ucf.
Preparing to unpack .../20-ucf_3.0043_all.deb ...
Moving old data out of the way
Unpacking ucf (3.0043) ...
Selecting previously unselected package fonts-dejavu-core.
Preparing to unpack .../21-fonts-dejavu-core_2.37-2_all.deb ...
Unpacking fonts-dejavu-core (2.37-2) ...
Selecting previously unselected package fonts-urw-base35.
Preparing to unpack .../22-fonts-urw-base35_20200910-1_all.deb ...
Unpacking fonts-urw-base35 (20200910-1) ...
Selecting previously unselected package fontconfig-config.
Preparing to unpack .../23-fontconfig-config_2.13.1-4.2_all.deb ...
Unpacking fontconfig-config (2.13.1-4.2) ...
Selecting previously unselected package libfontconfig1:amd64.
Preparing to unpack .../24-libfontconfig1_2.13.1-4.2_amd64.deb ...
Unpacking libfontconfig1:amd64 (2.13.1-4.2) ...
Selecting previously unselected package libaom0:amd64.
Preparing to unpack .../25-libaom0_1.0.0.errata1-3_amd64.deb ...
Unpacking libaom0:amd64 (1.0.0.errata1-3) ...
Selecting previously unselected package libdav1d4:amd64.
Preparing to unpack .../26-libdav1d4_0.7.1-3_amd64.deb ...
Unpacking libdav1d4:amd64 (0.7.1-3) ...
Selecting previously unselected package libde265-0:amd64.
Preparing to unpack .../27-libde265-0_1.0.7-1_amd64.deb ...
Unpacking libde265-0:amd64 (1.0.7-1) ...
Selecting previously unselected package libnuma1:amd64.
Preparing to unpack .../28-libnuma1_2.0.12-1+b1_amd64.deb ...
Unpacking libnuma1:amd64 (2.0.12-1+b1) ...
Selecting previously unselected package libx265-192:amd64.
Preparing to unpack .../29-libx265-192_3.4-2_amd64.deb ...
Unpacking libx265-192:amd64 (3.4-2) ...
Selecting previously unselected package libheif1:amd64.
Preparing to unpack .../30-libheif1_1.9.1-1_amd64.deb ...
Unpacking libheif1:amd64 (1.9.1-1) ...
Selecting previously unselected package libjbig0:amd64.
Preparing to unpack .../31-libjbig0_2.1-3.1+b2_amd64.deb ...
Unpacking libjbig0:amd64 (2.1-3.1+b2) ...
Selecting previously unselected package libjpeg62-turbo:amd64.
Preparing to unpack .../32-libjpeg62-turbo_1%3a2.0.5-1.1_amd64.deb ...
Unpacking libjpeg62-turbo:amd64 (1:2.0.5-1.1) ...
Selecting previously unselected package liblcms2-2:amd64.
Preparing to unpack .../33-liblcms2-2_2.9-4+b1_amd64.deb ...
Unpacking liblcms2-2:amd64 (2.9-4+b1) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../34-libglib2.0-0_2.66.1-2_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.66.1-2) ...
Selecting previously unselected package liblqr-1-0:amd64.
Preparing to unpack .../35-liblqr-1-0_0.4.2-2.1_amd64.deb ...
Unpacking liblqr-1-0:amd64 (0.4.2-2.1) ...
Selecting previously unselected package libltdl7:amd64.
Preparing to unpack .../36-libltdl7_2.4.6-14_amd64.deb ...
Unpacking libltdl7:amd64 (2.4.6-14) ...
Selecting previously unselected package libopenjp2-7:amd64.
Preparing to unpack .../37-libopenjp2-7_2.3.1-1_amd64.deb ...
Unpacking libopenjp2-7:amd64 (2.3.1-1) ...
Selecting previously unselected package libwebp6:amd64.
Preparing to unpack .../38-libwebp6_0.6.1-2+b1_amd64.deb ...
Unpacking libwebp6:amd64 (0.6.1-2+b1) ...
Selecting previously unselected package libtiff5:amd64.
Preparing to unpack .../39-libtiff5_4.1.0+git191117-2_amd64.deb ...
Unpacking libtiff5:amd64 (4.1.0+git191117-2) ...
Selecting previously unselected package libwebpdemux2:amd64.
Preparing to unpack .../40-libwebpdemux2_0.6.1-2+b1_amd64.deb ...
Unpacking libwebpdemux2:amd64 (0.6.1-2+b1) ...
Selecting previously unselected package libwebpmux3:amd64.
Preparing to unpack .../41-libwebpmux3_0.6.1-2+b1_amd64.deb ...
Unpacking libwebpmux3:amd64 (0.6.1-2+b1) ...
Selecting previously unselected package libxau6:amd64.
Preparing to unpack .../42-libxau6_1%3a1.0.8-1+b2_amd64.deb ...
Unpacking libxau6:amd64 (1:1.0.8-1+b2) ...
Selecting previously unselected package libxdmcp6:amd64.
Preparing to unpack .../43-libxdmcp6_1%3a1.1.2-3_amd64.deb ...
Unpacking libxdmcp6:amd64 (1:1.1.2-3) ...
Selecting previously unselected package libxcb1:amd64.
Preparing to unpack .../44-libxcb1_1.14-2_amd64.deb ...
Unpacking libxcb1:amd64 (1.14-2) ...
Selecting previously unselected package libx11-data.
Preparing to unpack .../45-libx11-data_2%3a1.6.12-1_all.deb ...
Unpacking libx11-data (2:1.6.12-1) ...
Selecting previously unselected package libx11-6:amd64.
Preparing to unpack .../46-libx11-6_2%3a1.6.12-1_amd64.deb ...
Unpacking libx11-6:amd64 (2:1.6.12-1) ...
Selecting previously unselected package libxext6:amd64.
Preparing to unpack .../47-libxext6_2%3a1.3.3-1+b2_amd64.deb ...
Unpacking libxext6:amd64 (2:1.3.3-1+b2) ...
Selecting previously unselected package libicu67:amd64.
Preparing to unpack .../48-libicu67_67.1-4_amd64.deb ...
Unpacking libicu67:amd64 (67.1-4) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../49-libxml2_2.9.10+dfsg-6.1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.10+dfsg-6.1) ...
Selecting previously unselected package imagemagick-6-common.
Preparing to unpack .../50-imagemagick-6-common_8%3a6.9.11.24+dfsg-1_all.deb ...
Unpacking imagemagick-6-common (8:6.9.11.24+dfsg-1) ...
Selecting previously unselected package libmagickcore-6.q16-6:amd64.
Preparing to unpack .../51-libmagickcore-6.q16-6_8%3a6.9.11.24+dfsg-1+b1_amd64.deb ...
Unpacking libmagickcore-6.q16-6:amd64 (8:6.9.11.24+dfsg-1+b1) ...
Selecting previously unselected package libmagickwand-6.q16-6:amd64.
Preparing to unpack .../52-libmagickwand-6.q16-6_8%3a6.9.11.24+dfsg-1+b1_amd64.deb ...
Unpacking libmagickwand-6.q16-6:amd64 (8:6.9.11.24+dfsg-1+b1) ...
Selecting previously unselected package libsane-common.
Preparing to unpack .../53-libsane-common_1.0.31-2_all.deb ...
Unpacking libsane-common (1.0.31-2) ...
Selecting previously unselected package libaio1:amd64.
Preparing to unpack .../54-libaio1_0.3.112-8_amd64.deb ...
Unpacking libaio1:amd64 (0.3.112-8) ...
Selecting previously unselected package libdevmapper-event1.02.1:amd64.
Preparing to unpack .../55-libdevmapper-event1.02.1_2%3a1.02.171-3_amd64.deb ...
Unpacking libdevmapper-event1.02.1:amd64 (2:1.02.171-3) ...
Selecting previously unselected package libreadline5:amd64.
Preparing to unpack .../56-libreadline5_5.2+dfsg-3+b13_amd64.deb ...
Unpacking libreadline5:amd64 (5.2+dfsg-3+b13) ...
Selecting previously unselected package liblvm2cmd2.03:amd64.
Preparing to unpack .../57-liblvm2cmd2.03_2.03.09-3_amd64.deb ...
Unpacking liblvm2cmd2.03:amd64 (2.03.09-3) ...
Selecting previously unselected package dmeventd.
Preparing to unpack .../58-dmeventd_2%3a1.02.171-3_amd64.deb ...
Unpacking dmeventd (2:1.02.171-3) ...
Selecting previously unselected package lvm2.
Preparing to unpack .../59-lvm2_2.03.09-3_amd64.deb ...
Unpacking lvm2 (2.03.09-3) ...
Selecting previously unselected package udev.
Preparing to unpack .../60-udev_246.6-2_amd64.deb ...
Unpacking udev (246.6-2) ...
Selecting previously unselected package mdadm.
Preparing to unpack .../61-mdadm_4.1-8_amd64.deb ...
Unpacking mdadm (4.1-8) ...
Selecting previously unselected package libfuse2:amd64.
Preparing to unpack .../62-libfuse2_2.9.9-3_amd64.deb ...
Unpacking libfuse2:amd64 (2.9.9-3) ...
Selecting previously unselected package fuse.
Preparing to unpack .../63-fuse_2.9.9-3_amd64.deb ...
Unpacking fuse (2.9.9-3) ...
Selecting previously unselected package libntfs-3g883.
Preparing to unpack .../64-libntfs-3g883_1%3a2017.3.23AR.3-3_amd64.deb ...
Unpacking libntfs-3g883 (1:2017.3.23AR.3-3) ...
Setting up libfuse2:amd64 (2.9.9-3) ...
Setting up fuse (2.9.9-3) ...
Selecting previously unselected package ntfs-3g.
(Reading database ... 22513 files and directories currently installed.)
Preparing to unpack .../ntfs-3g_1%3a2017.3.23AR.3-3_amd64.deb ...
Unpacking ntfs-3g (1:2017.3.23AR.3-3) ...
Selecting previously unselected package poppler-data.
Preparing to unpack .../poppler-data_0.4.9-2_all.deb ...
Unpacking poppler-data (0.4.9-2) ...
Selecting previously unselected package libpython3.8-minimal:amd64.
Preparing to unpack .../libpython3.8-minimal_3.8.6-1_amd64.deb ...
Unpacking libpython3.8-minimal:amd64 (3.8.6-1) ...
Selecting previously unselected package python3.8-minimal.
Preparing to unpack .../python3.8-minimal_3.8.6-1_amd64.deb ...
Unpacking python3.8-minimal (3.8.6-1) ...
Setting up libpython3.8-minimal:amd64 (3.8.6-1) ...
Setting up libexpat1:amd64 (2.2.10-1) ...
Setting up python3.8-minimal (3.8.6-1) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 23382 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.8.6-1_amd64.deb ...
Unpacking python3-minimal (3.8.6-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../1-mime-support_3.64_all.deb ...
Unpacking mime-support (3.64) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../2-libsqlite3-0_3.33.0-1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.33.0-1) ...
Selecting previously unselected package libpython3.8-stdlib:amd64.
Preparing to unpack .../3-libpython3.8-stdlib_3.8.6-1_amd64.deb ...
Unpacking libpython3.8-stdlib:amd64 (3.8.6-1) ...
Selecting previously unselected package python3.8.
Preparing to unpack .../4-python3.8_3.8.6-1_amd64.deb ...
Unpacking python3.8 (3.8.6-1) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../5-libpython3-stdlib_3.8.6-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.8.6-1) ...
Setting up python3-minimal (3.8.6-1) ...
Selecting previously unselected package python3.
(Reading database ... 23786 files and directories currently installed.)
Preparing to unpack .../000-python3_3.8.6-1_amd64.deb ...
Unpacking python3 (3.8.6-1) ...
Selecting previously unselected package libpython3.9-minimal:amd64.
Preparing to unpack .../001-libpython3.9-minimal_3.9.0-5_amd64.deb ...
Unpacking libpython3.9-minimal:amd64 (3.9.0-5) ...
Selecting previously unselected package python3.9-minimal.
Preparing to unpack .../002-python3.9-minimal_3.9.0-5_amd64.deb ...
Unpacking python3.9-minimal (3.9.0-5) ...
Selecting previously unselected package sgml-base.
Preparing to unpack .../003-sgml-base_1.30_all.deb ...
Unpacking sgml-base (1.30) ...
Selecting previously unselected package uuid-runtime.
Preparing to unpack .../004-uuid-runtime_2.36-3+b1_amd64.deb ...
Unpacking uuid-runtime (2.36-3+b1) ...
Selecting previously unselected package calendar.
Preparing to unpack .../005-calendar_12.1.7_amd64.deb ...
Unpacking calendar (12.1.7) ...
Selecting previously unselected package ncal.
Preparing to unpack .../006-ncal_12.1.7_amd64.deb ...
Unpacking ncal (12.1.7) ...
Selecting previously unselected package bsdmainutils.
Preparing to unpack .../007-bsdmainutils_12.1.7_all.deb ...
Unpacking bsdmainutils (12.1.7) ...
Selecting previously unselected package cpio.
Preparing to unpack .../008-cpio_2.13+dfsg-4_amd64.deb ...
Unpacking cpio (2.13+dfsg-4) ...
Selecting previously unselected package dmidecode.
Preparing to unpack .../009-dmidecode_3.2-4_amd64.deb ...
Unpacking dmidecode (3.2-4) ...
Selecting previously unselected package libfdisk1:amd64.
Preparing to unpack .../010-libfdisk1_2.36-3+b1_amd64.deb ...
Unpacking libfdisk1:amd64 (2.36-3+b1) ...
Selecting previously unselected package fdisk.
Preparing to unpack .../011-fdisk_2.36-3+b1_amd64.deb ...
Unpacking fdisk (2.36-3+b1) ...
Selecting previously unselected package libelf1:amd64.
Preparing to unpack .../012-libelf1_0.181-1_amd64.deb ...
Unpacking libelf1:amd64 (0.181-1) ...
Selecting previously unselected package libmnl0:amd64.
Preparing to unpack .../013-libmnl0_1.0.4-3_amd64.deb ...
Unpacking libmnl0:amd64 (1.0.4-3) ...
Selecting previously unselected package libxtables12:amd64.
Preparing to unpack .../014-libxtables12_1.8.5-3_amd64.deb ...
Unpacking libxtables12:amd64 (1.8.5-3) ...
Selecting previously unselected package libcap2-bin.
Preparing to unpack .../015-libcap2-bin_1%3a2.44-1_amd64.deb ...
Unpacking libcap2-bin (1:2.44-1) ...
Selecting previously unselected package iproute2.
Preparing to unpack .../016-iproute2_5.9.0-1_amd64.deb ...
Unpacking iproute2 (5.9.0-1) ...
Selecting previously unselected package libisc-export1105:amd64.
Preparing to unpack .../017-libisc-export1105_1%3a9.11.19+dfsg-1_amd64.deb ...
Unpacking libisc-export1105:amd64 (1:9.11.19+dfsg-1) ...
Selecting previously unselected package libdns-export1110.
Preparing to unpack .../018-libdns-export1110_1%3a9.11.19+dfsg-1_amd64.deb ...
Unpacking libdns-export1110 (1:9.11.19+dfsg-1) ...
Selecting previously unselected package isc-dhcp-client.
Preparing to unpack .../019-isc-dhcp-client_4.4.1-2.1+b2_amd64.deb ...
Unpacking isc-dhcp-client (4.4.1-2.1+b2) ...
Selecting previously unselected package kmod.
Preparing to unpack .../020-kmod_27+20200310-2_amd64.deb ...
Unpacking kmod (27+20200310-2) ...
Selecting previously unselected package less.
Preparing to unpack .../021-less_551-2_amd64.deb ...
Unpacking less (551-2) ...
Selecting previously unselected package netbase.
Preparing to unpack .../022-netbase_6.2_all.deb ...
Unpacking netbase (6.2) ...
Selecting previously unselected package libprocps8:amd64.
Preparing to unpack .../023-libprocps8_2%3a3.3.16-5_amd64.deb ...
Unpacking libprocps8:amd64 (2:3.3.16-5) ...
Selecting previously unselected package procps.
Preparing to unpack .../024-procps_2%3a3.3.16-5_amd64.deb ...
Unpacking procps (2:3.3.16-5) ...
Selecting previously unselected package bash-completion.
Preparing to unpack .../025-bash-completion_1%3a2.11-2_all.deb ...
Unpacking bash-completion (1:2.11-2) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../026-libmagic-mgc_1%3a5.38-5_amd64.deb ...
Unpacking libmagic-mgc (1:5.38-5) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../027-libmagic1_1%3a5.38-5_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.38-5) ...
Selecting previously unselected package file.
Preparing to unpack .../028-file_1%3a5.38-5_amd64.deb ...
Unpacking file (1:5.38-5) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../029-gettext-base_0.19.8.1-10_amd64.deb ...
Unpacking gettext-base (0.19.8.1-10) ...
Selecting previously unselected package libpam-systemd:amd64.
Preparing to unpack .../030-libpam-systemd_246.6-2_amd64.deb ...
Unpacking libpam-systemd:amd64 (246.6-2) ...
Selecting previously unselected package libedit2:amd64.
Preparing to unpack .../031-libedit2_3.1-20191231-1_amd64.deb ...
Unpacking libedit2:amd64 (3.1-20191231-1) ...
Selecting previously unselected package libcbor0:amd64.
Preparing to unpack .../032-libcbor0_0.5.0+dfsg-2_amd64.deb ...
Unpacking libcbor0:amd64 (0.5.0+dfsg-2) ...
Selecting previously unselected package libfido2-1:amd64.
Preparing to unpack .../033-libfido2-1_1.5.0-2_amd64.deb ...
Unpacking libfido2-1:amd64 (1.5.0-2) ...
Selecting previously unselected package openssh-client.
Preparing to unpack .../034-openssh-client_1%3a8.3p1-1_amd64.deb ...
Unpacking openssh-client (1:8.3p1-1) ...
Selecting previously unselected package pci.ids.
Preparing to unpack .../035-pci.ids_0.0~2020.09.21-1_all.deb ...
Unpacking pci.ids (0.0~2020.09.21-1) ...
Selecting previously unselected package libpci3:amd64.
Preparing to unpack .../036-libpci3_1%3a3.7.0-4_amd64.deb ...
Unpacking libpci3:amd64 (1:3.7.0-4) ...
Selecting previously unselected package pciutils.
Preparing to unpack .../037-pciutils_1%3a3.7.0-4_amd64.deb ...
Unpacking pciutils (1:3.7.0-4) ...
Selecting previously unselected package android-liblog.
Preparing to unpack .../038-android-liblog_1%3a8.1.0+r23-8_amd64.deb ...
Unpacking android-liblog (1:8.1.0+r23-8) ...
Selecting previously unselected package android-libbase.
Preparing to unpack .../039-android-libbase_1%3a8.1.0+r23-8_amd64.deb ...
Unpacking android-libbase (1:8.1.0+r23-8) ...
Selecting previously unselected package android-libcutils.
Preparing to unpack .../040-android-libcutils_1%3a8.1.0+r23-8_amd64.deb ...
Unpacking android-libcutils (1:8.1.0+r23-8) ...
Selecting previously unselected package p7zip.
Preparing to unpack .../041-p7zip_16.02+dfsg-8_amd64.deb ...
Unpacking p7zip (16.02+dfsg-8) ...
Selecting previously unselected package p7zip-full.
Preparing to unpack .../042-p7zip-full_16.02+dfsg-8_amd64.deb ...
Unpacking p7zip-full (16.02+dfsg-8) ...
Selecting previously unselected package android-libunwind.
Preparing to unpack .../043-android-libunwind_10.0.0+r36-3_amd64.deb ...
Unpacking android-libunwind (10.0.0+r36-3) ...
Selecting previously unselected package android-libbacktrace.
Preparing to unpack .../044-android-libbacktrace_1%3a8.1.0+r23-8_amd64.deb ...
Unpacking android-libbacktrace (1:8.1.0+r23-8) ...
Selecting previously unselected package android-libutils.
Preparing to unpack .../045-android-libutils_1%3a8.1.0+r23-8_amd64.deb ...
Unpacking android-libutils (1:8.1.0+r23-8) ...
Selecting previously unselected package android-libziparchive.
Preparing to unpack .../046-android-libziparchive_1%3a8.1.0+r23-8_amd64.deb ...
Unpacking android-libziparchive (1:8.1.0+r23-8) ...
Selecting previously unselected package android-libandroidfw:amd64.
Preparing to unpack .../047-android-libandroidfw_1%3a8.1.0+r23-3+b2_amd64.deb ...
Unpacking android-libandroidfw:amd64 (1:8.1.0+r23-3+b2) ...
Selecting previously unselected package android-libaapt:amd64.
Preparing to unpack .../048-android-libaapt_1%3a8.1.0+r23-3+b2_amd64.deb ...
Unpacking android-libaapt:amd64 (1:8.1.0+r23-3+b2) ...
Selecting previously unselected package libprotobuf-lite23:amd64.
Preparing to unpack .../049-libprotobuf-lite23_3.12.3-2+b1_amd64.deb ...
Unpacking libprotobuf-lite23:amd64 (3.12.3-2+b1) ...
Selecting previously unselected package aapt.
Preparing to unpack .../050-aapt_1%3a8.1.0+r23-3+b2_amd64.deb ...
Unpacking aapt (1:8.1.0+r23-3+b2) ...
Selecting previously unselected package abootimg.
Preparing to unpack .../051-abootimg_0.6-1+b2_amd64.deb ...
Unpacking abootimg (0.6-1+b2) ...
Selecting previously unselected package acl.
Preparing to unpack .../052-acl_2.2.53-8_amd64.deb ...
Unpacking acl (2.2.53-8) ...
Selecting previously unselected package hicolor-icon-theme.
Preparing to unpack .../053-hicolor-icon-theme_0.17-2_all.deb ...
Unpacking hicolor-icon-theme (0.17-2) ...
Selecting previously unselected package libgdk-pixbuf2.0-common.
Preparing to unpack .../054-libgdk-pixbuf2.0-common_2.40.0+dfsg-5_all.deb ...
Unpacking libgdk-pixbuf2.0-common (2.40.0+dfsg-5) ...
Selecting previously unselected package shared-mime-info.
Preparing to unpack .../055-shared-mime-info_2.0-1_amd64.deb ...
Unpacking shared-mime-info (2.0-1) ...
Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
Preparing to unpack .../056-libgdk-pixbuf2.0-0_2.40.0+dfsg-5_amd64.deb ...
Unpacking libgdk-pixbuf2.0-0:amd64 (2.40.0+dfsg-5) ...
Selecting previously unselected package gtk-update-icon-cache.
Preparing to unpack .../057-gtk-update-icon-cache_3.24.23-2_amd64.deb ...
No diversion 'diversion of /usr/sbin/update-icon-caches to /usr/sbin/update-icon-caches.gtk2 by libgtk-3-bin', none removed.
No diversion 'diversion of /usr/share/man/man8/update-icon-caches.8.gz to /usr/share/man/man8/update-icon-caches.gtk2.8.gz by libgtk-3-bin', none removed.
Unpacking gtk-update-icon-cache (3.24.23-2) ...
Selecting previously unselected package adwaita-icon-theme.
Preparing to unpack .../058-adwaita-icon-theme_3.38.0-1_all.deb ...
Unpacking adwaita-icon-theme (3.38.0-1) ...
Selecting previously unselected package android-framework-res.
Preparing to unpack .../059-android-framework-res_1%3a8.1.0+r23-3_all.deb ...
Unpacking android-framework-res (1:8.1.0+r23-3) ...
Selecting previously unselected package binfmt-support.
Preparing to unpack .../060-binfmt-support_2.2.1-1_amd64.deb ...
Unpacking binfmt-support (2.2.1-1) ...
Selecting previously unselected package fastjar.
Preparing to unpack .../061-fastjar_2%3a0.98-7_amd64.deb ...
Unpacking fastjar (2:0.98-7) ...
Selecting previously unselected package jarwrapper.
Preparing to unpack .../062-jarwrapper_0.77_all.deb ...
Unpacking jarwrapper (0.77) ...
Selecting previously unselected package openssl.
Preparing to unpack .../063-openssl_1.1.1h-1_amd64.deb ...
Unpacking openssl (1.1.1h-1) ...
Selecting previously unselected package ca-certificates.
Preparing to unpack .../064-ca-certificates_20200601_all.deb ...
Unpacking ca-certificates (20200601) ...
Selecting previously unselected package libnspr4:amd64.
Preparing to unpack .../065-libnspr4_2%3a4.28-1_amd64.deb ...
Unpacking libnspr4:amd64 (2:4.28-1) ...
Selecting previously unselected package libnss3:amd64.
Preparing to unpack .../066-libnss3_2%3a3.56-1_amd64.deb ...
Unpacking libnss3:amd64 (2:3.56-1) ...
Selecting previously unselected package ca-certificates-java.
Preparing to unpack .../067-ca-certificates-java_20190909_all.deb ...
Unpacking ca-certificates-java (20190909) ...
Selecting previously unselected package java-common.
Preparing to unpack .../068-java-common_0.72_all.deb ...
Unpacking java-common (0.72) ...
Selecting previously unselected package libavahi-common-data:amd64.
Preparing to unpack .../069-libavahi-common-data_0.8-3_amd64.deb ...
Unpacking libavahi-common-data:amd64 (0.8-3) ...
Selecting previously unselected package libavahi-common3:amd64.
Preparing to unpack .../070-libavahi-common3_0.8-3_amd64.deb ...
Unpacking libavahi-common3:amd64 (0.8-3) ...
Selecting previously unselected package libavahi-client3:amd64.
Preparing to unpack .../071-libavahi-client3_0.8-3_amd64.deb ...
Unpacking libavahi-client3:amd64 (0.8-3) ...
Selecting previously unselected package libcups2:amd64.
Preparing to unpack .../072-libcups2_2.3.3-3_amd64.deb ...
Unpacking libcups2:amd64 (2.3.3-3) ...
Selecting previously unselected package libasound2-data.
Preparing to unpack .../073-libasound2-data_1.2.3.2-1_all.deb ...
Unpacking libasound2-data (1.2.3.2-1) ...
Selecting previously unselected package libasound2:amd64.
Preparing to unpack .../074-libasound2_1.2.3.2-1_amd64.deb ...
Unpacking libasound2:amd64 (1.2.3.2-1) ...
Selecting previously unselected package libpcsclite1:amd64.
Preparing to unpack .../075-libpcsclite1_1.9.0-1_amd64.deb ...
Unpacking libpcsclite1:amd64 (1.9.0-1) ...
Selecting previously unselected package libxi6:amd64.
Preparing to unpack .../076-libxi6_2%3a1.7.10-1_amd64.deb ...
Unpacking libxi6:amd64 (2:1.7.10-1) ...
Selecting previously unselected package libxrender1:amd64.
Preparing to unpack .../077-libxrender1_1%3a0.9.10-1_amd64.deb ...
Unpacking libxrender1:amd64 (1:0.9.10-1) ...
Selecting previously unselected package x11-common.
Preparing to unpack .../078-x11-common_1%3a7.7+21_all.deb ...
Unpacking x11-common (1:7.7+21) ...
Selecting previously unselected package libxtst6:amd64.
Preparing to unpack .../079-libxtst6_2%3a1.2.3-1_amd64.deb ...
Unpacking libxtst6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package openjdk-11-jre-headless:amd64.
Preparing to unpack .../080-openjdk-11-jre-headless_11.0.8+10-1.1_amd64.deb ...
Unpacking openjdk-11-jre-headless:amd64 (11.0.8+10-1.1) ...
Selecting previously unselected package default-jre-headless.
Preparing to unpack .../081-default-jre-headless_2%3a1.11-72_amd64.deb ...
Unpacking default-jre-headless (2:1.11-72) ...
Selecting previously unselected package apksigner.
Preparing to unpack .../082-apksigner_30.0.3-1_all.deb ...
Unpacking apksigner (30.0.3-1) ...
Selecting previously unselected package libantlr3-runtime-java.
Preparing to unpack .../083-libantlr3-runtime-java_3.5.2-9_all.deb ...
Unpacking libantlr3-runtime-java (3.5.2-9) ...
Selecting previously unselected package libcommons-cli-java.
Preparing to unpack .../084-libcommons-cli-java_1.4-2_all.deb ...
Unpacking libcommons-cli-java (1.4-2) ...
Selecting previously unselected package libapache-pom-java.
Preparing to unpack .../085-libapache-pom-java_18-1_all.deb ...
Unpacking libapache-pom-java (18-1) ...
Selecting previously unselected package libcommons-parent-java.
Preparing to unpack .../086-libcommons-parent-java_43-1_all.deb ...
Unpacking libcommons-parent-java (43-1) ...
Selecting previously unselected package libcommons-io-java.
Preparing to unpack .../087-libcommons-io-java_2.8.0-1_all.deb ...
Unpacking libcommons-io-java (2.8.0-1) ...
Selecting previously unselected package libcommons-lang3-java.
Preparing to unpack .../088-libcommons-lang3-java_3.11-1_all.deb ...
Unpacking libcommons-lang3-java (3.11-1) ...
Selecting previously unselected package libatinject-jsr330-api-java.
Preparing to unpack .../089-libatinject-jsr330-api-java_1.0+ds1-5_all.deb ...
Unpacking libatinject-jsr330-api-java (1.0+ds1-5) ...
Selecting previously unselected package libjsr305-java.
Preparing to unpack .../090-libjsr305-java_0.1~+svn49-11_all.deb ...
Unpacking libjsr305-java (0.1~+svn49-11) ...
Selecting previously unselected package libguava-java.
Preparing to unpack .../091-libguava-java_29.0-6_all.deb ...
Unpacking libguava-java (29.0-6) ...
Selecting previously unselected package libsmali-java.
Preparing to unpack .../092-libsmali-java_2.4.0-1_all.deb ...
Unpacking libsmali-java (2.4.0-1) ...
Selecting previously unselected package libantlr-java.
Preparing to unpack .../093-libantlr-java_2.7.7+dfsg-10_all.deb ...
Unpacking libantlr-java (2.7.7+dfsg-10) ...
Selecting previously unselected package libstringtemplate-java.
Preparing to unpack .../094-libstringtemplate-java_3.2.1-2_all.deb ...
Unpacking libstringtemplate-java (3.2.1-2) ...
Selecting previously unselected package junit.
Preparing to unpack .../095-junit_3.8.2-9_all.deb ...
Unpacking junit (3.8.2-9) ...
Selecting previously unselected package libxmlunit-java.
Preparing to unpack .../096-libxmlunit-java_1.6-2_all.deb ...
Unpacking libxmlunit-java (1.6-2) ...
Selecting previously unselected package libxpp3-java.
Preparing to unpack .../097-libxpp3-java_1.1.4c-3_all.deb ...
Unpacking libxpp3-java (1.1.4c-3) ...
Selecting previously unselected package libyaml-snake-java.
Preparing to unpack .../098-libyaml-snake-java_1.26+ds-1_all.deb ...
Unpacking libyaml-snake-java (1.26+ds-1) ...
Selecting previously unselected package apktool.
Preparing to unpack .../099-apktool_2.4.1-1_all.deb ...
Unpacking apktool (2.4.1-1) ...
Selecting previously unselected package attr.
Preparing to unpack .../100-attr_1%3a2.4.48-5_amd64.deb ...
Unpacking attr (1:2.4.48-5) ...
Selecting previously unselected package augeas-lenses.
Preparing to unpack .../101-augeas-lenses_1.12.0-2_all.deb ...
Unpacking augeas-lenses (1.12.0-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../102-m4_1.4.18-4_amd64.deb ...
Unpacking m4 (1.4.18-4) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../103-autoconf_2.69-11.1_all.deb ...
Unpacking autoconf (2.69-11.1) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../104-autotools-dev_20180224.1_all.deb ...
Unpacking autotools-dev (20180224.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../105-automake_1%3a1.16.2-4_all.deb ...
Unpacking automake (1:1.16.2-4) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../106-autopoint_0.19.8.1-10_all.deb ...
Unpacking autopoint (0.19.8.1-10) ...
Selecting previously unselected package binutils-multiarch.
Preparing to unpack .../107-binutils-multiarch_2.35.1-2_amd64.deb ...
Adding 'diversion of /usr/bin/x86_64-linux-gnu-nm to /usr/bin/x86_64-linux-gnu-nm.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-objdump to /usr/bin/x86_64-linux-gnu-objdump.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-objcopy to /usr/bin/x86_64-linux-gnu-objcopy.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-strings to /usr/bin/x86_64-linux-gnu-strings.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-strip to /usr/bin/x86_64-linux-gnu-strip.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-size to /usr/bin/x86_64-linux-gnu-size.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-ar to /usr/bin/x86_64-linux-gnu-ar.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-ranlib to /usr/bin/x86_64-linux-gnu-ranlib.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-addr2line to /usr/bin/x86_64-linux-gnu-addr2line.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-gprof to /usr/bin/x86_64-linux-gnu-gprof.single by binutils-multiarch'
Adding 'diversion of /usr/bin/x86_64-linux-gnu-readelf to /usr/bin/x86_64-linux-gnu-readelf.single by binutils-multiarch'
Unpacking binutils-multiarch (2.35.1-2) ...
Selecting previously unselected package python3-pkg-resources.
Preparing to unpack .../108-python3-pkg-resources_50.3.0-1_all.deb ...
Unpacking python3-pkg-resources (50.3.0-1) ...
Selecting previously unselected package python3-appdirs.
Preparing to unpack .../109-python3-appdirs_1.4.4-1_all.deb ...
Unpacking python3-appdirs (1.4.4-1) ...
Selecting previously unselected package python3-colorama.
Preparing to unpack .../110-python3-colorama_0.4.3-1_all.deb ...
Unpacking python3-colorama (0.4.3-1) ...
Selecting previously unselected package python3-click.
Preparing to unpack .../111-python3-click_7.1.2-1_all.deb ...
Unpacking python3-click (7.1.2-1) ...
Selecting previously unselected package python3-mypy-extensions.
Preparing to unpack .../112-python3-mypy-extensions_0.4.3-2_all.deb ...
Unpacking python3-mypy-extensions (0.4.3-2) ...
Selecting previously unselected package python3-pathspec.
Preparing to unpack .../113-python3-pathspec_0.8.0-1_all.deb ...
Unpacking python3-pathspec (0.8.0-1) ...
Selecting previously unselected package python3-regex.
Preparing to unpack .../114-python3-regex_0.1.20200714-1+b1_amd64.deb ...
Unpacking python3-regex (0.1.20200714-1+b1) ...
Selecting previously unselected package python3-toml.
Preparing to unpack .../115-python3-toml_0.10.1-1_all.deb ...
Unpacking python3-toml (0.10.1-1) ...
Selecting previously unselected package python3-typed-ast.
Preparing to unpack .../116-python3-typed-ast_1.4.1-1+b2_amd64.deb ...
Unpacking python3-typed-ast (1.4.1-1+b2) ...
Selecting previously unselected package python3-typing-extensions.
Preparing to unpack .../117-python3-typing-extensions_3.7.4.3-1_all.deb ...
Unpacking python3-typing-extensions (3.7.4.3-1) ...
Selecting previously unselected package black.
Preparing to unpack .../118-black_20.8b1-2_all.deb ...
Unpacking black (20.8b1-2) ...
Selecting previously unselected package liblzo2-2:amd64.
Preparing to unpack .../119-liblzo2-2_2.10-2_amd64.deb ...
Unpacking liblzo2-2:amd64 (2.10-2) ...
Selecting previously unselected package btrfs-progs.
Preparing to unpack .../120-btrfs-progs_5.7-1_amd64.deb ...
Unpacking btrfs-progs (5.7-1) ...
Selecting previously unselected package libslang2:amd64.
Preparing to unpack .../121-libslang2_2.3.2-5_amd64.deb ...
Unpacking libslang2:amd64 (2.3.2-5) ...
Selecting previously unselected package libcaca0:amd64.
Preparing to unpack .../122-libcaca0_0.99.beta19-2.1_amd64.deb ...
Unpacking libcaca0:amd64 (0.99.beta19-2.1) ...
Selecting previously unselected package libgif7:amd64.
Preparing to unpack .../123-libgif7_5.1.9-1_amd64.deb ...
Unpacking libgif7:amd64 (5.1.9-1) ...
Selecting previously unselected package libid3tag0:amd64.
Preparing to unpack .../124-libid3tag0_0.15.1b-14_amd64.deb ...
Unpacking libid3tag0:amd64 (0.15.1b-14) ...
Selecting previously unselected package libx11-xcb1:amd64.
Preparing to unpack .../125-libx11-xcb1_2%3a1.6.12-1_amd64.deb ...
Unpacking libx11-xcb1:amd64 (2:1.6.12-1) ...
Selecting previously unselected package libxcb-shm0:amd64.
Preparing to unpack .../126-libxcb-shm0_1.14-2_amd64.deb ...
Unpacking libxcb-shm0:amd64 (1.14-2) ...
Selecting previously unselected package libimlib2:amd64.
Preparing to unpack .../127-libimlib2_1.7.0-1_amd64.deb ...
Unpacking libimlib2:amd64 (1.7.0-1) ...
Selecting previously unselected package caca-utils.
Preparing to unpack .../128-caca-utils_0.99.beta19-2.1_amd64.deb ...
Unpacking caca-utils (0.99.beta19-2.1) ...
Selecting previously unselected package libcolord2:amd64.
Preparing to unpack .../129-libcolord2_1.4.4-2_amd64.deb ...
Unpacking libcolord2:amd64 (1.4.4-2) ...
Selecting previously unselected package libusb-1.0-0:amd64.
Preparing to unpack .../130-libusb-1.0-0_2%3a1.0.23-2_amd64.deb ...
Unpacking libusb-1.0-0:amd64 (2:1.0.23-2) ...
Selecting previously unselected package libgusb2:amd64.
Preparing to unpack .../131-libgusb2_0.3.4-0.2_amd64.deb ...
Unpacking libgusb2:amd64 (0.3.4-0.2) ...
Selecting previously unselected package libcolorhug2:amd64.
Preparing to unpack .../132-libcolorhug2_1.4.4-2_amd64.deb ...
Unpacking libcolorhug2:amd64 (1.4.4-2) ...
Selecting previously unselected package libgudev-1.0-0:amd64.
Preparing to unpack .../133-libgudev-1.0-0_234-1_amd64.deb ...
Unpacking libgudev-1.0-0:amd64 (234-1) ...
Selecting previously unselected package libpolkit-gobject-1-0:amd64.
Preparing to unpack .../134-libpolkit-gobject-1-0_0.105-29_amd64.deb ...
Unpacking libpolkit-gobject-1-0:amd64 (0.105-29) ...
Selecting previously unselected package libpixman-1-0:amd64.
Preparing to unpack .../135-libpixman-1-0_0.36.0-1_amd64.deb ...
Unpacking libpixman-1-0:amd64 (0.36.0-1) ...
Selecting previously unselected package libxcb-render0:amd64.
Preparing to unpack .../136-libxcb-render0_1.14-2_amd64.deb ...
Unpacking libxcb-render0:amd64 (1.14-2) ...
Selecting previously unselected package libcairo2:amd64.
Preparing to unpack .../137-libcairo2_1.16.0-4_amd64.deb ...
Unpacking libcairo2:amd64 (1.16.0-4) ...
Selecting previously unselected package libsasl2-modules-db:amd64.
Preparing to unpack .../138-libsasl2-modules-db_2.1.27+dfsg-2_amd64.deb ...
Unpacking libsasl2-modules-db:amd64 (2.1.27+dfsg-2) ...
Selecting previously unselected package libsasl2-2:amd64.
Preparing to unpack .../139-libsasl2-2_2.1.27+dfsg-2_amd64.deb ...
Unpacking libsasl2-2:amd64 (2.1.27+dfsg-2) ...
Selecting previously unselected package libldap-2.4-2:amd64.
Preparing to unpack .../140-libldap-2.4-2_2.4.54+dfsg-1_amd64.deb ...
Unpacking libldap-2.4-2:amd64 (2.4.54+dfsg-1) ...
Selecting previously unselected package libnghttp2-14:amd64.
Preparing to unpack .../141-libnghttp2-14_1.41.0-3_amd64.deb ...
Unpacking libnghttp2-14:amd64 (1.41.0-3) ...
Selecting previously unselected package librtmp1:amd64.
Preparing to unpack .../142-librtmp1_2.4+20151223.gitfa8646d.1-2+b2_amd64.deb ...
Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Selecting previously unselected package libssh2-1:amd64.
Preparing to unpack .../143-libssh2-1_1.8.0-2.1_amd64.deb ...
Unpacking libssh2-1:amd64 (1.8.0-2.1) ...
Selecting previously unselected package libcurl3-gnutls:amd64.
Preparing to unpack .../144-libcurl3-gnutls_7.72.0-1_amd64.deb ...
Unpacking libcurl3-gnutls:amd64 (7.72.0-1) ...
Selecting previously unselected package libcurl4:amd64.
Preparing to unpack .../145-libcurl4_7.72.0-1_amd64.deb ...
Unpacking libcurl4:amd64 (7.72.0-1) ...
Selecting previously unselected package libexif12:amd64.
Preparing to unpack .../146-libexif12_0.6.22-2_amd64.deb ...
Unpacking libexif12:amd64 (0.6.22-2) ...
Selecting previously unselected package libxpm4:amd64.
Preparing to unpack .../147-libxpm4_1%3a3.5.12-1_amd64.deb ...
Unpacking libxpm4:amd64 (1:3.5.12-1) ...
Selecting previously unselected package libgd3:amd64.
Preparing to unpack .../148-libgd3_2.3.0-2_amd64.deb ...
Unpacking libgd3:amd64 (2.3.0-2) ...
Selecting previously unselected package libgphoto2-port12:amd64.
Preparing to unpack .../149-libgphoto2-port12_2.5.26-1_amd64.deb ...
Unpacking libgphoto2-port12:amd64 (2.5.26-1) ...
Selecting previously unselected package libgphoto2-6:amd64.
Preparing to unpack .../150-libgphoto2-6_2.5.26-1_amd64.deb ...
Unpacking libgphoto2-6:amd64 (2.5.26-1) ...
Selecting previously unselected package libieee1284-3:amd64.
Preparing to unpack .../151-libieee1284-3_0.2.11-14_amd64.deb ...
Unpacking libieee1284-3:amd64 (0.2.11-14) ...
Selecting previously unselected package libpoppler102:amd64.
Preparing to unpack .../152-libpoppler102_20.09.0-2_amd64.deb ...
Unpacking libpoppler102:amd64 (20.09.0-2) ...
Selecting previously unselected package libpoppler-glib8:amd64.
Preparing to unpack .../153-libpoppler-glib8_20.09.0-2_amd64.deb ...
Unpacking libpoppler-glib8:amd64 (20.09.0-2) ...
Selecting previously unselected package libsensors-config.
Preparing to unpack .../154-libsensors-config_1%3a3.6.0-2_all.deb ...
Unpacking libsensors-config (1:3.6.0-2) ...
Selecting previously unselected package libsensors5:amd64.
Preparing to unpack .../155-libsensors5_1%3a3.6.0-2_amd64.deb ...
Unpacking libsensors5:amd64 (1:3.6.0-2) ...
Selecting previously unselected package libwrap0:amd64.
Preparing to unpack .../156-libwrap0_7.6.q-30_amd64.deb ...
Unpacking libwrap0:amd64 (7.6.q-30) ...
Selecting previously unselected package libsnmp-base.
Preparing to unpack .../157-libsnmp-base_5.9+dfsg-3_all.deb ...
Unpacking libsnmp-base (5.9+dfsg-3) ...
Selecting previously unselected package libsnmp40:amd64.
Preparing to unpack .../158-libsnmp40_5.9+dfsg-3_amd64.deb ...
Unpacking libsnmp40:amd64 (5.9+dfsg-3) ...
Selecting previously unselected package libsane1:amd64.
Preparing to unpack .../159-libsane1_1.0.31-2_amd64.deb ...
Unpacking libsane1:amd64 (1.0.31-2) ...
Selecting previously unselected package libsane:amd64.
Preparing to unpack .../160-libsane_1.0.31-2_amd64.deb ...
Unpacking libsane:amd64 (1.0.31-2) ...
Selecting previously unselected package dbus-user-session.
Preparing to unpack .../161-dbus-user-session_1.12.20-1_amd64.deb ...
Unpacking dbus-user-session (1.12.20-1) ...
Selecting previously unselected package libdconf1:amd64.
Preparing to unpack .../162-libdconf1_0.38.0-1_amd64.deb ...
Unpacking libdconf1:amd64 (0.38.0-1) ...
Selecting previously unselected package dconf-service.
Preparing to unpack .../163-dconf-service_0.38.0-1_amd64.deb ...
Unpacking dconf-service (0.38.0-1) ...
Selecting previously unselected package dconf-gsettings-backend:amd64.
Preparing to unpack .../164-dconf-gsettings-backend_0.38.0-1_amd64.deb ...
Unpacking dconf-gsettings-backend:amd64 (0.38.0-1) ...
Selecting previously unselected package libpolkit-agent-1-0:amd64.
Preparing to unpack .../165-libpolkit-agent-1-0_0.105-29_amd64.deb ...
Unpacking libpolkit-agent-1-0:amd64 (0.105-29) ...
Selecting previously unselected package policykit-1.
Preparing to unpack .../166-policykit-1_0.105-29_amd64.deb ...
Unpacking policykit-1 (0.105-29) ...
Selecting previously unselected package colord-data.
Preparing to unpack .../167-colord-data_1.4.4-2_all.deb ...
Unpacking colord-data (1.4.4-2) ...
Selecting previously unselected package colord.
Preparing to unpack .../168-colord_1.4.4-2_amd64.deb ...
Unpacking colord (1.4.4-2) ...
Selecting previously unselected package libpopt0:amd64.
Preparing to unpack .../169-libpopt0_1.18-1_amd64.deb ...
Unpacking libpopt0:amd64 (1.18-1) ...
Selecting previously unselected package cryptsetup-bin.
Preparing to unpack .../170-cryptsetup-bin_2%3a2.3.4-1_amd64.deb ...
Unpacking cryptsetup-bin (2:2.3.4-1) ...
Selecting previously unselected package curl.
Preparing to unpack .../171-curl_7.72.0-1_amd64.deb ...
Unpacking curl (7.72.0-1) ...
Selecting previously unselected package db5.3-util.
Preparing to unpack .../172-db5.3-util_5.3.28+dfsg1-0.6_amd64.deb ...
Unpacking db5.3-util (5.3.28+dfsg1-0.6) ...
Selecting previously unselected package db-util.
Preparing to unpack .../173-db-util_5.3.1+nmu1_all.deb ...
Unpacking db-util (5.3.1+nmu1) ...
Selecting previously unselected package libtool.
Preparing to unpack .../174-libtool_2.4.6-14_all.deb ...
Unpacking libtool (2.4.6-14) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../175-dh-autoreconf_19_all.deb ...
Unpacking dh-autoreconf (19) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../176-libdebhelper-perl_13.2.1_all.deb ...
Unpacking libdebhelper-perl (13.2.1) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../177-libarchive-zip-perl_1.68-1_all.deb ...
Unpacking libarchive-zip-perl (1.68-1) ...
Selecting previously unselected package libsub-override-perl.
Preparing to unpack .../178-libsub-override-perl_0.09-2_all.deb ...
Unpacking libsub-override-perl (0.09-2) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../179-libfile-stripnondeterminism-perl_1.9.0-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.9.0-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../180-dh-strip-nondeterminism_1.9.0-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.9.0-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../181-dwz_0.13-5_amd64.deb ...
Unpacking dwz (0.13-5) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../182-libcroco3_0.6.13-1_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.13-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../183-gettext_0.19.8.1-10_amd64.deb ...
Unpacking gettext (0.19.8.1-10) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../184-intltool-debian_0.35.0+20060710.5_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.5) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../185-po-debconf_1.0.21_all.deb ...
Unpacking po-debconf (1.0.21) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../186-debhelper_13.2.1_all.deb ...
Unpacking debhelper (13.2.1) ...
Selecting previously unselected package debootstrap.
Preparing to unpack .../187-debootstrap_1.0.123_all.deb ...
Unpacking debootstrap (1.0.123) ...
Selecting previously unselected package openjdk-11-jdk-headless:amd64.
Preparing to unpack .../188-openjdk-11-jdk-headless_11.0.8+10-1.1_amd64.deb ...
Unpacking openjdk-11-jdk-headless:amd64 (11.0.8+10-1.1) ...
Selecting previously unselected package default-jdk-headless.
Preparing to unpack .../189-default-jdk-headless_2%3a1.11-72_amd64.deb ...
Unpacking default-jdk-headless (2:1.11-72) ...
Selecting previously unselected package libfdt1:amd64.
Preparing to unpack .../190-libfdt1_1.6.0-1_amd64.deb ...
Unpacking libfdt1:amd64 (1.6.0-1) ...
Selecting previously unselected package libyaml-0-2:amd64.
Preparing to unpack .../191-libyaml-0-2_0.2.2-1_amd64.deb ...
Unpacking libyaml-0-2:amd64 (0.2.2-1) ...
Selecting previously unselected package device-tree-compiler.
Preparing to unpack .../192-device-tree-compiler_1.6.0-1_amd64.deb ...
Unpacking device-tree-compiler (1.6.0-1) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../193-python3-lib2to3_3.8.6-1_all.deb ...
Unpacking python3-lib2to3 (3.8.6-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../194-python3-distutils_3.8.6-1_all.deb ...
Unpacking python3-distutils (3.8.6-1) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../195-dh-python_4.20200925_all.deb ...
Unpacking dh-python (4.20200925) ...
Selecting previously unselected package distro-info-data.
Preparing to unpack .../196-distro-info-data_0.44_all.deb ...
Unpacking distro-info-data (0.44) ...
Selecting previously unselected package xml-core.
Preparing to unpack .../197-xml-core_0.18+nmu1_all.deb ...
Unpacking xml-core (0.18+nmu1) ...
Selecting previously unselected package docutils-common.
Preparing to unpack .../198-docutils-common_0.16+dfsg-3_all.deb ...
Unpacking docutils-common (0.16+dfsg-3) ...
Selecting previously unselected package unzip.
Preparing to unpack .../199-unzip_6.0-25_amd64.deb ...
Unpacking unzip (6.0-25) ...
Selecting previously unselected package docx2txt.
Preparing to unpack .../200-docx2txt_1.4-2_all.deb ...
Unpacking docx2txt (1.4-2) ...
Selecting previously unselected package dosfstools.
Preparing to unpack .../201-dosfstools_4.1-2_amd64.deb ...
Unpacking dosfstools (4.1-2) ...
Selecting previously unselected package enjarify.
Preparing to unpack .../202-enjarify_1%3a1.0.3-4_all.deb ...
Unpacking enjarify (1:1.0.3-4) ...
Selecting previously unselected package exfat-fuse.
Preparing to unpack .../203-exfat-fuse_1.3.0-2_amd64.deb ...
Unpacking exfat-fuse (1.3.0-2) ...
Selecting previously unselected package exfat-utils.
Preparing to unpack .../204-exfat-utils_1.3.0-2_amd64.deb ...
Unpacking exfat-utils (1.3.0-2) ...
Selecting previously unselected package extlinux.
Preparing to unpack .../205-extlinux_3%3a6.04~git20190206.bf6db5b4+dfsg1-3_amd64.deb ...
Unpacking extlinux (3:6.04~git20190206.bf6db5b4+dfsg1-3) ...
Selecting previously unselected package libf2fs5:amd64.
Preparing to unpack .../206-libf2fs5_1.11.0-1.1_amd64.deb ...
Unpacking libf2fs5:amd64 (1.11.0-1.1) ...
Selecting previously unselected package libf2fs-format4:amd64.
Preparing to unpack .../207-libf2fs-format4_1.11.0-1.1_amd64.deb ...
Unpacking libf2fs-format4:amd64 (1.11.0-1.1) ...
Selecting previously unselected package f2fs-tools.
Preparing to unpack .../208-f2fs-tools_1.11.0-1.1_amd64.deb ...
Unpacking f2fs-tools (1.11.0-1.1) ...
Selecting previously unselected package libfakeroot:amd64.
Preparing to unpack .../209-libfakeroot_1.25.3-1_amd64.deb ...
Unpacking libfakeroot:amd64 (1.25.3-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../210-fakeroot_1.25.3-1_amd64.deb ...
Unpacking fakeroot (1.25.3-1) ...
Selecting previously unselected package libdrm-common.
Preparing to unpack .../211-libdrm-common_2.4.102-1_all.deb ...
Unpacking libdrm-common (2.4.102-1) ...
Selecting previously unselected package libdrm2:amd64.
Preparing to unpack .../212-libdrm2_2.4.102-1_amd64.deb ...
Unpacking libdrm2:amd64 (2.4.102-1) ...
Selecting previously unselected package libva2:amd64.
Preparing to unpack .../213-libva2_2.9.0-1_amd64.deb ...
Unpacking libva2:amd64 (2.9.0-1) ...
Selecting previously unselected package libmfx1:amd64.
Preparing to unpack .../214-libmfx1_20.3.0-1_amd64.deb ...
Unpacking libmfx1:amd64 (20.3.0-1) ...
Selecting previously unselected package libva-drm2:amd64.
Preparing to unpack .../215-libva-drm2_2.9.0-1_amd64.deb ...
Unpacking libva-drm2:amd64 (2.9.0-1) ...
Selecting previously unselected package libxfixes3:amd64.
Preparing to unpack .../216-libxfixes3_1%3a5.0.3-2_amd64.deb ...
Unpacking libxfixes3:amd64 (1:5.0.3-2) ...
Selecting previously unselected package libva-x11-2:amd64.
Preparing to unpack .../217-libva-x11-2_2.9.0-1_amd64.deb ...
Unpacking libva-x11-2:amd64 (2.9.0-1) ...
Selecting previously unselected package libvdpau1:amd64.
Preparing to unpack .../218-libvdpau1_1.4-2_amd64.deb ...
Unpacking libvdpau1:amd64 (1.4-2) ...
Selecting previously unselected package ocl-icd-libopencl1:amd64.
Preparing to unpack .../219-ocl-icd-libopencl1_2.2.12-4_amd64.deb ...
Unpacking ocl-icd-libopencl1:amd64 (2.2.12-4) ...
Selecting previously unselected package libavutil56:amd64.
Preparing to unpack .../220-libavutil56_7%3a4.3.1-4_amd64.deb ...
Unpacking libavutil56:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libcodec2-0.9:amd64.
Preparing to unpack .../221-libcodec2-0.9_0.9.2-3_amd64.deb ...
Unpacking libcodec2-0.9:amd64 (0.9.2-3) ...
Selecting previously unselected package libgsm1:amd64.
Preparing to unpack .../222-libgsm1_1.0.18-2_amd64.deb ...
Unpacking libgsm1:amd64 (1.0.18-2) ...
Selecting previously unselected package libmp3lame0:amd64.
Preparing to unpack .../223-libmp3lame0_3.100-3_amd64.deb ...
Unpacking libmp3lame0:amd64 (3.100-3) ...
Selecting previously unselected package libopus0:amd64.
Preparing to unpack .../224-libopus0_1.3.1-0.1_amd64.deb ...
Unpacking libopus0:amd64 (1.3.1-0.1) ...
Selecting previously unselected package libcairo-gobject2:amd64.
Preparing to unpack .../225-libcairo-gobject2_1.16.0-4_amd64.deb ...
Unpacking libcairo-gobject2:amd64 (1.16.0-4) ...
Selecting previously unselected package fontconfig.
Preparing to unpack .../226-fontconfig_2.13.1-4.2_amd64.deb ...
Unpacking fontconfig (2.13.1-4.2) ...
Selecting previously unselected package libfribidi0:amd64.
Preparing to unpack .../227-libfribidi0_1.0.8-2_amd64.deb ...
Unpacking libfribidi0:amd64 (1.0.8-2) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../228-libgraphite2-3_1.3.14-1_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.14-1) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../229-libharfbuzz0b_2.6.7-1_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (2.6.7-1) ...
Selecting previously unselected package libthai-data.
Preparing to unpack .../230-libthai-data_0.1.28-3_all.deb ...
Unpacking libthai-data (0.1.28-3) ...
Selecting previously unselected package libdatrie1:amd64.
Preparing to unpack .../231-libdatrie1_0.2.12-3_amd64.deb ...
Unpacking libdatrie1:amd64 (0.2.12-3) ...
Selecting previously unselected package libthai0:amd64.
Preparing to unpack .../232-libthai0_0.1.28-3_amd64.deb ...
Unpacking libthai0:amd64 (0.1.28-3) ...
Selecting previously unselected package libpango-1.0-0:amd64.
Preparing to unpack .../233-libpango-1.0-0_1.46.2-1_amd64.deb ...
Unpacking libpango-1.0-0:amd64 (1.46.2-1) ...
Selecting previously unselected package libpangoft2-1.0-0:amd64.
Preparing to unpack .../234-libpangoft2-1.0-0_1.46.2-1_amd64.deb ...
Unpacking libpangoft2-1.0-0:amd64 (1.46.2-1) ...
Selecting previously unselected package libpangocairo-1.0-0:amd64.
Preparing to unpack .../235-libpangocairo-1.0-0_1.46.2-1_amd64.deb ...
Unpacking libpangocairo-1.0-0:amd64 (1.46.2-1) ...
Selecting previously unselected package librsvg2-2:amd64.
Preparing to unpack .../236-librsvg2-2_2.50.1+dfsg-1_amd64.deb ...
Unpacking librsvg2-2:amd64 (2.50.1+dfsg-1) ...
Selecting previously unselected package libshine3:amd64.
Preparing to unpack .../237-libshine3_3.1.1-2_amd64.deb ...
Unpacking libshine3:amd64 (3.1.1-2) ...
Selecting previously unselected package libsnappy1v5:amd64.
Preparing to unpack .../238-libsnappy1v5_1.1.8-1_amd64.deb ...
Unpacking libsnappy1v5:amd64 (1.1.8-1) ...
Selecting previously unselected package libspeex1:amd64.
Preparing to unpack .../239-libspeex1_1.2~rc1.2-1.1_amd64.deb ...
Unpacking libspeex1:amd64 (1.2~rc1.2-1.1) ...
Selecting previously unselected package libsoxr0:amd64.
Preparing to unpack .../240-libsoxr0_0.1.3-4_amd64.deb ...
Unpacking libsoxr0:amd64 (0.1.3-4) ...
Selecting previously unselected package libswresample3:amd64.
Preparing to unpack .../241-libswresample3_7%3a4.3.1-4_amd64.deb ...
Unpacking libswresample3:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libogg0:amd64.
Preparing to unpack .../242-libogg0_1.3.2-1+b1_amd64.deb ...
Unpacking libogg0:amd64 (1.3.2-1+b1) ...
Selecting previously unselected package libtheora0:amd64.
Preparing to unpack .../243-libtheora0_1.1.1+dfsg.1-15_amd64.deb ...
Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15) ...
Selecting previously unselected package libtwolame0:amd64.
Preparing to unpack .../244-libtwolame0_0.4.0-2_amd64.deb ...
Unpacking libtwolame0:amd64 (0.4.0-2) ...
Selecting previously unselected package libvorbis0a:amd64.
Preparing to unpack .../245-libvorbis0a_1.3.7-1_amd64.deb ...
Unpacking libvorbis0a:amd64 (1.3.7-1) ...
Selecting previously unselected package libvorbisenc2:amd64.
Preparing to unpack .../246-libvorbisenc2_1.3.7-1_amd64.deb ...
Unpacking libvorbisenc2:amd64 (1.3.7-1) ...
Selecting previously unselected package libvpx6:amd64.
Preparing to unpack .../247-libvpx6_1.8.2-1_amd64.deb ...
Unpacking libvpx6:amd64 (1.8.2-1) ...
Selecting previously unselected package libwavpack1:amd64.
Preparing to unpack .../248-libwavpack1_5.3.0-1_amd64.deb ...
Unpacking libwavpack1:amd64 (5.3.0-1) ...
Selecting previously unselected package libx264-160:amd64.
Preparing to unpack .../249-libx264-160_2%3a0.160.3011+gitcde9a93-2_amd64.deb ...
Unpacking libx264-160:amd64 (2:0.160.3011+gitcde9a93-2) ...
Selecting previously unselected package libxvidcore4:amd64.
Preparing to unpack .../250-libxvidcore4_2%3a1.3.7-1_amd64.deb ...
Unpacking libxvidcore4:amd64 (2:1.3.7-1) ...
Selecting previously unselected package libzvbi-common.
Preparing to unpack .../251-libzvbi-common_0.2.35-18_all.deb ...
Unpacking libzvbi-common (0.2.35-18) ...
Selecting previously unselected package libzvbi0:amd64.
Preparing to unpack .../252-libzvbi0_0.2.35-18_amd64.deb ...
Unpacking libzvbi0:amd64 (0.2.35-18) ...
Selecting previously unselected package libavcodec58:amd64.
Preparing to unpack .../253-libavcodec58_7%3a4.3.1-4_amd64.deb ...
Unpacking libavcodec58:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libraw1394-11:amd64.
Preparing to unpack .../254-libraw1394-11_2.1.2-2_amd64.deb ...
Unpacking libraw1394-11:amd64 (2.1.2-2) ...
Selecting previously unselected package libavc1394-0:amd64.
Preparing to unpack .../255-libavc1394-0_0.5.4-5_amd64.deb ...
Unpacking libavc1394-0:amd64 (0.5.4-5) ...
Selecting previously unselected package libass9:amd64.
Preparing to unpack .../256-libass9_1%3a0.14.0-2_amd64.deb ...
Unpacking libass9:amd64 (1:0.14.0-2) ...
Selecting previously unselected package libbluray2:amd64.
Preparing to unpack .../257-libbluray2_1%3a1.2.0-3_amd64.deb ...
Unpacking libbluray2:amd64 (1:1.2.0-3) ...
Selecting previously unselected package libchromaprint1:amd64.
Preparing to unpack .../258-libchromaprint1_1.5.0-1_amd64.deb ...
Unpacking libchromaprint1:amd64 (1.5.0-1) ...
Selecting previously unselected package libgme0:amd64.
Preparing to unpack .../259-libgme0_0.6.3-2_amd64.deb ...
Unpacking libgme0:amd64 (0.6.3-2) ...
Selecting previously unselected package libmpg123-0:amd64.
Preparing to unpack .../260-libmpg123-0_1.26.3-1_amd64.deb ...
Unpacking libmpg123-0:amd64 (1.26.3-1) ...
Selecting previously unselected package libvorbisfile3:amd64.
Preparing to unpack .../261-libvorbisfile3_1.3.7-1_amd64.deb ...
Unpacking libvorbisfile3:amd64 (1.3.7-1) ...
Selecting previously unselected package libopenmpt0:amd64.
Preparing to unpack .../262-libopenmpt0_0.4.11-1_amd64.deb ...
Unpacking libopenmpt0:amd64 (0.4.11-1) ...
Selecting previously unselected package librabbitmq4:amd64.
Preparing to unpack .../263-librabbitmq4_0.10.0-1_amd64.deb ...
Unpacking librabbitmq4:amd64 (0.10.0-1) ...
Selecting previously unselected package libsrt1-gnutls:amd64.
Preparing to unpack .../264-libsrt1-gnutls_1.4.2-1_amd64.deb ...
Unpacking libsrt1-gnutls:amd64 (1.4.2-1) ...
Selecting previously unselected package libssh-gcrypt-4:amd64.
Preparing to unpack .../265-libssh-gcrypt-4_0.9.4-1_amd64.deb ...
Unpacking libssh-gcrypt-4:amd64 (0.9.4-1) ...
Selecting previously unselected package libnorm1:amd64.
Preparing to unpack .../266-libnorm1_1.5.8+dfsg2-2_amd64.deb ...
Unpacking libnorm1:amd64 (1.5.8+dfsg2-2) ...
Selecting previously unselected package libpgm-5.3-0:amd64.
Preparing to unpack .../267-libpgm-5.3-0_5.3.128~dfsg-2_amd64.deb ...
Unpacking libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ...
Selecting previously unselected package libsodium23:amd64.
Preparing to unpack .../268-libsodium23_1.0.18-1_amd64.deb ...
Unpacking libsodium23:amd64 (1.0.18-1) ...
Selecting previously unselected package libzmq5:amd64.
Preparing to unpack .../269-libzmq5_4.3.3-2+b1_amd64.deb ...
Unpacking libzmq5:amd64 (4.3.3-2+b1) ...
Selecting previously unselected package libavformat58:amd64.
Preparing to unpack .../270-libavformat58_7%3a4.3.1-4_amd64.deb ...
Unpacking libavformat58:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libbs2b0:amd64.
Preparing to unpack .../271-libbs2b0_3.1.0+dfsg-2.2+b1_amd64.deb ...
Unpacking libbs2b0:amd64 (3.1.0+dfsg-2.2+b1) ...
Selecting previously unselected package libflite1:amd64.
Preparing to unpack .../272-libflite1_2.2-1_amd64.deb ...
Unpacking libflite1:amd64 (2.2-1) ...
Selecting previously unselected package libserd-0-0:amd64.
Preparing to unpack .../273-libserd-0-0_0.30.6-1_amd64.deb ...
Unpacking libserd-0-0:amd64 (0.30.6-1) ...
Selecting previously unselected package libsord-0-0:amd64.
Preparing to unpack .../274-libsord-0-0_0.16.6-1_amd64.deb ...
Unpacking libsord-0-0:amd64 (0.16.6-1) ...
Selecting previously unselected package libsratom-0-0:amd64.
Preparing to unpack .../275-libsratom-0-0_0.6.6-1_amd64.deb ...
Unpacking libsratom-0-0:amd64 (0.6.6-1) ...
Selecting previously unselected package liblilv-0-0:amd64.
Preparing to unpack .../276-liblilv-0-0_0.24.10-1_amd64.deb ...
Unpacking liblilv-0-0:amd64 (0.24.10-1) ...
Selecting previously unselected package libmysofa1:amd64.
Preparing to unpack .../277-libmysofa1_1.1~dfsg1-1_amd64.deb ...
Unpacking libmysofa1:amd64 (1.1~dfsg1-1) ...
Selecting previously unselected package libblas3:amd64.
Preparing to unpack .../278-libblas3_3.9.0-3_amd64.deb ...
Unpacking libblas3:amd64 (3.9.0-3) ...
Selecting previously unselected package libgfortran5:amd64.
Preparing to unpack .../279-libgfortran5_10.2.0-15_amd64.deb ...
Unpacking libgfortran5:amd64 (10.2.0-15) ...
Selecting previously unselected package liblapack3:amd64.
Preparing to unpack .../280-liblapack3_3.9.0-3_amd64.deb ...
Unpacking liblapack3:amd64 (3.9.0-3) ...
Selecting previously unselected package libasyncns0:amd64.
Preparing to unpack .../281-libasyncns0_0.8-6+b1_amd64.deb ...
Unpacking libasyncns0:amd64 (0.8-6+b1) ...
Selecting previously unselected package libflac8:amd64.
Preparing to unpack .../282-libflac8_1.3.3-1_amd64.deb ...
Unpacking libflac8:amd64 (1.3.3-1) ...
Selecting previously unselected package libsndfile1:amd64.
Preparing to unpack .../283-libsndfile1_1.0.28-8_amd64.deb ...
Unpacking libsndfile1:amd64 (1.0.28-8) ...
Selecting previously unselected package libpulse0:amd64.
Preparing to unpack .../284-libpulse0_13.0-5_amd64.deb ...
Unpacking libpulse0:amd64 (13.0-5) ...
Selecting previously unselected package libsphinxbase3:amd64.
Preparing to unpack .../285-libsphinxbase3_0.8+5prealpha+1-11+b1_amd64.deb ...
Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-11+b1) ...
Selecting previously unselected package libpocketsphinx3:amd64.
Preparing to unpack .../286-libpocketsphinx3_0.8+5prealpha+1-12_amd64.deb ...
Unpacking libpocketsphinx3:amd64 (0.8+5prealpha+1-12) ...
Selecting previously unselected package libpostproc55:amd64.
Preparing to unpack .../287-libpostproc55_7%3a4.3.1-4_amd64.deb ...
Unpacking libpostproc55:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libsamplerate0:amd64.
Preparing to unpack .../288-libsamplerate0_0.1.9-2_amd64.deb ...
Unpacking libsamplerate0:amd64 (0.1.9-2) ...
Selecting previously unselected package librubberband2:amd64.
Preparing to unpack .../289-librubberband2_1.9.0-1_amd64.deb ...
Unpacking librubberband2:amd64 (1.9.0-1) ...
Selecting previously unselected package libswscale5:amd64.
Preparing to unpack .../290-libswscale5_7%3a4.3.1-4_amd64.deb ...
Unpacking libswscale5:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libvidstab1.1:amd64.
Preparing to unpack .../291-libvidstab1.1_1.1.0-2+b1_amd64.deb ...
Unpacking libvidstab1.1:amd64 (1.1.0-2+b1) ...
Selecting previously unselected package libavfilter7:amd64.
Preparing to unpack .../292-libavfilter7_7%3a4.3.1-4_amd64.deb ...
Unpacking libavfilter7:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libcdio19:amd64.
Preparing to unpack .../293-libcdio19_2.1.0-2_amd64.deb ...
Unpacking libcdio19:amd64 (2.1.0-2) ...
Selecting previously unselected package libcdio-cdda2:amd64.
Preparing to unpack .../294-libcdio-cdda2_10.2+2.0.0-1+b2_amd64.deb ...
Unpacking libcdio-cdda2:amd64 (10.2+2.0.0-1+b2) ...
Selecting previously unselected package libcdio-paranoia2:amd64.
Preparing to unpack .../295-libcdio-paranoia2_10.2+2.0.0-1+b2_amd64.deb ...
Unpacking libcdio-paranoia2:amd64 (10.2+2.0.0-1+b2) ...
Selecting previously unselected package libdc1394-25:amd64.
Preparing to unpack .../296-libdc1394-25_2.2.6-3_amd64.deb ...
Unpacking libdc1394-25:amd64 (2.2.6-3) ...
Selecting previously unselected package libglvnd0:amd64.
Preparing to unpack .../297-libglvnd0_1.3.2-1_amd64.deb ...
Unpacking libglvnd0:amd64 (1.3.2-1) ...
Selecting previously unselected package libglapi-mesa:amd64.
Preparing to unpack .../298-libglapi-mesa_20.2.1-1_amd64.deb ...
Unpacking libglapi-mesa:amd64 (20.2.1-1) ...
Selecting previously unselected package libxcb-dri2-0:amd64.
Preparing to unpack .../299-libxcb-dri2-0_1.14-2_amd64.deb ...
Unpacking libxcb-dri2-0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-dri3-0:amd64.
Preparing to unpack .../300-libxcb-dri3-0_1.14-2_amd64.deb ...
Unpacking libxcb-dri3-0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-glx0:amd64.
Preparing to unpack .../301-libxcb-glx0_1.14-2_amd64.deb ...
Unpacking libxcb-glx0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-present0:amd64.
Preparing to unpack .../302-libxcb-present0_1.14-2_amd64.deb ...
Unpacking libxcb-present0:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-sync1:amd64.
Preparing to unpack .../303-libxcb-sync1_1.14-2_amd64.deb ...
Unpacking libxcb-sync1:amd64 (1.14-2) ...
Selecting previously unselected package libxcb-xfixes0:amd64.
Preparing to unpack .../304-libxcb-xfixes0_1.14-2_amd64.deb ...
Unpacking libxcb-xfixes0:amd64 (1.14-2) ...
Selecting previously unselected package libxdamage1:amd64.
Preparing to unpack .../305-libxdamage1_1%3a1.1.5-2_amd64.deb ...
Unpacking libxdamage1:amd64 (1:1.1.5-2) ...
Selecting previously unselected package libxshmfence1:amd64.
Preparing to unpack .../306-libxshmfence1_1.3-1_amd64.deb ...
Unpacking libxshmfence1:amd64 (1.3-1) ...
Selecting previously unselected package libxxf86vm1:amd64.
Preparing to unpack .../307-libxxf86vm1_1%3a1.1.4-1+b2_amd64.deb ...
Unpacking libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
Selecting previously unselected package libdrm-amdgpu1:amd64.
Preparing to unpack .../308-libdrm-amdgpu1_2.4.102-1_amd64.deb ...
Unpacking libdrm-amdgpu1:amd64 (2.4.102-1) ...
Selecting previously unselected package libpciaccess0:amd64.
Preparing to unpack .../309-libpciaccess0_0.16-1_amd64.deb ...
Unpacking libpciaccess0:amd64 (0.16-1) ...
Selecting previously unselected package libdrm-intel1:amd64.
Preparing to unpack .../310-libdrm-intel1_2.4.102-1_amd64.deb ...
Unpacking libdrm-intel1:amd64 (2.4.102-1) ...
Selecting previously unselected package libdrm-nouveau2:amd64.
Preparing to unpack .../311-libdrm-nouveau2_2.4.102-1_amd64.deb ...
Unpacking libdrm-nouveau2:amd64 (2.4.102-1) ...
Selecting previously unselected package libdrm-radeon1:amd64.
Preparing to unpack .../312-libdrm-radeon1_2.4.102-1_amd64.deb ...
Unpacking libdrm-radeon1:amd64 (2.4.102-1) ...
Selecting previously unselected package libz3-4:amd64.
Preparing to unpack .../313-libz3-4_4.8.9-1_amd64.deb ...
Unpacking libz3-4:amd64 (4.8.9-1) ...
Selecting previously unselected package libllvm11:amd64.
Preparing to unpack .../314-libllvm11_1%3a11.0.0-2_amd64.deb ...
Unpacking libllvm11:amd64 (1:11.0.0-2) ...
Selecting previously unselected package libvulkan1:amd64.
Preparing to unpack .../315-libvulkan1_1.2.154.1-1_amd64.deb ...
Unpacking libvulkan1:amd64 (1.2.154.1-1) ...
Selecting previously unselected package libgl1-mesa-dri:amd64.
Preparing to unpack .../316-libgl1-mesa-dri_20.2.1-1_amd64.deb ...
Unpacking libgl1-mesa-dri:amd64 (20.2.1-1) ...
Selecting previously unselected package libglx-mesa0:amd64.
Preparing to unpack .../317-libglx-mesa0_20.2.1-1_amd64.deb ...
Unpacking libglx-mesa0:amd64 (20.2.1-1) ...
Selecting previously unselected package libglx0:amd64.
Preparing to unpack .../318-libglx0_1.3.2-1_amd64.deb ...
Unpacking libglx0:amd64 (1.3.2-1) ...
Selecting previously unselected package libgl1:amd64.
Preparing to unpack .../319-libgl1_1.3.2-1_amd64.deb ...
Unpacking libgl1:amd64 (1.3.2-1) ...
Selecting previously unselected package libiec61883-0:amd64.
Preparing to unpack .../320-libiec61883-0_1.2.0-3_amd64.deb ...
Unpacking libiec61883-0:amd64 (1.2.0-3) ...
Selecting previously unselected package libjack-jackd2-0:amd64.
Preparing to unpack .../321-libjack-jackd2-0_1.9.16~dfsg-1_amd64.deb ...
Unpacking libjack-jackd2-0:amd64 (1.9.16~dfsg-1) ...
Selecting previously unselected package libopenal-data.
Preparing to unpack .../322-libopenal-data_1%3a1.19.1-2_all.deb ...
Unpacking libopenal-data (1:1.19.1-2) ...
Selecting previously unselected package libsndio7.0:amd64.
Preparing to unpack .../323-libsndio7.0_1.5.0-3_amd64.deb ...
Unpacking libsndio7.0:amd64 (1.5.0-3) ...
Selecting previously unselected package libopenal1:amd64.
Preparing to unpack .../324-libopenal1_1%3a1.19.1-2_amd64.deb ...
Unpacking libopenal1:amd64 (1:1.19.1-2) ...
Selecting previously unselected package libwayland-server0:amd64.
Preparing to unpack .../325-libwayland-server0_1.18.0-2~exp1.1_amd64.deb ...
Unpacking libwayland-server0:amd64 (1.18.0-2~exp1.1) ...
Selecting previously unselected package libgbm1:amd64.
Preparing to unpack .../326-libgbm1_20.2.1-1_amd64.deb ...
Unpacking libgbm1:amd64 (20.2.1-1) ...
Selecting previously unselected package libwayland-client0:amd64.
Preparing to unpack .../327-libwayland-client0_1.18.0-2~exp1.1_amd64.deb ...
Unpacking libwayland-client0:amd64 (1.18.0-2~exp1.1) ...
Selecting previously unselected package libwayland-cursor0:amd64.
Preparing to unpack .../328-libwayland-cursor0_1.18.0-2~exp1.1_amd64.deb ...
Unpacking libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ...
Selecting previously unselected package libwayland-egl1:amd64.
Preparing to unpack .../329-libwayland-egl1_1.18.0-2~exp1.1_amd64.deb ...
Unpacking libwayland-egl1:amd64 (1.18.0-2~exp1.1) ...
Selecting previously unselected package libxcursor1:amd64.
Preparing to unpack .../330-libxcursor1_1%3a1.2.0-2_amd64.deb ...
Unpacking libxcursor1:amd64 (1:1.2.0-2) ...
Selecting previously unselected package libxinerama1:amd64.
Preparing to unpack .../331-libxinerama1_2%3a1.1.4-2_amd64.deb ...
Unpacking libxinerama1:amd64 (2:1.1.4-2) ...
Selecting previously unselected package xkb-data.
Preparing to unpack .../332-xkb-data_2.29-2_all.deb ...
Unpacking xkb-data (2.29-2) ...
Selecting previously unselected package libxkbcommon0:amd64.
Preparing to unpack .../333-libxkbcommon0_1.0.1-1_amd64.deb ...
Unpacking libxkbcommon0:amd64 (1.0.1-1) ...
Selecting previously unselected package libxrandr2:amd64.
Preparing to unpack .../334-libxrandr2_2%3a1.5.1-1_amd64.deb ...
Unpacking libxrandr2:amd64 (2:1.5.1-1) ...
Selecting previously unselected package libxss1:amd64.
Preparing to unpack .../335-libxss1_1%3a1.2.3-1_amd64.deb ...
Unpacking libxss1:amd64 (1:1.2.3-1) ...
Selecting previously unselected package libsdl2-2.0-0:amd64.
Preparing to unpack .../336-libsdl2-2.0-0_2.0.12+dfsg1-4_amd64.deb ...
Unpacking libsdl2-2.0-0:amd64 (2.0.12+dfsg1-4) ...
Selecting previously unselected package libxcb-shape0:amd64.
Preparing to unpack .../337-libxcb-shape0_1.14-2_amd64.deb ...
Unpacking libxcb-shape0:amd64 (1.14-2) ...
Selecting previously unselected package libxv1:amd64.
Preparing to unpack .../338-libxv1_2%3a1.0.11-1_amd64.deb ...
Unpacking libxv1:amd64 (2:1.0.11-1) ...
Selecting previously unselected package libavdevice58:amd64.
Preparing to unpack .../339-libavdevice58_7%3a4.3.1-4_amd64.deb ...
Unpacking libavdevice58:amd64 (7:4.3.1-4) ...
Selecting previously unselected package libavresample4:amd64.
Preparing to unpack .../340-libavresample4_7%3a4.3.1-4_amd64.deb ...
Unpacking libavresample4:amd64 (7:4.3.1-4) ...
Selecting previously unselected package ffmpeg.
Preparing to unpack .../341-ffmpeg_7%3a4.3.1-4_amd64.deb ...
Unpacking ffmpeg (7:4.3.1-4) ...
Selecting previously unselected package python3-mccabe.
Preparing to unpack .../342-python3-mccabe_0.6.1-3_all.deb ...
Unpacking python3-mccabe (0.6.1-3) ...
Selecting previously unselected package python3-pycodestyle.
Preparing to unpack .../343-python3-pycodestyle_2.6.0-1_all.deb ...
Unpacking python3-pycodestyle (2.6.0-1) ...
Selecting previously unselected package python3-pyflakes.
Preparing to unpack .../344-python3-pyflakes_2.2.0-1_all.deb ...
Unpacking python3-pyflakes (2.2.0-1) ...
Selecting previously unselected package python3-setuptools.
Preparing to unpack .../345-python3-setuptools_50.3.0-1_all.deb ...
Unpacking python3-setuptools (50.3.0-1) ...
Selecting previously unselected package python3-flake8.
Preparing to unpack .../346-python3-flake8_3.8.3-1_all.deb ...
Unpacking python3-flake8 (3.8.3-1) ...
Selecting previously unselected package flake8.
Preparing to unpack .../347-flake8_3.8.3-1_all.deb ...
Unpacking flake8 (3.8.3-1) ...
Selecting previously unselected package fontforge-common.
Preparing to unpack .../348-fontforge-common_1%3a20190801~dfsg-5_all.deb ...
Unpacking fontforge-common (1:20190801~dfsg-5) ...
Selecting previously unselected package libpython3.8:amd64.
Preparing to unpack .../349-libpython3.8_3.8.6-1_amd64.deb ...
Unpacking libpython3.8:amd64 (3.8.6-1) ...
Selecting previously unselected package libspiro1:amd64.
Preparing to unpack .../350-libspiro1_1%3a20200505-2_amd64.deb ...
Unpacking libspiro1:amd64 (1:20200505-2) ...
Selecting previously unselected package libuninameslist1:amd64.
Preparing to unpack .../351-libuninameslist1_20200413-1_amd64.deb ...
Unpacking libuninameslist1:amd64 (20200413-1) ...
Selecting previously unselected package libfontforge3.
Preparing to unpack .../352-libfontforge3_1%3a20190801~dfsg-5_amd64.deb ...
Unpacking libfontforge3 (1:20190801~dfsg-5) ...
Selecting previously unselected package libatk1.0-data.
Preparing to unpack .../353-libatk1.0-data_2.36.0-2_all.deb ...
Unpacking libatk1.0-data (2.36.0-2) ...
Selecting previously unselected package libatk1.0-0:amd64.
Preparing to unpack .../354-libatk1.0-0_2.36.0-2_amd64.deb ...
Unpacking libatk1.0-0:amd64 (2.36.0-2) ...
Selecting previously unselected package libatspi2.0-0:amd64.
Preparing to unpack .../355-libatspi2.0-0_2.38.0-2_amd64.deb ...
Unpacking libatspi2.0-0:amd64 (2.38.0-2) ...
Selecting previously unselected package libatk-bridge2.0-0:amd64.
Preparing to unpack .../356-libatk-bridge2.0-0_2.38.0-1_amd64.deb ...
Unpacking libatk-bridge2.0-0:amd64 (2.38.0-1) ...
Selecting previously unselected package libepoxy0:amd64.
Preparing to unpack .../357-libepoxy0_1.5.4-1_amd64.deb ...
Unpacking libepoxy0:amd64 (1.5.4-1) ...
Selecting previously unselected package libjson-glib-1.0-common.
Preparing to unpack .../358-libjson-glib-1.0-common_1.6.0-1_all.deb ...
Unpacking libjson-glib-1.0-common (1.6.0-1) ...
Selecting previously unselected package libjson-glib-1.0-0:amd64.
Preparing to unpack .../359-libjson-glib-1.0-0_1.6.0-1_amd64.deb ...
Unpacking libjson-glib-1.0-0:amd64 (1.6.0-1) ...
Selecting previously unselected package libproxy1v5:amd64.
Preparing to unpack .../360-libproxy1v5_0.4.15-14_amd64.deb ...
Unpacking libproxy1v5:amd64 (0.4.15-14) ...
Selecting previously unselected package glib-networking-common.
Preparing to unpack .../361-glib-networking-common_2.66.0-2_all.deb ...
Unpacking glib-networking-common (2.66.0-2) ...
Selecting previously unselected package glib-networking-services.
Preparing to unpack .../362-glib-networking-services_2.66.0-2_amd64.deb ...
Unpacking glib-networking-services (2.66.0-2) ...
Selecting previously unselected package gsettings-desktop-schemas.
Preparing to unpack .../363-gsettings-desktop-schemas_3.38.0-2_all.deb ...
Unpacking gsettings-desktop-schemas (3.38.0-2) ...
Selecting previously unselected package glib-networking:amd64.
Preparing to unpack .../364-glib-networking_2.66.0-2_amd64.deb ...
Unpacking glib-networking:amd64 (2.66.0-2) ...
Selecting previously unselected package libsoup2.4-1:amd64.
Preparing to unpack .../365-libsoup2.4-1_2.72.0-2_amd64.deb ...
Unpacking libsoup2.4-1:amd64 (2.72.0-2) ...
Selecting previously unselected package libsoup-gnome2.4-1:amd64.
Preparing to unpack .../366-libsoup-gnome2.4-1_2.72.0-2_amd64.deb ...
Unpacking libsoup-gnome2.4-1:amd64 (2.72.0-2) ...
Selecting previously unselected package librest-0.7-0:amd64.
Preparing to unpack .../367-librest-0.7-0_0.8.1-1+b1_amd64.deb ...
Unpacking librest-0.7-0:amd64 (0.8.1-1+b1) ...
Selecting previously unselected package libxcomposite1:amd64.
Preparing to unpack .../368-libxcomposite1_1%3a0.4.5-1_amd64.deb ...
Unpacking libxcomposite1:amd64 (1:0.4.5-1) ...
Selecting previously unselected package libgtk-3-common.
Preparing to unpack .../369-libgtk-3-common_3.24.23-2_all.deb ...
Unpacking libgtk-3-common (3.24.23-2) ...
Selecting previously unselected package libgtk-3-0:amd64.
Preparing to unpack .../370-libgtk-3-0_3.24.23-2_amd64.deb ...
Unpacking libgtk-3-0:amd64 (3.24.23-2) ...
Selecting previously unselected package libgdraw6.
Preparing to unpack .../371-libgdraw6_1%3a20190801~dfsg-5_amd64.deb ...
Unpacking libgdraw6 (1:20190801~dfsg-5) ...
Selecting previously unselected package fontforge-extras.
Preparing to unpack .../372-fontforge-extras_1%3a20190801~dfsg-5_amd64.deb ...
Unpacking fontforge-extras (1:20190801~dfsg-5) ...
Selecting previously unselected package fpc-source-3.2.0.
Preparing to unpack .../373-fpc-source-3.2.0_3.2.0+dfsg-8_all.deb ...
Unpacking fpc-source-3.2.0 (3.2.0+dfsg-8) ...
Selecting previously unselected package fp-utils-3.2.0.
Preparing to unpack .../374-fp-utils-3.2.0_3.2.0+dfsg-8_amd64.deb ...
Unpacking fp-utils-3.2.0 (3.2.0+dfsg-8) ...
Selecting previously unselected package fp-utils.
Preparing to unpack .../375-fp-utils_3.2.0+dfsg-8_all.deb ...
Unpacking fp-utils (3.2.0+dfsg-8) ...
Selecting previously unselected package gdisk.
Preparing to unpack .../376-gdisk_1.0.5-1_amd64.deb ...
Unpacking gdisk (1.0.5-1) ...
Selecting previously unselected package genisoimage.
Preparing to unpack .../377-genisoimage_9%3a1.1.11-3.1_amd64.deb ...
Unpacking genisoimage (9:1.1.11-3.1) ...
Selecting previously unselected package libgs9-common.
Preparing to unpack .../378-libgs9-common_9.53.3~dfsg-4_all.deb ...
Unpacking libgs9-common (9.53.3~dfsg-4) ...
Selecting previously unselected package libidn11:amd64.
Preparing to unpack .../379-libidn11_1.33-2.4_amd64.deb ...
Unpacking libidn11:amd64 (1.33-2.4) ...
Selecting previously unselected package libijs-0.35:amd64.
Preparing to unpack .../380-libijs-0.35_0.35-15_amd64.deb ...
Unpacking libijs-0.35:amd64 (0.35-15) ...
Selecting previously unselected package libjbig2dec0:amd64.
Preparing to unpack .../381-libjbig2dec0_0.19-1_amd64.deb ...
Unpacking libjbig2dec0:amd64 (0.19-1) ...
Selecting previously unselected package libpaper1:amd64.
Preparing to unpack .../382-libpaper1_1.1.28+b1_amd64.deb ...
Unpacking libpaper1:amd64 (1.1.28+b1) ...
Selecting previously unselected package libgs9:amd64.
Preparing to unpack .../383-libgs9_9.53.3~dfsg-4_amd64.deb ...
Unpacking libgs9:amd64 (9.53.3~dfsg-4) ...
Selecting previously unselected package ghostscript.
Preparing to unpack .../384-ghostscript_9.53.3~dfsg-4_amd64.deb ...
Unpacking ghostscript (9.53.3~dfsg-4) ...
Selecting previously unselected package libperl4-corelibs-perl.
Preparing to unpack .../385-libperl4-corelibs-perl_0.004-2_all.deb ...
Unpacking libperl4-corelibs-perl (0.004-2) ...
Selecting previously unselected package giflib-tools.
Preparing to unpack .../386-giflib-tools_5.1.9-1_amd64.deb ...
Unpacking giflib-tools (5.1.9-1) ...
Selecting previously unselected package libefivar1:amd64.
Preparing to unpack .../387-libefivar1_37-5_amd64.deb ...
Unpacking libefivar1:amd64 (37-5) ...
Selecting previously unselected package libefiboot1:amd64.
Preparing to unpack .../388-libefiboot1_37-5_amd64.deb ...
Unpacking libefiboot1:amd64 (37-5) ...
Selecting previously unselected package grub-common.
Preparing to unpack .../389-grub-common_2.04-9_amd64.deb ...
Unpacking grub-common (2.04-9) ...
Selecting previously unselected package grub2-common.
Preparing to unpack .../390-grub2-common_2.04-9_amd64.deb ...
Unpacking grub2-common (2.04-9) ...
Selecting previously unselected package libaec0:amd64.
Preparing to unpack .../391-libaec0_1.0.4-1_amd64.deb ...
Unpacking libaec0:amd64 (1.0.4-1) ...
Selecting previously unselected package libsz2:amd64.
Preparing to unpack .../392-libsz2_1.0.4-1_amd64.deb ...
Unpacking libsz2:amd64 (1.0.4-1) ...
Selecting previously unselected package libhdf5-103-1:amd64.
Preparing to unpack .../393-libhdf5-103-1_1.10.6+repack-2_amd64.deb ...
Unpacking libhdf5-103-1:amd64 (1.10.6+repack-2) ...
Selecting previously unselected package libhdf5-hl-100:amd64.
Preparing to unpack .../394-libhdf5-hl-100_1.10.6+repack-2_amd64.deb ...
Unpacking libhdf5-hl-100:amd64 (1.10.6+repack-2) ...
Selecting previously unselected package hdf5-tools.
Preparing to unpack .../395-hdf5-tools_1.10.6+repack-2_amd64.deb ...
Unpacking hdf5-tools (1.10.6+repack-2) ...
Selecting previously unselected package help2man.
Preparing to unpack .../396-help2man_1.47.16_amd64.deb ...
Unpacking help2man (1.47.16) ...
Selecting previously unselected package libencode-locale-perl.
Preparing to unpack .../397-libencode-locale-perl_1.05-1_all.deb ...
Unpacking libencode-locale-perl (1.05-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../398-libtimedate-perl_2.3300-1_all.deb ...
Unpacking libtimedate-perl (2.3300-1) ...
Selecting previously unselected package libhttp-date-perl.
Preparing to unpack .../399-libhttp-date-perl_6.05-1_all.deb ...
Unpacking libhttp-date-perl (6.05-1) ...
Selecting previously unselected package libfile-listing-perl.
Preparing to unpack .../400-libfile-listing-perl_6.11-1_all.deb ...
Unpacking libfile-listing-perl (6.11-1) ...
Selecting previously unselected package libhtml-tagset-perl.
Preparing to unpack .../401-libhtml-tagset-perl_3.20-4_all.deb ...
Unpacking libhtml-tagset-perl (3.20-4) ...
Selecting previously unselected package liburi-perl.
Preparing to unpack .../402-liburi-perl_1.76-2_all.deb ...
Unpacking liburi-perl (1.76-2) ...
Selecting previously unselected package libhtml-parser-perl.
Preparing to unpack .../403-libhtml-parser-perl_3.75-1_amd64.deb ...
Unpacking libhtml-parser-perl (3.75-1) ...
Selecting previously unselected package libhtml-tree-perl.
Preparing to unpack .../404-libhtml-tree-perl_5.07-2_all.deb ...
Unpacking libhtml-tree-perl (5.07-2) ...
Selecting previously unselected package libio-html-perl.
Preparing to unpack .../405-libio-html-perl_1.001-1_all.deb ...
Unpacking libio-html-perl (1.001-1) ...
Selecting previously unselected package liblwp-mediatypes-perl.
Preparing to unpack .../406-liblwp-mediatypes-perl_6.04-1_all.deb ...
Unpacking liblwp-mediatypes-perl (6.04-1) ...
Selecting previously unselected package libhttp-message-perl.
Preparing to unpack .../407-libhttp-message-perl_6.26-1_all.deb ...
Unpacking libhttp-message-perl (6.26-1) ...
Selecting previously unselected package libhttp-cookies-perl.
Preparing to unpack .../408-libhttp-cookies-perl_6.08-1_all.deb ...
Unpacking libhttp-cookies-perl (6.08-1) ...
Selecting previously unselected package libhttp-negotiate-perl.
Preparing to unpack .../409-libhttp-negotiate-perl_6.01-1_all.deb ...
Unpacking libhttp-negotiate-perl (6.01-1) ...
Selecting previously unselected package perl-openssl-defaults:amd64.
Preparing to unpack .../410-perl-openssl-defaults_5_amd64.deb ...
Unpacking perl-openssl-defaults:amd64 (5) ...
Selecting previously unselected package libnet-ssleay-perl.
Preparing to unpack .../411-libnet-ssleay-perl_1.88-3_amd64.deb ...
Unpacking libnet-ssleay-perl (1.88-3) ...
Selecting previously unselected package libio-socket-ssl-perl.
Preparing to unpack .../412-libio-socket-ssl-perl_2.068-1_all.deb ...
Unpacking libio-socket-ssl-perl (2.068-1) ...
Selecting previously unselected package libnet-http-perl.
Preparing to unpack .../413-libnet-http-perl_6.19-1_all.deb ...
Unpacking libnet-http-perl (6.19-1) ...
Selecting previously unselected package liblwp-protocol-https-perl.
Preparing to unpack .../414-liblwp-protocol-https-perl_6.09-1_all.deb ...
Unpacking liblwp-protocol-https-perl (6.09-1) ...
Selecting previously unselected package libtry-tiny-perl.
Preparing to unpack .../415-libtry-tiny-perl_0.30-1_all.deb ...
Unpacking libtry-tiny-perl (0.30-1) ...
Selecting previously unselected package libwww-robotrules-perl.
Preparing to unpack .../416-libwww-robotrules-perl_6.02-1_all.deb ...
Unpacking libwww-robotrules-perl (6.02-1) ...
Selecting previously unselected package libwww-perl.
Preparing to unpack .../417-libwww-perl_6.49-1_all.deb ...
Unpacking libwww-perl (6.49-1) ...
Selecting previously unselected package icoutils.
Preparing to unpack .../418-icoutils_0.32.3-3_amd64.deb ...
Unpacking icoutils (0.32.3-3) ...
Selecting previously unselected package imagemagick-6.q16.
Preparing to unpack .../419-imagemagick-6.q16_8%3a6.9.11.24+dfsg-1+b1_amd64.deb ...
Unpacking imagemagick-6.q16 (8:6.9.11.24+dfsg-1+b1) ...
Selecting previously unselected package imagemagick.
Preparing to unpack .../420-imagemagick_8%3a6.9.11.24+dfsg-1+b1_amd64.deb ...
Unpacking imagemagick (8:6.9.11.24+dfsg-1+b1) ...
Selecting previously unselected package libklibc:amd64.
Preparing to unpack .../421-libklibc_2.0.8-1_amd64.deb ...
Unpacking libklibc:amd64 (2.0.8-1) ...
Selecting previously unselected package klibc-utils.
Preparing to unpack .../422-klibc-utils_2.0.8-1_amd64.deb ...
Unpacking klibc-utils (2.0.8-1) ...
Selecting previously unselected package initramfs-tools-core.
Preparing to unpack .../423-initramfs-tools-core_0.139_all.deb ...
Unpacking initramfs-tools-core (0.139) ...
Selecting previously unselected package linux-base.
Preparing to unpack .../424-linux-base_4.6_all.deb ...
Unpacking linux-base (4.6) ...
Selecting previously unselected package initramfs-tools.
Preparing to unpack .../425-initramfs-tools_0.139_all.deb ...
Unpacking initramfs-tools (0.139) ...
Selecting previously unselected package ipxe-qemu.
Preparing to unpack .../426-ipxe-qemu_1.0.0+git-20190125.36a4c85-5_all.deb ...
Unpacking ipxe-qemu (1.0.0+git-20190125.36a4c85-5) ...
Selecting previously unselected package iso-codes.
Preparing to unpack .../427-iso-codes_4.5.0-1_all.deb ...
Unpacking iso-codes (4.5.0-1) ...
Selecting previously unselected package python3-editorconfig.
Preparing to unpack .../428-python3-editorconfig_0.12.2-2.1_all.deb ...
Unpacking python3-editorconfig (0.12.2-2.1) ...
Selecting previously unselected package python3-six.
Preparing to unpack .../429-python3-six_1.15.0-1_all.deb ...
Unpacking python3-six (1.15.0-1) ...
Selecting previously unselected package python3-jsbeautifier.
Preparing to unpack .../430-python3-jsbeautifier_1.13.0-1_all.deb ...
Unpacking python3-jsbeautifier (1.13.0-1) ...
Selecting previously unselected package jsbeautifier.
Preparing to unpack .../431-jsbeautifier_1.13.0-1_all.deb ...
Unpacking jsbeautifier (1.13.0-1) ...
Selecting previously unselected package kpartx.
Preparing to unpack .../432-kpartx_0.8.4-4_amd64.deb ...
Unpacking kpartx (0.8.4-4) ...
Selecting previously unselected package libldm-1.0-0:amd64.
Preparing to unpack .../433-libldm-1.0-0_0.2.4-3_amd64.deb ...
Unpacking libldm-1.0-0:amd64 (0.2.4-3) ...
Selecting previously unselected package ldmtool.
Preparing to unpack .../434-ldmtool_0.2.4-3_amd64.deb ...
Unpacking ldmtool (0.2.4-3) ...
Selecting previously unselected package liba52-0.7.4:amd64.
Preparing to unpack .../435-liba52-0.7.4_0.7.4-20_amd64.deb ...
Unpacking liba52-0.7.4:amd64 (0.7.4-20) ...
Selecting previously unselected package libgpm2:amd64.
Preparing to unpack .../436-libgpm2_1.20.7-6_amd64.deb ...
Unpacking libgpm2:amd64 (1.20.7-6) ...
Selecting previously unselected package libaa1:amd64.
Preparing to unpack .../437-libaa1_1.4p5-46+b1_amd64.deb ...
Unpacking libaa1:amd64 (1.4p5-46+b1) ...
Selecting previously unselected package libafflib0v5:amd64.
Preparing to unpack .../438-libafflib0v5_3.7.19-1_amd64.deb ...
Unpacking libafflib0v5:amd64 (3.7.19-1) ...
Selecting previously unselected package libarchive13:amd64.
Preparing to unpack .../439-libarchive13_3.4.3-2_amd64.deb ...
Unpacking libarchive13:amd64 (3.4.3-2) ...
Selecting previously unselected package libarchive-tools.
Preparing to unpack .../440-libarchive-tools_3.4.3-2_amd64.deb ...
Unpacking libarchive-tools (3.4.3-2) ...
Selecting previously unselected package libassuan0:amd64.
Preparing to unpack .../441-libassuan0_2.5.3-7.1_amd64.deb ...
Unpacking libassuan0:amd64 (2.5.3-7.1) ...
Selecting previously unselected package libice6:amd64.
Preparing to unpack .../442-libice6_2%3a1.0.10-1_amd64.deb ...
Unpacking libice6:amd64 (2:1.0.10-1) ...
Selecting previously unselected package libsm6:amd64.
Preparing to unpack .../443-libsm6_2%3a1.2.3-1_amd64.deb ...
Unpacking libsm6:amd64 (2:1.2.3-1) ...
Selecting previously unselected package libxt6:amd64.
Preparing to unpack .../444-libxt6_1%3a1.2.0-1_amd64.deb ...
Unpacking libxt6:amd64 (1:1.2.0-1) ...
Selecting previously unselected package libaudio2:amd64.
Preparing to unpack .../445-libaudio2_1.9.4-6+b1_amd64.deb ...
Unpacking libaudio2:amd64 (1.9.4-6+b1) ...
Selecting previously unselected package libaugeas0:amd64.
Preparing to unpack .../446-libaugeas0_1.12.0-2_amd64.deb ...
Unpacking libaugeas0:amd64 (1.12.0-2) ...
Selecting previously unselected package libbfio1:amd64.
Preparing to unpack .../447-libbfio1_20170123-5_amd64.deb ...
Unpacking libbfio1:amd64 (20170123-5) ...
Selecting previously unselected package libbrlapi0.7:amd64.
Preparing to unpack .../448-libbrlapi0.7_6.0+dfsg-6+b1_amd64.deb ...
Unpacking libbrlapi0.7:amd64 (6.0+dfsg-6+b1) ...
Selecting previously unselected package libcacard0:amd64.
Preparing to unpack .../449-libcacard0_1%3a2.7.0-1_amd64.deb ...
Unpacking libcacard0:amd64 (1:2.7.0-1) ...
Selecting previously unselected package libcapstone3:amd64.
Preparing to unpack .../450-libcapstone3_4.0.1+really+3.0.5-2+b1_amd64.deb ...
Unpacking libcapstone3:amd64 (4.0.1+really+3.0.5-2+b1) ...
Selecting previously unselected package libdate-manip-perl.
Preparing to unpack .../451-libdate-manip-perl_6.82-1_all.deb ...
Unpacking libdate-manip-perl (6.82-1) ...
Selecting previously unselected package libdaxctl1:amd64.
Preparing to unpack .../452-libdaxctl1_70.1-1_amd64.deb ...
Unpacking libdaxctl1:amd64 (70.1-1) ...
Selecting previously unselected package libdca0:amd64.
Preparing to unpack .../453-libdca0_0.0.7-2_amd64.deb ...
Unpacking libdca0:amd64 (0.0.7-2) ...
Selecting previously unselected package libjaxen-java.
Preparing to unpack .../454-libjaxen-java_1.1.6-4_all.deb ...
Unpacking libjaxen-java (1.1.6-4) ...
Selecting previously unselected package libdom4j-java.
Preparing to unpack .../455-libdom4j-java_2.1.3-1_all.deb ...
Unpacking libdom4j-java (2.1.3-1) ...
Selecting previously unselected package libdv4:amd64.
Preparing to unpack .../456-libdv4_1.0.0-12_amd64.deb ...
Unpacking libdv4:amd64 (1.0.0-12) ...
Selecting previously unselected package libdvdread8:amd64.
Preparing to unpack .../457-libdvdread8_6.1.1-2_amd64.deb ...
Unpacking libdvdread8:amd64 (6.1.1-2) ...
Selecting previously unselected package libdvdnav4:amd64.
Preparing to unpack .../458-libdvdnav4_6.1.0-1+b1_amd64.deb ...
Unpacking libdvdnav4:amd64 (6.1.0-1+b1) ...
Selecting previously unselected package libdw1:amd64.
Preparing to unpack .../459-libdw1_0.181-1_amd64.deb ...
Unpacking libdw1:amd64 (0.181-1) ...
Selecting previously unselected package libegl-mesa0:amd64.
Preparing to unpack .../460-libegl-mesa0_20.2.1-1_amd64.deb ...
Unpacking libegl-mesa0:amd64 (20.2.1-1) ...
Selecting previously unselected package libenca0:amd64.
Preparing to unpack .../461-libenca0_1.19-1+b1_amd64.deb ...
Unpacking libenca0:amd64 (1.19-1+b1) ...
Selecting previously unselected package libewf2.
Preparing to unpack .../462-libewf2_20140807-2+b1_amd64.deb ...
Unpacking libewf2 (20140807-2+b1) ...
Selecting previously unselected package libfaad2:amd64.
Preparing to unpack .../463-libfaad2_2.9.2-1_amd64.deb ...
Unpacking libfaad2:amd64 (2.9.2-1) ...
Selecting previously unselected package libunwind8:amd64.
Preparing to unpack .../464-libunwind8_1.3.2-2_amd64.deb ...
Unpacking libunwind8:amd64 (1.3.2-2) ...
Selecting previously unselected package libgstreamer1.0-0:amd64.
Preparing to unpack .../465-libgstreamer1.0-0_1.18.0-3_amd64.deb ...
Unpacking libgstreamer1.0-0:amd64 (1.18.0-3) ...
Selecting previously unselected package liborc-0.4-0:amd64.
Preparing to unpack .../466-liborc-0.4-0_1%3a0.4.32-1_amd64.deb ...
Unpacking liborc-0.4-0:amd64 (1:0.4.32-1) ...
Selecting previously unselected package libgstreamer-plugins-base1.0-0:amd64.
Preparing to unpack .../467-libgstreamer-plugins-base1.0-0_1.18.0-2_amd64.deb ...
Unpacking libgstreamer-plugins-base1.0-0:amd64 (1.18.0-2) ...
Selecting previously unselected package libhivex0:amd64.
Preparing to unpack .../468-libhivex0_1.3.19-1+b2_amd64.deb ...
Unpacking libhivex0:amd64 (1.3.19-1+b2) ...
Selecting previously unselected package libjansson4:amd64.
Preparing to unpack .../469-libjansson4_2.13.1-1_amd64.deb ...
Unpacking libjansson4:amd64 (2.13.1-1) ...
Selecting previously unselected package libvhdi1:amd64.
Preparing to unpack .../470-libvhdi1_20181227-1.1+b1_amd64.deb ...
Unpacking libvhdi1:amd64 (20181227-1.1+b1) ...
Selecting previously unselected package libvmdk1:amd64.
Preparing to unpack .../471-libvmdk1_20200926-1_amd64.deb ...
Unpacking libvmdk1:amd64 (20200926-1) ...
Selecting previously unselected package libtsk19:amd64.
Preparing to unpack .../472-libtsk19_4.10.0+dfsg-1_amd64.deb ...
Unpacking libtsk19:amd64 (4.10.0+dfsg-1) ...
Selecting previously unselected package libnl-3-200:amd64.
Preparing to unpack .../473-libnl-3-200_3.4.0-1+b1_amd64.deb ...
Unpacking libnl-3-200:amd64 (3.4.0-1+b1) ...
Selecting previously unselected package libyajl2:amd64.
Preparing to unpack .../474-libyajl2_2.1.0-3_amd64.deb ...
Unpacking libyajl2:amd64 (2.1.0-3) ...
Selecting previously unselected package libvirt0:amd64.
Preparing to unpack .../475-libvirt0_6.6.0-2_amd64.deb ...
Unpacking libvirt0:amd64 (6.6.0-2) ...
Selecting previously unselected package libyara4:amd64.
Preparing to unpack .../476-libyara4_4.0.2-1_amd64.deb ...
Unpacking libyara4:amd64 (4.0.2-1) ...
Selecting previously unselected package supermin.
Preparing to unpack .../477-supermin_5.2.0-2_amd64.deb ...
Unpacking supermin (5.2.0-2) ...
Selecting previously unselected package libnl-route-3-200:amd64.
Preparing to unpack .../478-libnl-route-3-200_3.4.0-1+b1_amd64.deb ...
Unpacking libnl-route-3-200:amd64 (3.4.0-1+b1) ...
Selecting previously unselected package libibverbs1:amd64.
Preparing to unpack .../479-libibverbs1_31.0-1_amd64.deb ...
Unpacking libibverbs1:amd64 (31.0-1) ...
Selecting previously unselected package libndctl6:amd64.
Preparing to unpack .../480-libndctl6_70.1-1_amd64.deb ...
Unpacking libndctl6:amd64 (70.1-1) ...
Selecting previously unselected package libpmem1:amd64.
Preparing to unpack .../481-libpmem1_1.9.1-3_amd64.deb ...
Unpacking libpmem1:amd64 (1.9.1-3) ...
Selecting previously unselected package librdmacm1:amd64.
Preparing to unpack .../482-librdmacm1_31.0-1_amd64.deb ...
Unpacking librdmacm1:amd64 (31.0-1) ...
Selecting previously unselected package libslirp0:amd64.
Preparing to unpack .../483-libslirp0_4.3.1-1_amd64.deb ...
Unpacking libslirp0:amd64 (4.3.1-1) ...
Selecting previously unselected package libspice-server1:amd64.
Preparing to unpack .../484-libspice-server1_0.14.3-1_amd64.deb ...
Unpacking libspice-server1:amd64 (0.14.3-1) ...
Selecting previously unselected package liburing1:amd64.
Preparing to unpack .../485-liburing1_0.7-1_amd64.deb ...
Unpacking liburing1:amd64 (0.7-1) ...
Selecting previously unselected package libvdeplug2.
Preparing to unpack .../486-libvdeplug2_2.3.2+r586-7_amd64.deb ...
Unpacking libvdeplug2 (2.3.2+r586-7) ...
Selecting previously unselected package libvirglrenderer1:amd64.
Preparing to unpack .../487-libvirglrenderer1_0.8.2-4_amd64.deb ...
Unpacking libvirglrenderer1:amd64 (0.8.2-4) ...
Selecting previously unselected package libxentoolcore1:amd64.
Preparing to unpack .../488-libxentoolcore1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxentoolcore1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxentoollog1:amd64.
Preparing to unpack .../489-libxentoollog1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxentoollog1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxencall1:amd64.
Preparing to unpack .../490-libxencall1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxencall1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxendevicemodel1:amd64.
Preparing to unpack .../491-libxendevicemodel1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxendevicemodel1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxenevtchn1:amd64.
Preparing to unpack .../492-libxenevtchn1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxenevtchn1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxenforeignmemory1:amd64.
Preparing to unpack .../493-libxenforeignmemory1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxenforeignmemory1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxengnttab1:amd64.
Preparing to unpack .../494-libxengnttab1_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxengnttab1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxenstore3.0:amd64.
Preparing to unpack .../495-libxenstore3.0_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxenstore3.0:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libxenmisc4.11:amd64.
Preparing to unpack .../496-libxenmisc4.11_4.11.4+24-gddaaccbbab-1_amd64.deb ...
Unpacking libxenmisc4.11:amd64 (4.11.4+24-gddaaccbbab-1) ...
Selecting previously unselected package libusbredirparser1:amd64.
Preparing to unpack .../497-libusbredirparser1_0.8.0-1+b1_amd64.deb ...
Unpacking libusbredirparser1:amd64 (0.8.0-1+b1) ...
Selecting previously unselected package qemu-system-common.
Preparing to unpack .../498-qemu-system-common_1%3a5.1+dfsg-4_amd64.deb ...
Unpacking qemu-system-common (1:5.1+dfsg-4) ...
Selecting previously unselected package qemu-system-data.
Preparing to unpack .../499-qemu-system-data_1%3a5.1+dfsg-4_all.deb ...
Unpacking qemu-system-data (1:5.1+dfsg-4) ...
Selecting previously unselected package seabios.
Preparing to unpack .../500-seabios_1.14.0-1_all.deb ...
Unpacking seabios (1.14.0-1) ...
Selecting previously unselected package qemu-system-x86.
Preparing to unpack .../501-qemu-system-x86_1%3a5.1+dfsg-4_amd64.deb ...
Unpacking qemu-system-x86 (1:5.1+dfsg-4) ...
Selecting previously unselected package libnetpbm10.
Preparing to unpack .../502-libnetpbm10_2%3a10.0-15.3+b2_amd64.deb ...
Unpacking libnetpbm10 (2:10.0-15.3+b2) ...
Selecting previously unselected package netpbm.
Preparing to unpack .../503-netpbm_2%3a10.0-15.3+b2_amd64.deb ...
Unpacking netpbm (2:10.0-15.3+b2) ...
Selecting previously unselected package osinfo-db.
Preparing to unpack .../504-osinfo-db_0.20200325-1_all.deb ...
Unpacking osinfo-db (0.20200325-1) ...
Selecting previously unselected package lsscsi.
Preparing to unpack .../505-lsscsi_0.31-1+b1_amd64.deb ...
Unpacking lsscsi (0.31-1+b1) ...
Selecting previously unselected package lzop.
Preparing to unpack .../506-lzop_1.04-1_amd64.deb ...
Unpacking lzop (1.04-1) ...
Selecting previously unselected package mtools.
Preparing to unpack .../507-mtools_4.0.24-1_amd64.deb ...
Unpacking mtools (4.0.24-1) ...
Selecting previously unselected package libparted2:amd64.
Preparing to unpack .../508-libparted2_3.3-4_amd64.deb ...
Unpacking libparted2:amd64 (3.3-4) ...
Selecting previously unselected package parted.
Preparing to unpack .../509-parted_3.3-4_amd64.deb ...
Unpacking parted (3.3-4) ...
Selecting previously unselected package psmisc.
Preparing to unpack .../510-psmisc_23.3-1_amd64.deb ...
Unpacking psmisc (23.3-1) ...
Selecting previously unselected package qemu-utils.
Preparing to unpack .../511-qemu-utils_1%3a5.1+dfsg-4_amd64.deb ...
Unpacking qemu-utils (1:5.1+dfsg-4) ...
Selecting previously unselected package scrub.
Preparing to unpack .../512-scrub_2.6.1-1+b1_amd64.deb ...
Unpacking scrub (2.6.1-1+b1) ...
Selecting previously unselected package sleuthkit.
Preparing to unpack .../513-sleuthkit_4.10.0+dfsg-1_amd64.deb ...
Unpacking sleuthkit (4.10.0+dfsg-1) ...
Selecting previously unselected package squashfs-tools.
Preparing to unpack .../514-squashfs-tools_1%3a4.4-2_amd64.deb ...
Unpacking squashfs-tools (1:4.4-2) ...
Selecting previously unselected package syslinux.
Preparing to unpack .../515-syslinux_3%3a6.04~git20190206.bf6db5b4+dfsg1-3_amd64.deb ...
Unpacking syslinux (3:6.04~git20190206.bf6db5b4+dfsg1-3) ...
Selecting previously unselected package zerofree.
Preparing to unpack .../516-zerofree_1.1.1-1_amd64.deb ...
Unpacking zerofree (1.1.1-1) ...
Selecting previously unselected package libguestfs0:amd64.
Preparing to unpack .../517-libguestfs0_1%3a1.42.0-11_amd64.deb ...
Unpacking libguestfs0:amd64 (1:1.42.0-11) ...
Selecting previously unselected package libicu4j-java.
Preparing to unpack .../518-libicu4j-java_62.1-2_all.deb ...
Unpacking libicu4j-java (62.1-2) ...
Selecting previously unselected package libjetbrains-annotations-java.
Preparing to unpack .../519-libjetbrains-annotations-java_20.1.0-1_all.deb ...
Unpacking libjetbrains-annotations-java (20.1.0-1) ...
Selecting previously unselected package libintellij-annotations-java.
Preparing to unpack .../520-libintellij-annotations-java_20.1.0-1_all.deb ...
Unpacking libintellij-annotations-java (20.1.0-1) ...
Selecting previously unselected package libjcommander-java.
Preparing to unpack .../521-libjcommander-java_1.71-3_all.deb ...
Unpacking libjcommander-java (1.71-3) ...
Selecting previously unselected package libjdom1-java.
Preparing to unpack .../522-libjdom1-java_1.1.3-2_all.deb ...
Unpacking libjdom1-java (1.1.3-2) ...
Selecting previously unselected package libjs-jquery-isonscreen.
Preparing to unpack .../523-libjs-jquery-isonscreen_1.2.0-1_all.deb ...
Unpacking libjs-jquery-isonscreen (1.2.0-1) ...
Selecting previously unselected package libjs-jquery-metadata.
Preparing to unpack .../524-libjs-jquery-metadata_12-1.1_all.deb ...
Unpacking libjs-jquery-metadata (12-1.1) ...
Selecting previously unselected package libjs-jquery-tablesorter.
Preparing to unpack .../525-libjs-jquery-tablesorter_1%3a2.31.3+dfsg1-1_all.deb ...
Unpacking libjs-jquery-tablesorter (1:2.31.3+dfsg1-1) ...
Selecting previously unselected package libjs-jquery-throttle-debounce.
Preparing to unpack .../526-libjs-jquery-throttle-debounce_1.1+dfsg.1-1_all.deb ...
Unpacking libjs-jquery-throttle-debounce (1.1+dfsg.1-1) ...
Selecting previously unselected package libksba8:amd64.
Preparing to unpack .../527-libksba8_1.4.0-2_amd64.deb ...
Unpacking libksba8:amd64 (1.4.0-2) ...
Selecting previously unselected package liblirc-client0:amd64.
Preparing to unpack .../528-liblirc-client0_0.10.1-6.2_amd64.deb ...
Unpacking liblirc-client0:amd64 (0.10.1-6.2) ...
Selecting previously unselected package libllvm9:amd64.
Preparing to unpack .../529-libllvm9_1%3a9.0.1-14+b1_amd64.deb ...
Unpacking libllvm9:amd64 (1:9.0.1-14+b1) ...
Selecting previously unselected package liblua5.2-0:amd64.
Preparing to unpack .../530-liblua5.2-0_5.2.4-1.1+b3_amd64.deb ...
Unpacking liblua5.2-0:amd64 (5.2.4-1.1+b3) ...
Selecting previously unselected package liblzf1:amd64.
Preparing to unpack .../531-liblzf1_3.6-2_amd64.deb ...
Unpacking liblzf1:amd64 (3.6-2) ...
Selecting previously unselected package libmad0:amd64.
Preparing to unpack .../532-libmad0_0.15.1b-10_amd64.deb ...
Unpacking libmad0:amd64 (0.15.1b-10) ...
Selecting previously unselected package libmng1:amd64.
Preparing to unpack .../533-libmng1_1.0.10+dfsg-3.1+b5_amd64.deb ...
Unpacking libmng1:amd64 (1.0.10+dfsg-3.1+b5) ...
Selecting previously unselected package libmono-system-core4.0-cil.
Preparing to unpack .../534-libmono-system-core4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-system-core4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-system-numerics4.0-cil.
Preparing to unpack .../535-libmono-system-numerics4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-system-numerics4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-system-xml4.0-cil.
Preparing to unpack .../536-libmono-system-xml4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-system-xml4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-system-security4.0-cil.
Preparing to unpack .../537-libmono-system-security4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-system-security4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-system-configuration4.0-cil.
Preparing to unpack .../538-libmono-system-configuration4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-system-configuration4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-system4.0-cil.
Preparing to unpack .../539-libmono-system4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-system4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-security4.0-cil.
Preparing to unpack .../540-libmono-security4.0-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-security4.0-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package mono-4.0-gac.
Preparing to unpack .../541-mono-4.0-gac_6.8.0.105+dfsg-3_all.deb ...
Unpacking mono-4.0-gac (6.8.0.105+dfsg-3) ...
Selecting previously unselected package mono-gac.
Preparing to unpack .../542-mono-gac_6.8.0.105+dfsg-3_all.deb ...
Unpacking mono-gac (6.8.0.105+dfsg-3) ...
Selecting previously unselected package mono-runtime-common.
Preparing to unpack .../543-mono-runtime-common_6.8.0.105+dfsg-3_amd64.deb ...
Unpacking mono-runtime-common (6.8.0.105+dfsg-3) ...
Selecting previously unselected package mono-runtime-sgen.
Preparing to unpack .../544-mono-runtime-sgen_6.8.0.105+dfsg-3_amd64.deb ...
Unpacking mono-runtime-sgen (6.8.0.105+dfsg-3) ...
Selecting previously unselected package mono-runtime.
Preparing to unpack .../545-mono-runtime_6.8.0.105+dfsg-3_amd64.deb ...
Unpacking mono-runtime (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmono-corlib4.5-cil.
Preparing to unpack .../546-libmono-corlib4.5-cil_6.8.0.105+dfsg-3_all.deb ...
Unpacking libmono-corlib4.5-cil (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmonoboehm-2.0-1.
Preparing to unpack .../547-libmonoboehm-2.0-1_6.8.0.105+dfsg-3_amd64.deb ...
Unpacking libmonoboehm-2.0-1 (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libmpeg2-4:amd64.
Preparing to unpack .../548-libmpeg2-4_0.5.1-9_amd64.deb ...
Unpacking libmpeg2-4:amd64 (0.5.1-9) ...
Selecting previously unselected package libpaper-utils.
Preparing to unpack .../549-libpaper-utils_1.1.28+b1_amd64.deb ...
Unpacking libpaper-utils (1.1.28+b1) ...
Selecting previously unselected package libpcap0.8:amd64.
Preparing to unpack .../550-libpcap0.8_1.9.1-4_amd64.deb ...
Unpacking libpcap0.8:amd64 (1.9.1-4) ...
Selecting previously unselected package libpfm4:amd64.
Preparing to unpack .../551-libpfm4_4.10.1+git44-ga2909cd-1_amd64.deb ...
Unpacking libpfm4:amd64 (4.10.1+git44-ga2909cd-1) ...
Selecting previously unselected package libprocyon-java.
Preparing to unpack .../552-libprocyon-java_0.5.36-1_all.deb ...
Unpacking libprocyon-java (0.5.36-1) ...
Selecting previously unselected package libpython3.9-stdlib:amd64.
Preparing to unpack .../553-libpython3.9-stdlib_3.9.0-5_amd64.deb ...
Unpacking libpython3.9-stdlib:amd64 (3.9.0-5) ...
Selecting previously unselected package librpmio8.
Preparing to unpack .../554-librpmio8_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking librpmio8 (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package librpm8.
Preparing to unpack .../555-librpm8_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking librpm8 (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package librpmbuild8.
Preparing to unpack .../556-librpmbuild8_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking librpmbuild8 (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package librpmsign8.
Preparing to unpack .../557-librpmsign8_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking librpmsign8 (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package libxml-commons-resolver1.1-java.
Preparing to unpack .../558-libxml-commons-resolver1.1-java_1.2-11_all.deb ...
Unpacking libxml-commons-resolver1.1-java (1.2-11) ...
Selecting previously unselected package libxml-commons-external-java.
Preparing to unpack .../559-libxml-commons-external-java_1.4.01-5_all.deb ...
Unpacking libxml-commons-external-java (1.4.01-5) ...
Selecting previously unselected package libxerces2-java.
Preparing to unpack .../560-libxerces2-java_2.12.1-1_all.deb ...
Unpacking libxerces2-java (2.12.1-1) ...
Selecting previously unselected package libxom-java.
Preparing to unpack .../561-libxom-java_1.2.10-1_all.deb ...
Unpacking libxom-java (1.2.10-1) ...
Selecting previously unselected package libsaxonhe-java.
Preparing to unpack .../562-libsaxonhe-java_9.9.1.5+dfsg-1_all.deb ...
Unpacking libsaxonhe-java (9.9.1.5+dfsg-1) ...
Selecting previously unselected package libsdl1.2debian:amd64.
Preparing to unpack .../563-libsdl1.2debian_1.2.15+dfsg2-5_amd64.deb ...
Unpacking libsdl1.2debian:amd64 (1.2.15+dfsg2-5) ...
Selecting previously unselected package libtcl8.6:amd64.
Preparing to unpack .../564-libtcl8.6_8.6.10+dfsg-1_amd64.deb ...
Unpacking libtcl8.6:amd64 (8.6.10+dfsg-1) ...
Selecting previously unselected package libxft2:amd64.
Preparing to unpack .../565-libxft2_2.3.2-2_amd64.deb ...
Unpacking libxft2:amd64 (2.3.2-2) ...
Selecting previously unselected package libtk8.6:amd64.
Preparing to unpack .../566-libtk8.6_8.6.10-1_amd64.deb ...
Unpacking libtk8.6:amd64 (8.6.10-1) ...
Selecting previously unselected package libvorbisidec1:amd64.
Preparing to unpack .../567-libvorbisidec1_1.2.1+git20180316-7_amd64.deb ...
Unpacking libvorbisidec1:amd64 (1.2.1+git20180316-7) ...
Selecting previously unselected package libxmlbeans-java.
Preparing to unpack .../568-libxmlbeans-java_3.0.2-1_all.deb ...
Unpacking libxmlbeans-java (3.0.2-1) ...
Selecting previously unselected package libxvmc1:amd64.
Preparing to unpack .../569-libxvmc1_2%3a1.0.12-2_amd64.deb ...
Unpacking libxvmc1:amd64 (2:1.0.12-2) ...
Selecting previously unselected package libxxf86dga1:amd64.
Preparing to unpack .../570-libxxf86dga1_2%3a1.1.4-1+b3_amd64.deb ...
Unpacking libxxf86dga1:amd64 (2:1.1.4-1+b3) ...
Selecting previously unselected package linux-image-5.9.0-1-amd64.
Preparing to unpack .../571-linux-image-5.9.0-1-amd64_5.9.1-1_amd64.deb ...
Unpacking linux-image-5.9.0-1-amd64 (5.9.1-1) ...
Selecting previously unselected package linux-image-amd64.
Preparing to unpack .../572-linux-image-amd64_5.9.1-1_amd64.deb ...
Unpacking linux-image-amd64 (5.9.1-1) ...
Selecting previously unselected package llvm-9-runtime.
Preparing to unpack .../573-llvm-9-runtime_1%3a9.0.1-14+b1_amd64.deb ...
Unpacking llvm-9-runtime (1:9.0.1-14+b1) ...
Selecting previously unselected package llvm-runtime.
Preparing to unpack .../574-llvm-runtime_1%3a9.0-49.1_amd64.deb ...
Unpacking llvm-runtime (1:9.0-49.1) ...
Selecting previously unselected package llvm-9.
Preparing to unpack .../575-llvm-9_1%3a9.0.1-14+b1_amd64.deb ...
Unpacking llvm-9 (1:9.0.1-14+b1) ...
Selecting previously unselected package llvm.
Preparing to unpack .../576-llvm_1%3a9.0-49.1_amd64.deb ...
Unpacking llvm (1:9.0-49.1) ...
Selecting previously unselected package lsb-release.
Preparing to unpack .../577-lsb-release_11.1.0_all.deb ...
Unpacking lsb-release (11.1.0) ...
Selecting previously unselected package lz4.
Preparing to unpack .../578-lz4_1.9.2-2_amd64.deb ...
Unpacking lz4 (1.9.2-2) ...
Selecting previously unselected package mono-utils.
Preparing to unpack .../579-mono-utils_6.8.0.105+dfsg-3_amd64.deb ...
Unpacking mono-utils (6.8.0.105+dfsg-3) ...
Selecting previously unselected package libegl1:amd64.
Preparing to unpack .../580-libegl1_1.3.2-1_amd64.deb ...
Unpacking libegl1:amd64 (1.3.2-1) ...
Selecting previously unselected package mplayer.
Preparing to unpack .../581-mplayer_2%3a1.4+ds1-1_amd64.deb ...
Unpacking mplayer (2:1.4+ds1-1) ...
Selecting previously unselected package ocaml-base-nox.
Preparing to unpack .../582-ocaml-base-nox_4.11.1-3_amd64.deb ...
Unpacking ocaml-base-nox (4.11.1-3) ...
Selecting previously unselected package ocaml-interp.
Preparing to unpack .../583-ocaml-interp_4.11.1-3_amd64.deb ...
Unpacking ocaml-interp (4.11.1-3) ...
Selecting previously unselected package ocaml-nox.
Preparing to unpack .../584-ocaml-nox_4.11.1-3_amd64.deb ...
Unpacking ocaml-nox (4.11.1-3) ...
Selecting previously unselected package ocaml-compiler-libs.
Preparing to unpack .../585-ocaml-compiler-libs_4.11.1-3_amd64.deb ...
Unpacking ocaml-compiler-libs (4.11.1-3) ...
Selecting previously unselected package odt2txt.
Preparing to unpack .../586-odt2txt_0.5-7_amd64.deb ...
Unpacking odt2txt (0.5-7) ...
Selecting previously unselected package oggvideotools.
Preparing to unpack .../587-oggvideotools_0.9.1-5.1_amd64.deb ...
Unpacking oggvideotools (0.9.1-5.1) ...
Selecting previously unselected package pgpdump.
Preparing to unpack .../588-pgpdump_0.33-2_amd64.deb ...
Unpacking pgpdump (0.33-2) ...
Selecting previously unselected package poppler-utils.
Preparing to unpack .../589-poppler-utils_20.09.0-2_amd64.deb ...
Unpacking poppler-utils (20.09.0-2) ...
Selecting previously unselected package procyon-decompiler.
Preparing to unpack .../590-procyon-decompiler_0.5.36-1_all.deb ...
Unpacking procyon-decompiler (0.5.36-1) ...
Selecting previously unselected package python3.9.
Preparing to unpack .../591-python3.9_3.9.0-5_amd64.deb ...
Unpacking python3.9 (3.9.0-5) ...
Selecting previously unselected package python3-all.
Preparing to unpack .../592-python3-all_3.8.6-1_amd64.deb ...
Unpacking python3-all (3.8.6-1) ...
Selecting previously unselected package python3-argcomplete.
Preparing to unpack .../593-python3-argcomplete_1.8.1-1.3_all.deb ...
Unpacking python3-argcomplete (1.8.1-1.3) ...
Selecting previously unselected package python3-atomicwrites.
Preparing to unpack .../594-python3-atomicwrites_1.4.0-1_all.deb ...
Unpacking python3-atomicwrites (1.4.0-1) ...
Selecting previously unselected package python3-attr.
Preparing to unpack .../595-python3-attr_19.3.0-5_all.deb ...
Unpacking python3-attr (19.3.0-5) ...
Selecting previously unselected package python3-binwalk.
Preparing to unpack .../596-python3-binwalk_2.2.0+dfsg1-1_all.deb ...
Unpacking python3-binwalk (2.2.0+dfsg1-1) ...
Selecting previously unselected package python3-cffi-backend.
Preparing to unpack .../597-python3-cffi-backend_1.14.3-2_amd64.deb ...
Unpacking python3-cffi-backend (1.14.3-2) ...
Selecting previously unselected package python3-chardet.
Preparing to unpack .../598-python3-chardet_3.0.4-7_all.deb ...
Unpacking python3-chardet (3.0.4-7) ...
Selecting previously unselected package python3-coverage.
Preparing to unpack .../599-python3-coverage_5.1+dfsg.1-2+b1_amd64.deb ...
Unpacking python3-coverage (5.1+dfsg.1-2+b1) ...
Selecting previously unselected package python3-nose2.
Preparing to unpack .../600-python3-nose2_0.9.2-1_all.deb ...
Unpacking python3-nose2 (0.9.2-1) ...
Selecting previously unselected package python3-cov-core.
Preparing to unpack .../601-python3-cov-core_1.15.0-3_all.deb ...
Unpacking python3-cov-core (1.15.0-3) ...
Selecting previously unselected package python3-cryptography.
Preparing to unpack .../602-python3-cryptography_3.1-1+b1_amd64.deb ...
Unpacking python3-cryptography (3.1-1+b1) ...
Selecting previously unselected package python3-debian.
Preparing to unpack .../603-python3-debian_0.1.38_all.deb ...
Unpacking python3-debian (0.1.38) ...
Selecting previously unselected package python3-distro.
Preparing to unpack .../604-python3-distro_1.5.0-1_all.deb ...
Unpacking python3-distro (1.5.0-1) ...
Selecting previously unselected package python3-roman.
Preparing to unpack .../605-python3-roman_2.0.0-5_all.deb ...
Unpacking python3-roman (2.0.0-5) ...
Selecting previously unselected package python3-docutils.
Preparing to unpack .../606-python3-docutils_0.16+dfsg-3_all.deb ...
Unpacking python3-docutils (0.16+dfsg-3) ...
Selecting previously unselected package python3-guestfs.
Preparing to unpack .../607-python3-guestfs_1%3a1.42.0-11_amd64.deb ...
Unpacking python3-guestfs (1:1.42.0-11) ...
Selecting previously unselected package python3-numpy.
Preparing to unpack .../608-python3-numpy_1%3a1.19.2-2+b1_amd64.deb ...
Unpacking python3-numpy (1:1.19.2-2+b1) ...
Selecting previously unselected package python3-h5py-serial.
Preparing to unpack .../609-python3-h5py-serial_2.10.0-9+b1_amd64.deb ...
Unpacking python3-h5py-serial (2.10.0-9+b1) ...
Selecting previously unselected package python3-h5py.
Preparing to unpack .../610-python3-h5py_2.10.0-9_all.deb ...
Unpacking python3-h5py (2.10.0-9) ...
Selecting previously unselected package python3-more-itertools.
Preparing to unpack .../611-python3-more-itertools_4.2.0-3_all.deb ...
Unpacking python3-more-itertools (4.2.0-3) ...
Selecting previously unselected package python3-zipp.
Preparing to unpack .../612-python3-zipp_1.0.0-3_all.deb ...
Unpacking python3-zipp (1.0.0-3) ...
Selecting previously unselected package python3-importlib-metadata.
Preparing to unpack .../613-python3-importlib-metadata_1.6.0-2_all.deb ...
Unpacking python3-importlib-metadata (1.6.0-2) ...
Selecting previously unselected package python3-jsondiff.
Preparing to unpack .../614-python3-jsondiff_1.1.1-4_all.deb ...
Unpacking python3-jsondiff (1.1.1-4) ...
Selecting previously unselected package python3-libarchive-c.
Preparing to unpack .../615-python3-libarchive-c_2.9-0.1_all.deb ...
Unpacking python3-libarchive-c (2.9-0.1) ...
Selecting previously unselected package python3-magic.
Preparing to unpack .../616-python3-magic_2%3a0.4.15-4_all.deb ...
Unpacking python3-magic (2:0.4.15-4) ...
Selecting previously unselected package python3-pyparsing.
Preparing to unpack .../617-python3-pyparsing_2.4.7-1_all.deb ...
Unpacking python3-pyparsing (2.4.7-1) ...
Selecting previously unselected package python3-packaging.
Preparing to unpack .../618-python3-packaging_20.4-1_all.deb ...
Unpacking python3-packaging (20.4-1) ...
Selecting previously unselected package python3-sortedcontainers.
Preparing to unpack .../619-python3-sortedcontainers_2.1.0-2_all.deb ...
Unpacking python3-sortedcontainers (2.1.0-2) ...
Selecting previously unselected package python3-pdfminer.
Preparing to unpack .../620-python3-pdfminer_20200726-1_all.deb ...
Unpacking python3-pdfminer (20200726-1) ...
Selecting previously unselected package python3-pluggy.
Preparing to unpack .../621-python3-pluggy_0.13.0-5_all.deb ...
Unpacking python3-pluggy (0.13.0-5) ...
Selecting previously unselected package python3-progressbar.
Preparing to unpack .../622-python3-progressbar_2.5-2_all.deb ...
Unpacking python3-progressbar (2.5-2) ...
Selecting previously unselected package python3-py.
Preparing to unpack .../623-python3-py_1.9.0-1_all.deb ...
Unpacking python3-py (1.9.0-1) ...
Selecting previously unselected package python3-pypdf2.
Preparing to unpack .../624-python3-pypdf2_1.26.0-4_all.deb ...
Unpacking python3-pypdf2 (1.26.0-4) ...
Selecting previously unselected package python3-wcwidth.
Preparing to unpack .../625-python3-wcwidth_0.1.9+dfsg1-2_all.deb ...
Unpacking python3-wcwidth (0.1.9+dfsg1-2) ...
Selecting previously unselected package python3-pytest.
Preparing to unpack .../626-python3-pytest_4.6.11-1_all.deb ...
Unpacking python3-pytest (4.6.11-1) ...
Selecting previously unselected package python3-pytest-cov.
Preparing to unpack .../627-python3-pytest-cov_2.8.1-1_all.deb ...
Unpacking python3-pytest-cov (2.8.1-1) ...
Selecting previously unselected package python3-pyxattr.
Preparing to unpack .../628-python3-pyxattr_0.6.1-2+b2_amd64.deb ...
Unpacking python3-pyxattr (0.6.1-2+b2) ...
Selecting previously unselected package rpm-common.
Preparing to unpack .../629-rpm-common_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking rpm-common (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package python3-rpm.
Preparing to unpack .../630-python3-rpm_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking python3-rpm (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package python3-tlsh.
Preparing to unpack .../631-python3-tlsh_3.4.4+20151206-1.3+b3_amd64.deb ...
Unpacking python3-tlsh (3.4.4+20151206-1.3+b3) ...
Selecting previously unselected package zip.
Preparing to unpack .../632-zip_3.0-11+b1_amd64.deb ...
Unpacking zip (3.0-11+b1) ...
Selecting previously unselected package xdg-utils.
Preparing to unpack .../633-xdg-utils_1.1.3-2_all.deb ...
Unpacking xdg-utils (1.1.3-2) ...
Selecting previously unselected package r-base-core.
Preparing to unpack .../634-r-base-core_4.0.3-1_amd64.deb ...
Unpacking r-base-core (4.0.3-1) ...
Selecting previously unselected package rpm2cpio.
Preparing to unpack .../635-rpm2cpio_4.14.2.1+dfsg1-1.1+b2_amd64.deb ...
Unpacking rpm2cpio (4.14.2.1+dfsg1-1.1+b2) ...
Selecting previously unselected package sng.
Preparing to unpack .../636-sng_1.1.0-4_amd64.deb ...
Unpacking sng (1.1.0-4) ...
Selecting previously unselected package sqlite3.
Preparing to unpack .../637-sqlite3_3.33.0-1_amd64.deb ...
Unpacking sqlite3 (3.33.0-1) ...
Selecting previously unselected package tcpdump.
Preparing to unpack .../638-tcpdump_4.9.3-6_amd64.deb ...
Unpacking tcpdump (4.9.3-6) ...
Selecting previously unselected package wabt.
Preparing to unpack .../639-wabt_1.0.19-1_amd64.deb ...
Unpacking wabt (1.0.19-1) ...
Selecting previously unselected package xmlbeans.
Preparing to unpack .../640-xmlbeans_3.0.2-1_all.deb ...
Unpacking xmlbeans (3.0.2-1) ...
Selecting previously unselected package xxd.
Preparing to unpack .../641-xxd_2%3a8.2.0716-3_amd64.deb ...
Unpacking xxd (2:8.2.0716-3) ...
Selecting previously unselected package zstd.
Preparing to unpack .../642-zstd_1.4.5+dfsg-4_amd64.deb ...
Unpacking zstd (1.4.5+dfsg-4) ...
Selecting previously unselected package gnupg-utils.
Preparing to unpack .../643-gnupg-utils_2.2.20-1_amd64.deb ...
Unpacking gnupg-utils (2.2.20-1) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack .../644-sbuild-build-depends-main-dummy_0.invalid.0_amd64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up libgme0:amd64 (0.6.3-2) ...
Setting up libbrlapi0.7:amd64 (6.0+dfsg-6+b1) ...
Setting up libssh-gcrypt-4:amd64 (0.9.4-1) ...
Setting up libksba8:amd64 (1.4.0-2) ...
Setting up cpio (2.13+dfsg-4) ...
update-alternatives: using /bin/mt-gnu to provide /bin/mt (mt) in auto mode
Setting up libpipeline1:amd64 (1.5.3-1) ...
Setting up fastjar (2:0.98-7) ...
Setting up libgraphite2-3:amd64 (1.3.14-1) ...
Setting up liblcms2-2:amd64 (2.9-4+b1) ...
Setting up libpixman-1-0:amd64 (0.36.0-1) ...
Setting up libjcommander-java (1.71-3) ...
Setting up libxentoollog1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libwayland-server0:amd64 (1.18.0-2~exp1.1) ...
Setting up libx11-xcb1:amd64 (2:1.6.12-1) ...
Setting up zerofree (1.1.1-1) ...
Setting up libpciaccess0:amd64 (0.16-1) ...
Setting up pgpdump (0.33-2) ...
Setting up libjetbrains-annotations-java (20.1.0-1) ...
Setting up librabbitmq4:amd64 (0.10.0-1) ...
Setting up systemd-sysv (246.6-2) ...
Setting up libxau6:amd64 (1:1.0.8-1+b2) ...
Setting up imagemagick-6-common (8:6.9.11.24+dfsg-1) ...
Setting up debootstrap (1.0.123) ...
Setting up libraw1394-11:amd64 (2.1.2-2) ...
Setting up libproxy1v5:amd64 (0.4.15-14) ...
Setting up libxentoolcore1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up pci.ids (0.0~2020.09.21-1) ...
Setting up libreadline5:amd64 (5.2+dfsg-3+b13) ...
Setting up libsodium23:amd64 (1.0.18-1) ...
Setting up odt2txt (0.5-7) ...
Setting up libgpm2:amd64 (1.20.7-6) ...
Setting up linux-base (4.6) ...
Setting up libmpg123-0:amd64 (1.26.3-1) ...
Setting up libogg0:amd64 (1.3.2-1+b1) ...
Setting up mime-support (3.64) ...
Setting up libjsr305-java (0.1~+svn49-11) ...
Setting up libspeex1:amd64 (1.2~rc1.2-1.1) ...
Setting up libshine3:amd64 (3.1.1-2) ...
Setting up bsdextrautils (2.36-3+b1) ...
update-alternatives: using /usr/bin/write.ul to provide /usr/bin/write (write) in auto mode
Setting up binutils-multiarch (2.35.1-2) ...
Setting up libdevmapper-event1.02.1:amd64 (2:1.02.171-3) ...
Setting up hicolor-icon-theme (0.17-2) ...
Setting up libtwolame0:amd64 (0.4.0-2) ...
Setting up libicu4j-java (62.1-2) ...
Setting up android-liblog (1:8.1.0+r23-8) ...
Setting up java-common (0.72) ...
Setting up libicu67:amd64 (67.1-4) ...
Setting up libdatrie1:amd64 (0.2.12-3) ...
Setting up libxencall1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libcommons-cli-java (1.4-2) ...
Setting up libmagic-mgc (1:5.38-5) ...
Setting up ncal (12.1.7) ...
Setting up libgsm1:amd64 (1.0.18-2) ...
Setting up gawk (1:5.0.1+dfsg-1) ...
Setting up mtools (4.0.24-1) ...
Setting up augeas-lenses (1.12.0-2) ...
Setting up psmisc (23.3-1) ...
Setting up libspiro1:amd64 (1:20200505-2) ...
Setting up attr (1:2.4.48-5) ...
Setting up libsoxr0:amd64 (0.1.3-4) ...
Setting up libvorbisidec1:amd64 (1.2.1+git20180316-7) ...
Setting up libarchive-zip-perl (1.68-1) ...
Setting up libyaml-0-2:amd64 (0.2.2-1) ...
Setting up libenca0:amd64 (1.19-1+b1) ...
Setting up libglib2.0-0:amd64 (2.66.1-2) ...
Setting up distro-info-data (0.44) ...
Setting up libpython3.9-minimal:amd64 (3.9.0-5) ...
Setting up libglvnd0:amd64 (1.3.2-1) ...
Setting up libsnmp-base (5.9+dfsg-3) ...
Setting up libpgm-5.3-0:amd64 (5.3.128~dfsg-2) ...
Setting up libhtml-tagset-perl (3.20-4) ...
Setting up libijs-0.35:amd64 (0.35-15) ...
Setting up unzip (6.0-25) ...
Setting up libaom0:amd64 (1.0.0.errata1-3) ...
Setting up libdebhelper-perl (13.2.1) ...
Setting up libbrotli1:amd64 (1.0.9-2+b1) ...
Setting up libsqlite3-0:amd64 (3.33.0-1) ...
Setting up libperl4-corelibs-perl (0.004-2) ...
Setting up libcbor0:amd64 (0.5.0+dfsg-2) ...
Setting up liblwp-mediatypes-perl (6.04-1) ...
Setting up libgdk-pixbuf2.0-common (2.40.0+dfsg-5) ...
Setting up dosfstools (4.1-2) ...
Setting up libnorm1:amd64 (1.5.8+dfsg2-2) ...
Setting up libmysofa1:amd64 (1.1~dfsg1-1) ...
Setting up libyajl2:amd64 (2.1.0-3) ...
Setting up x11-common (1:7.7+21) ...
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libtry-tiny-perl (0.30-1) ...
Setting up libsensors-config (1:3.6.0-2) ...
Setting up libvdeplug2 (2.3.2+r586-7) ...
Setting up libnghttp2-14:amd64 (1.41.0-3) ...
Setting up libmagic1:amd64 (1:5.38-5) ...
Setting up less (551-2) ...
Setting up perl-openssl-defaults:amd64 (5) ...
Setting up gettext-base (0.19.8.1-10) ...
Setting up libintellij-annotations-java (20.1.0-1) ...
Setting up m4 (1.4.18-4) ...
Setting up xkb-data (2.29-2) ...
Setting up liblzo2-2:amd64 (2.10-2) ...
Setting up libntfs-3g883 (1:2017.3.23AR.3-3) ...
Setting up libencode-locale-perl (1.05-1) ...
Setting up fontforge-common (1:20190801~dfsg-5) ...
Setting up libf2fs5:amd64 (1.11.0-1.1) ...
Setting up file (1:5.38-5) ...
Setting up libnetpbm10 (2:10.0-15.3+b2) ...
Setting up fonts-urw-base35 (20200910-1) ...
Setting up libjs-jquery-throttle-debounce (1.1+dfsg.1-1) ...
Setting up kmod (27+20200310-2) ...
Setting up libassuan0:amd64 (2.5.3-7.1) ...
Setting up libmpeg2-4:amd64 (0.5.1-9) ...
Setting up libcdio19:amd64 (2.1.0-2) ...
Setting up libfdt1:amd64 (1.6.0-1) ...
Setting up libxvidcore4:amd64 (2:1.3.7-1) ...
Setting up android-framework-res (1:8.1.0+r23-3) ...
Setting up libusbredirparser1:amd64 (0.8.0-1+b1) ...
Setting up libffi-dev:amd64 (3.3-4) ...
Setting up libunwind8:amd64 (1.3.2-2) ...
Setting up syslinux (3:6.04~git20190206.bf6db5b4+dfsg1-3) ...
Setting up libx264-160:amd64 (2:0.160.3011+gitcde9a93-2) ...
Setting up libjbig0:amd64 (2.1-3.1+b2) ...
Setting up libaec0:amd64 (1.0.4-1) ...
Setting up libcolord2:amd64 (1.4.4-2) ...
Setting up xxd (2:8.2.0716-3) ...
Setting up ntfs-3g (1:2017.3.23AR.3-3) ...
Setting up docx2txt (1.4-2) ...
Setting up libfakeroot:amd64 (1.25.3-1) ...
Setting up colord-data (1.4.4-2) ...
Setting up libjansson4:amd64 (2.13.1-1) ...
Setting up libsnappy1v5:amd64 (1.1.8-1) ...
Setting up libflac8:amd64 (1.3.3-1) ...
Setting up poppler-data (0.4.9-2) ...
Setting up acl (2.2.53-8) ...
Setting up libsasl2-modules-db:amd64 (2.1.27+dfsg-2) ...
Setting up libcap2-bin (1:2.44-1) ...
Setting up fakeroot (1.25.3-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up libdconf1:amd64 (0.38.0-1) ...
Setting up libasound2-data (1.2.3.2-1) ...
Setting up libid3tag0:amd64 (0.15.1b-14) ...
Setting up libprocyon-java (0.5.36-1) ...
Setting up liba52-0.7.4:amd64 (0.7.4-20) ...
Setting up libklibc:amd64 (2.0.8-1) ...
Setting up libxenforeignmemory1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up zip (3.0-11+b1) ...
Setting up libprotobuf-lite23:amd64 (3.12.3-2+b1) ...
Setting up autotools-dev (20180224.1) ...
Setting up libz3-4:amd64 (4.8.9-1) ...
Setting up exfat-utils (1.3.0-2) ...
Setting up libblas3:amd64 (3.9.0-3) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/blas/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
Setting up libisc-export1105:amd64 (1:9.11.19+dfsg-1) ...
Setting up libgmpxx4ldbl:amd64 (2:6.2.0+dfsg-6) ...
Setting up libpfm4:amd64 (4.10.1+git44-ga2909cd-1) ...
Setting up libjpeg62-turbo:amd64 (1:2.0.5-1.1) ...
Setting up junit (3.8.2-9) ...
Setting up libcapstone3:amd64 (4.0.1+really+3.0.5-2+b1) ...
Setting up libdvdread8:amd64 (6.1.1-2) ...
Setting up libslang2:amd64 (2.3.2-5) ...
Setting up libva2:amd64 (2.9.0-1) ...
Setting up libjaxen-java (1.1.6-4) ...
Setting up libwrap0:amd64 (7.6.q-30) ...
Setting up libx11-data (2:1.6.12-1) ...
Setting up libepoxy0:amd64 (1.5.4-1) ...
Setting up libnspr4:amd64 (2:4.28-1) ...
Setting up libjbig2dec0:amd64 (0.19-1) ...
Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b2) ...
Setting up libidn11:amd64 (1.33-2.4) ...
Setting up libmonoboehm-2.0-1 (6.8.0.105+dfsg-3) ...
Setting up bash-completion (1:2.11-2) ...
Setting up libcodec2-0.9:amd64 (0.9.2-3) ...
Setting up libapache-pom-java (18-1) ...
Setting up libavahi-common-data:amd64 (0.8-3) ...
Setting up libxpp3-java (1.1.4c-3) ...
Setting up liblirc-client0:amd64 (0.10.1-6.2) ...
Setting up libncurses6:amd64 (6.2+20200918-1) ...
Setting up libatinject-jsr330-api-java (1.0+ds1-5) ...
Setting up libdbus-1-3:amd64 (1.12.20-1) ...
Setting up dbus (1.12.20-1) ...
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Setting up liblzf1:amd64 (3.6-2) ...
Setting up libfribidi0:amd64 (1.0.8-2) ...
Setting up libopus0:amd64 (1.3.1-0.1) ...
Setting up libfaad2:amd64 (2.9.2-1) ...
Setting up libxenstore3.0:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libexif12:amd64 (0.6.22-2) ...
Setting up libpng16-16:amd64 (1.6.37-3) ...
Setting up libxml-commons-resolver1.1-java (1.2-11) ...
Setting up libmnl0:amd64 (1.0.4-3) ...
Setting up db5.3-util (5.3.28+dfsg1-0.6) ...
Setting up libvorbis0a:amd64 (1.3.7-1) ...
Setting up udev (246.6-2) ...
A chroot environment has been detected, udev not started.
Setting up libio-html-perl (1.001-1) ...
Setting up liborc-0.4-0:amd64 (1:0.4.32-1) ...
Setting up libyara4:amd64 (4.0.2-1) ...
Setting up libtcl8.6:amd64 (8.6.10+dfsg-1) ...
Setting up autopoint (0.19.8.1-10) ...
Setting up binfmt-support (2.2.1-1) ...
update-binfmts: warning: /usr/share/binfmts/cli: no executable /usr/bin/cli found, but continuing anyway as you request
Created symlink /etc/systemd/system/multi-user.target.wants/binfmt-support.service → /lib/systemd/system/binfmt-support.service.
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libwebp6:amd64 (0.6.1-2+b1) ...
Setting up fonts-dejavu-core (2.37-2) ...
Setting up lsscsi (0.31-1+b1) ...
Setting up device-tree-compiler (1.6.0-1) ...
Setting up osinfo-db (0.20200325-1) ...
Setting up libpcsclite1:amd64 (1.9.0-1) ...
Setting up wabt (1.0.19-1) ...
Setting up libsensors5:amd64 (1:3.6.0-2) ...
Setting up libncursesw6:amd64 (6.2+20200918-1) ...
Setting up libdaxctl1:amd64 (70.1-1) ...
Setting up libxtables12:amd64 (1.8.5-3) ...
Setting up liburing1:amd64 (0.7-1) ...
Setting up libltdl7:amd64 (2.4.6-14) ...
Setting up libfftw3-double3:amd64 (3.3.8-2) ...
Setting up libglapi-mesa:amd64 (20.2.1-1) ...
Setting up qemu-system-data (1:5.1+dfsg-4) ...
Setting up libsasl2-2:amd64 (2.1.27+dfsg-2) ...
Setting up libgfortran5:amd64 (10.2.0-15) ...
Setting up libvulkan1:amd64 (1.2.154.1-1) ...
Setting up autoconf (2.69-11.1) ...
Setting up lz4 (1.9.2-2) ...
Setting up libsrt1-gnutls:amd64 (1.4.2-1) ...
Setting up seabios (1.14.0-1) ...
Setting up libfdisk1:amd64 (2.36-3+b1) ...
Setting up scrub (2.6.1-1+b1) ...
Setting up libtimedate-perl (2.3300-1) ...
Setting up libgif7:amd64 (5.1.9-1) ...
Setting up libxengnttab1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libatk1.0-data (2.36.0-2) ...
Setting up libantlr3-runtime-java (3.5.2-9) ...
Setting up libsmali-java (2.4.0-1) ...
Setting up libpci3:amd64 (1:3.7.0-4) ...
Setting up libnuma1:amd64 (2.0.12-1+b1) ...
Setting up libvidstab1.1:amd64 (1.1.0-2+b1) ...
Setting up libslirp0:amd64 (4.3.1-1) ...
Setting up libmad0:amd64 (0.15.1b-10) ...
Setting up liblua5.2-0:amd64 (5.2.4-1.1+b3) ...
Setting up liblqr-1-0:amd64 (0.4.2-2.1) ...
Setting up sensible-utils (0.0.12+nmu1) ...
Setting up libuninameslist1:amd64 (20200413-1) ...
Setting up libdv4:amd64 (1.0.0-12) ...
Setting up ocl-icd-libopencl1:amd64 (2.2.12-4) ...
Setting up uuid-runtime (2.36-3+b1) ...
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Created symlink /etc/systemd/system/sockets.target.wants/uuidd.socket → /lib/systemd/system/uuidd.socket.
Setting up libasyncns0:amd64 (0.8-6+b1) ...
Setting up extlinux (3:6.04~git20190206.bf6db5b4+dfsg1-3) ...
Setting up libxshmfence1:amd64 (1.3-1) ...
Setting up libvpx6:amd64 (1.8.2-1) ...
Setting up libwavpack1:amd64 (5.3.0-1) ...
Setting up libbs2b0:amd64 (3.1.0+dfsg-2.2+b1) ...
Setting up ipxe-qemu (1.0.0+git-20190125.36a4c85-5) ...
Setting up libuchardet0:amd64 (0.0.7-1) ...
Setting up kpartx (0.8.4-4) ...
Setting up lzop (1.04-1) ...
Setting up libxml-commons-external-java (1.4.01-5) ...
Setting up libasound2:amd64 (1.2.3.2-1) ...
Setting up libnl-3-200:amd64 (3.4.0-1+b1) ...
Setting up libxenevtchn1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libpam-systemd:amd64 (246.6-2) ...
Setting up libdca0:amd64 (0.0.7-2) ...
Setting up libefivar1:amd64 (37-5) ...
Setting up libndctl6:amd64 (70.1-1) ...
Setting up libdav1d4:amd64 (0.7.1-3) ...
Setting up libopenjp2-7:amd64 (2.3.1-1) ...
Setting up libsub-override-perl (0.09-2) ...
Setting up libewf2 (20140807-2+b1) ...
Setting up libopenal-data (1:1.19.1-2) ...
Setting up libthai-data (0.1.28-3) ...
Setting up libssh2-1:amd64 (1.8.0-2.1) ...
Setting up netbase (6.2) ...
Setting up libjson-glib-1.0-common (1.6.0-1) ...
Setting up sgml-base (1.30) ...
Setting up libatk1.0-0:amd64 (2.36.0-2) ...
Setting up libtiff5:amd64 (4.1.0+git191117-2) ...
Setting up libwayland-egl1:amd64 (1.18.0-2~exp1.1) ...
Setting up libusb-1.0-0:amd64 (2:1.0.23-2) ...
Setting up ocaml-base-nox (4.11.1-3) ...
Setting up libgphoto2-port12:amd64 (2.5.26-1) ...
Setting up exfat-fuse (1.3.0-2) ...
Setting up dmidecode (3.2-4) ...
Setting up python3.9-minimal (3.9.0-5) ...
Setting up glib-networking-common (2.66.0-2) ...
Setting up libxerces2-java (2.12.1-1) ...
Setting up libsane-common (1.0.31-2) ...
Setting up giflib-tools (5.1.9-1) ...
Setting up libieee1284-3:amd64 (0.2.11-14) ...
Setting up libmfx1:amd64 (20.3.0-1) ...
Setting up libpython3.8-stdlib:amd64 (3.8.6-1) ...
Setting up libfido2-1:amd64 (1.5.0-2) ...
Setting up libhivex0:amd64 (1.3.19-1+b2) ...
Setting up libaio1:amd64 (0.3.112-8) ...
Setting up libde265-0:amd64 (1.0.7-1) ...
Setting up python3.8 (3.8.6-1) ...
Setting up fpc-source-3.2.0 (3.2.0+dfsg-8) ...
Setting up abootimg (0.6-1+b2) ...
Setting up klibc-utils (2.0.8-1) ...
No diversion 'diversion of /usr/share/initramfs-tools/hooks/klibc to /usr/share/initramfs-tools/hooks/klibc^i-t by klibc-utils', none removed.
Setting up libsamplerate0:amd64 (0.1.9-2) ...
Setting up libantlr-java (2.7.7+dfsg-10) ...
Setting up libyaml-snake-java (1.26+ds-1) ...
Setting up libpmem1:amd64 (1.9.1-3) ...
Setting up android-libbase (1:8.1.0+r23-8) ...
Setting up openssl (1.1.1h-1) ...
Setting up libwebpmux3:amd64 (0.6.1-2+b1) ...
Setting up libbsd0:amd64 (0.10.0-1) ...
Setting up libdrm-common (2.4.102-1) ...
Setting up libf2fs-format4:amd64 (1.11.0-1.1) ...
Setting up supermin (5.2.0-2) ...
Setting up libelf1:amd64 (0.181-1) ...
Setting up libxendevicemodel1:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libxml2:amd64 (2.9.10+dfsg-6.1) ...
Setting up xdg-utils (1.1.3-2) ...
Setting up zstd (1.4.5+dfsg-4) ...
Setting up libbsd-dev:amd64 (0.10.0-1) ...
Setting up liburi-perl (1.76-2) ...
Setting up iso-codes (4.5.0-1) ...
Setting up liblocale-gettext-perl (1.07-4) ...
Setting up sqlite3 (3.33.0-1) ...
Setting up libgudev-1.0-0:amd64 (234-1) ...
Setting up libpolkit-gobject-1-0:amd64 (0.105-29) ...
Setting up libzvbi-common (0.2.35-18) ...
Setting up p7zip (16.02+dfsg-8) ...
Setting up libprocps8:amd64 (2:3.3.16-5) ...
Setting up libdate-manip-perl (6.82-1) ...
Setting up mdadm (4.1-8) ...
W: mdadm: failed to load MD subsystem.
Generating mdadm.conf... done (failed to scan arrays; /proc probably not mounted).
update-initramfs: deferring update (trigger activated)
/usr/sbin/grub-probe: error: failed to get canonical path of `tank/debian/schroot/unstable-amd64-sbuild-477d791b-2034-4c62-b395-3f18678e328a'.
update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Setting up libmp3lame0:amd64 (3.100-3) ...
Setting up node-jquery (3.5.1+dfsg-4) ...
Setting up libsz2:amd64 (1.0.4-1) ...
Setting up libbfio1:amd64 (20170123-5) ...
Setting up libvorbisenc2:amd64 (1.3.7-1) ...
Setting up libpython3.9-stdlib:amd64 (3.9.0-5) ...
Setting up libpython3-stdlib:amd64 (3.8.6-1) ...
Setting up libdvdnav4:amd64 (6.1.0-1+b1) ...
Setting up libpopt0:amd64 (1.18-1) ...
Setting up gnupg-utils (2.2.20-1) ...
Setting up libiec61883-0:amd64 (1.2.0-3) ...
Setting up libserd-0-0:amd64 (0.30.6-1) ...
Setting up libxkbcommon0:amd64 (1.0.1-1) ...
Setting up libwayland-client0:amd64 (1.18.0-2~exp1.1) ...
Setting up libnet-ssleay-perl (1.88-3) ...
Setting up cryptsetup-bin (2:2.3.4-1) ...
Setting up automake (1:1.16.2-4) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libmng1:amd64 (1.0.10+dfsg-3.1+b5) ...
Setting up libdom4j-java (2.1.3-1) ...
Setting up libgs9-common (9.53.3~dfsg-4) ...
Setting up libavc1394-0:amd64 (0.5.4-5) ...
Setting up genisoimage (9:1.1.11-3.1) ...
Setting up libfile-stripnondeterminism-perl (1.9.0-1) ...
Setting up glib-networking-services (2.66.0-2) ...
Setting up libzvbi0:amd64 (0.2.35-18) ...
Setting up libldm-1.0-0:amd64 (0.2.4-3) ...
Setting up libice6:amd64 (2:1.0.10-1) ...
Setting up libhttp-date-perl (6.05-1) ...
Setting up libdw1:amd64 (0.181-1) ...
Setting up libxdmcp6:amd64 (1:1.1.2-3) ...
Setting up liblapack3:amd64 (3.9.0-3) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
Setting up libncurses-dev:amd64 (6.2+20200918-1) ...
Setting up libxcb1:amd64 (1.14-2) ...
Setting up libgmp-dev:amd64 (2:6.2.0+dfsg-6) ...
Setting up libxcb-xfixes0:amd64 (1.14-2) ...
Setting up libfile-listing-perl (6.11-1) ...
Setting up libzmq5:amd64 (4.3.3-2+b1) ...
Setting up android-libcutils (1:8.1.0+r23-8) ...
Setting up libcaca0:amd64 (0.99.beta19-2.1) ...
Setting up squashfs-tools (1:4.4-2) ...
Setting up db-util (5.3.1+nmu1) ...
Setting up jarwrapper (0.77) ...
Setting up libtool (2.4.6-14) ...
Setting up ghc (8.8.4-1) ...
update-alternatives: using /usr/bin/runghc to provide /usr/bin/runhaskell (runhaskell) in auto mode
update-alternatives: using /usr/bin/ghc to provide /usr/bin/haskell-compiler (haskell-compiler) in auto mode
Setting up libarchive13:amd64 (3.4.3-2) ...
Setting up libxcb-render0:amd64 (1.14-2) ...
Setting up libcdio-cdda2:amd64 (10.2+2.0.0-1+b2) ...
Setting up libvhdi1:amd64 (20181227-1.1+b1) ...
Setting up iproute2 (5.9.0-1) ...
Setting up f2fs-tools (1.11.0-1.1) ...
Setting up libjdom1-java (1.1.3-2) ...
Setting up libgusb2:amd64 (0.3.4-0.2) ...
Setting up libcdio-paranoia2:amd64 (10.2+2.0.0-1+b2) ...
Setting up libxcb-glx0:amd64 (1.14-2) ...
Setting up libwebpdemux2:amd64 (0.6.1-2+b1) ...
Setting up btrfs-progs (5.7-1) ...
Setting up libedit2:amd64 (3.1-20191231-1) ...
Setting up libcommons-parent-java (43-1) ...
Setting up libxcb-shape0:amd64 (1.14-2) ...
Setting up libavahi-common3:amd64 (0.8-3) ...
Setting up libx265-192:amd64 (3.4-2) ...
Setting up libdns-export1110 (1:9.11.19+dfsg-1) ...
Setting up isc-dhcp-client (4.4.1-2.1+b2) ...
Setting up libldap-2.4-2:amd64 (2.4.54+dfsg-1) ...
Setting up libnet-http-perl (6.19-1) ...
Setting up libcolorhug2:amd64 (1.4.4-2) ...
Setting up libstringtemplate-java (3.2.1-2) ...
Setting up libcurl3-gnutls:amd64 (7.72.0-1) ...
Setting up libefiboot1:amd64 (37-5) ...
Setting up python3 (3.8.6-1) ...
Setting up p7zip-full (16.02+dfsg-8) ...
Setting up libnss3:amd64 (2:3.56-1) ...
Setting up libxcb-shm0:amd64 (1.14-2) ...
Setting up python3-sortedcontainers (2.1.0-2) ...
Setting up libxom-java (1.2.10-1) ...
Setting up libcacard0:amd64 (1:2.7.0-1) ...
Setting up python3-editorconfig (0.12.2-2.1) ...
Setting up fdisk (2.36-3+b1) ...
Setting up libjson-glib-1.0-0:amd64 (1.6.0-1) ...
Setting up fp-utils-3.2.0 (3.2.0+dfsg-8) ...
update-alternatives: using /usr/lib/x86_64-linux-gnu/fpc/3.2.0 to provide /usr/lib/x86_64-linux-gnu/fpc/default (fp-utils) in auto mode
Setting up python3-atomicwrites (1.4.0-1) ...
Setting up libxmlunit-java (1.6-2) ...
Setting up libnl-route-3-200:amd64 (3.4.0-1+b1) ...
Setting up help2man (1.47.16) ...
Setting up libxcb-present0:amd64 (1.14-2) ...
Setting up ldmtool (0.2.4-3) ...
Setting up sng (1.1.0-4) ...
Setting up python3-six (1.15.0-1) ...
Setting up gdisk (1.0.5-1) ...
Setting up libvmdk1:amd64 (20200926-1) ...
Setting up python3-progressbar (2.5-2) ...
Setting up libthai0:amd64 (0.1.28-3) ...
Setting up ca-certificates (20200601) ...
Updating certificates in /etc/ssl/certs...
126 added, 0 removed; done.
Setting up libvorbisfile3:amd64 (1.3.7-1) ...
Setting up dbus-user-session (1.12.20-1) ...
Setting up python3-roman (2.0.0-5) ...
Setting up python3-pycodestyle (2.6.0-1) ...
Setting up libsnmp40:amd64 (5.9+dfsg-3) ...
Setting up python3-pypdf2 (1.26.0-4) ...
Setting up libllvm11:amd64 (1:11.0.0-2) ...
Setting up python3-wcwidth (0.1.9+dfsg1-2) ...
Setting up python3-pyparsing (2.4.7-1) ...
Setting up libxenmisc4.11:amd64 (4.11.4+24-gddaaccbbab-1) ...
Setting up libfreetype6:amd64 (2.10.2+dfsg-3) ...
Setting up libguava-java (29.0-6) ...
Setting up libpcap0.8:amd64 (1.9.1-4) ...
Setting up libxcb-sync1:amd64 (1.14-2) ...
Setting up android-libunwind (10.0.0+r36-3) ...
Setting up fp-utils (3.2.0+dfsg-8) ...
Setting up libpython3.8:amd64 (3.8.6-1) ...
Setting up libaugeas0:amd64 (1.12.0-2) ...
Setting up shared-mime-info (2.0-1) ...
Setting up libdc1394-25:amd64 (2.2.6-3) ...
Setting up libcroco3:amd64 (0.6.13-1) ...
Setting up python3-typing-extensions (3.7.4.3-1) ...
Setting up ucf (3.0043) ...
Setting up netpbm (2:10.0-15.3+b2) ...
Setting up pciutils (1:3.7.0-4) ...
Setting up python3-regex (0.1.20200714-1+b1) ...
Setting up python3-toml (0.10.1-1) ...
Setting up calendar (12.1.7) ...
Setting up libcommons-lang3-java (3.11-1) ...
Setting up librubberband2:amd64 (1.9.0-1) ...
Setting up libsndio7.0:amd64 (1.5.0-3) ...
Setting up libxcb-dri2-0:amd64 (1.14-2) ...
Setting up dh-strip-nondeterminism (1.9.0-1) ...
Setting up libwww-robotrules-perl (6.02-1) ...
Setting up android-libbacktrace (1:8.1.0+r23-8) ...
Setting up libjack-jackd2-0:amd64 (1.9.16~dfsg-1) ...
Setting up libparted2:amd64 (3.3-4) ...
Setting up libvirt0:amd64 (6.6.0-2) ...
Setting up libdrm2:amd64 (2.4.102-1) ...
Setting up libhdf5-103-1:amd64 (1.10.6+repack-2) ...
Setting up dwz (0.13-5) ...
Setting up libflite1:amd64 (2.2-1) ...
Setting up libva-drm2:amd64 (2.9.0-1) ...
Setting up groff-base (1.22.4-5) ...
Setting up libsord-0-0:amd64 (0.16.6-1) ...
Setting up libwayland-cursor0:amd64 (1.18.0-2~exp1.1) ...
Setting up xml-core (0.18+nmu1) ...
Setting up libsratom-0-0:amd64 (0.6.6-1) ...
Setting up libhtml-parser-perl (3.75-1) ...
Setting up procps (2:3.3.16-5) ...
update-alternatives: using /usr/bin/w.procps to provide /usr/bin/w (w) in auto mode
Setting up libncurses5-dev:amd64 (6.2+20200918-1) ...
Setting up python3-jsondiff (1.1.1-4) ...
update-alternatives: using /usr/bin/jsondiff-jsondiff to provide /usr/bin/jsondiff (jsondiff) in auto mode
Setting up python3-jsbeautifier (1.13.0-1) ...
Setting up libcurl4:amd64 (7.72.0-1) ...
Setting up libpolkit-agent-1-0:amd64 (0.105-29) ...
Setting up libx11-6:amd64 (2:1.6.12-1) ...
Setting up libharfbuzz0b:amd64 (2.6.7-1) ...
Setting up python3-mccabe (0.6.1-3) ...
Setting up libfontforge3 (1:20190801~dfsg-5) ...
Setting up curl (7.72.0-1) ...
Setting up libsndfile1:amd64 (1.0.28-8) ...
Setting up qemu-utils (1:5.1+dfsg-4) ...
Setting up libjs-jquery (3.5.1+dfsg-4) ...
Setting up lsb-release (11.1.0) ...
Setting up libjs-jquery-hotkeys (0~20130707+git2d51e3a9+dfsg-2) ...
Setting up initramfs-tools-core (0.139) ...
Setting up python3-argcomplete (1.8.1-1.3) ...
Setting up python3-magic (2:0.4.15-4) ...
Setting up python3-pathspec (0.8.0-1) ...
Setting up python3-lib2to3 (3.8.6-1) ...
Setting up python3-appdirs (1.4.4-1) ...
Setting up libxcomposite1:amd64 (1:0.4.5-1) ...
Setting up libsm6:amd64 (2:1.2.3-1) ...
Setting up liblilv-0-0:amd64 (0.24.10-1) ...
Setting up policykit-1 (0.105-29) ...
Setting up libopenmpt0:amd64 (0.4.11-1) ...
Setting up libavahi-client3:amd64 (0.8-3) ...
Setting up libllvm9:amd64 (1:9.0.1-14+b1) ...
Setting up libio-socket-ssl-perl (2.068-1) ...
Setting up libgstreamer1.0-0:amd64 (1.18.0-3) ...
Setcap worked! gst-ptp-helper is not suid!
Setting up python3.9 (3.9.0-5) ...
Setting up python3-cffi-backend (1.14.3-2) ...
Setting up python3-binwalk (2.2.0+dfsg1-1) ...
Setting up libaa1:amd64 (1.4p5-46+b1) ...
Setting up libhttp-message-perl (6.26-1) ...
Setting up libdrm-amdgpu1:amd64 (2.4.102-1) ...
Setting up libhdf5-hl-100:amd64 (1.10.6+repack-2) ...
Setting up python3-pyxattr (0.6.1-2+b2) ...
Setting up python3-pkg-resources (50.3.0-1) ...
Setting up python3-distutils (3.8.6-1) ...
Setting up dh-python (4.20200925) ...
Setting up python3-more-itertools (4.2.0-3) ...
Setting up libxcb-dri3-0:amd64 (1.14-2) ...
Setting up librpmio8 (4.14.2.1+dfsg1-1.1+b2) ...
Setting up python3-attr (19.3.0-5) ...
Setting up libarchive-tools (3.4.3-2) ...
Setting up libpaper1:amd64 (1.1.28+b1) ...

Creating config file /etc/papersize with new version
Setting up tcpdump (4.9.3-6) ...
Setting up libhttp-negotiate-perl (6.01-1) ...
Setting up libibverbs1:amd64 (31.0-1) ...
Setting up libdrm-nouveau2:amd64 (2.4.102-1) ...
Setting up gettext (0.19.8.1-10) ...
Setting up enjarify (1:1.0.3-4) ...
Setting up librpm8 (4.14.2.1+dfsg1-1.1+b2) ...
Setting up python3-libarchive-c (2.9-0.1) ...
Setting up libxdamage1:amd64 (1:1.1.5-2) ...
Setting up libsaxonhe-java (9.9.1.5+dfsg-1) ...
Setting up python3-tlsh (3.4.4+20151206-1.3+b3) ...
Setting up initramfs-tools (0.139) ...
update-initramfs: deferring update (trigger activated)
Setting up python3-setuptools (50.3.0-1) ...
Setting up libxpm4:amd64 (1:3.5.12-1) ...
Setting up python3-distro (1.5.0-1) ...
Setting up libxrender1:amd64 (1:0.9.10-1) ...
Setting up python3-py (1.9.0-1) ...
Setting up libgbm1:amd64 (20.2.1-1) ...
Setting up libhttp-cookies-perl (6.08-1) ...
Setting up libpulse0:amd64 (13.0-5) ...
Setting up python3-colorama (0.4.3-1) ...
Setting up python3-typed-ast (1.4.1-1+b2) ...
Setting up libcommons-io-java (2.8.0-1) ...
Setting up libdrm-radeon1:amd64 (2.4.102-1) ...
Setting up fontconfig-config (2.13.1-4.2) ...
Setting up openssh-client (1:8.3p1-1) ...
Setting up python3-mypy-extensions (0.4.3-2) ...
Setting up libhtml-tree-perl (5.07-2) ...
Setting up python3-pyflakes (2.2.0-1) ...
Setting up libdrm-intel1:amd64 (2.4.102-1) ...
Setting up libgl1-mesa-dri:amd64 (20.2.1-1) ...
Setting up libheif1:amd64 (1.9.1-1) ...
Setting up jsbeautifier (1.13.0-1) ...
Setting up libxext6:amd64 (2:1.3.3-1+b2) ...
Setting up parted (3.3-4) ...
Setting up python3-all (3.8.6-1) ...
Setting up python3-coverage (5.1+dfsg.1-2+b1) ...
Setting up libgstreamer-plugins-base1.0-0:amd64 (1.18.0-2) ...
Setting up python3-nose2 (0.9.2-1) ...
Setting up dconf-service (0.38.0-1) ...
Setting up libopenal1:amd64 (1:1.19.1-2) ...
Setting up rpm-common (4.14.2.1+dfsg1-1.1+b2) ...
Setting up libpaper-utils (1.1.28+b1) ...
Setting up libatspi2.0-0:amd64 (2.38.0-2) ...
Setting up python3-zipp (1.0.0-3) ...
Setting up python3-click (7.1.2-1) ...
Setting up libxmlbeans-java (3.0.2-1) ...
Setting up android-libutils (1:8.1.0+r23-8) ...
Setting up man-db (2.9.3-2) ...
Installing new version of config file /etc/apparmor.d/usr.bin.man ...
Not building database; man-db/auto-update is not 'true'.
Setting up libxvmc1:amd64 (2:1.0.12-2) ...
Setting up libxxf86vm1:amd64 (1:1.1.4-1+b2) ...
Setting up hdf5-tools (1.10.6+repack-2) ...
Setting up intltool-debian (0.35.0+20060710.5) ...
Setting up libafflib0v5:amd64 (3.7.19-1) ...
Setting up python3-flake8 (3.8.3-1) ...
Setting up grub-common (2.04-9) ...
Setting up libatk-bridge2.0-0:amd64 (2.38.0-1) ...
Setting up libegl-mesa0:amd64 (20.2.1-1) ...
Setting up python3-packaging (20.4-1) ...
Setting up python3-chardet (3.0.4-7) ...
Setting up libvirglrenderer1:amd64 (0.8.2-4) ...
Setting up linux-image-5.9.0-1-amd64 (5.9.1-1) ...
I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.9.0-1-amd64
I: /initrd.img.old is now a symlink to boot/initrd.img-5.9.0-1-amd64
I: /vmlinuz is now a symlink to boot/vmlinuz-5.9.0-1-amd64
I: /initrd.img is now a symlink to boot/initrd.img-5.9.0-1-amd64
/etc/kernel/postinst.d/initramfs-tools:
update-initramfs: Generating /boot/initrd.img-5.9.0-1-amd64
W: mkconf: MD subsystem is not loaded, thus I cannot scan for arrays.
W: mdadm: failed to auto-generate temporary mdadm.conf file.
Setting up libxfixes3:amd64 (1:5.0.3-2) ...
Setting up python3-cryptography (3.1-1+b1) ...
Setting up libjs-jquery-metadata (12-1.1) ...
Setting up libgdk-pixbuf2.0-0:amd64 (2.40.0+dfsg-5) ...
Setting up python3-debian (0.1.38) ...
Setting up libxinerama1:amd64 (2:1.1.4-2) ...
Setting up libsdl1.2debian:amd64 (1.2.15+dfsg2-5) ...
Setting up bsdmainutils (12.1.7) ...
Setting up libxv1:amd64 (2:1.0.11-1) ...
Setting up libjs-jquery-isonscreen (1.2.0-1) ...
Setting up librpmbuild8 (4.14.2.1+dfsg1-1.1+b2) ...
Setting up libxrandr2:amd64 (2:1.5.1-1) ...
Setting up libimlib2:amd64 (1.7.0-1) ...
Setting up llvm-9-runtime (1:9.0.1-14+b1) ...
Setting up libxt6:amd64 (1:1.2.0-1) ...
Setting up libaudio2:amd64 (1.9.4-6+b1) ...
Setting up python3-numpy (1:1.19.2-2+b1) ...
Setting up librpmsign8 (4.14.2.1+dfsg1-1.1+b2) ...
Setting up libcups2:amd64 (2.3.3-3) ...
Setting up libjs-jquery-tablesorter (1:2.31.3+dfsg1-1) ...
Setting up libvdpau1:amd64 (1.4-2) ...
Setting up libegl1:amd64 (1.3.2-1) ...
Setting up libxss1:amd64 (1:1.2.3-1) ...
Setting up libfontconfig1:amd64 (2.13.1-4.2) ...
Setting up libtsk19:amd64 (4.10.0+dfsg-1) ...
Setting up libbluray2:amd64 (1:1.2.0-3) ...
Setting up libva-x11-2:amd64 (2.9.0-1) ...
Setting up librdmacm1:amd64 (31.0-1) ...
Setting up gtk-update-icon-cache (3.24.23-2) ...
Setting up fontconfig (2.13.1-4.2) ...
Regenerating fonts cache... done.
Setting up libxft2:amd64 (2.3.2-2) ...
Setting up libglx-mesa0:amd64 (20.2.1-1) ...
Setting up android-libziparchive (1:8.1.0+r23-8) ...
Setting up qemu-system-common (1:5.1+dfsg-4) ...
Setting up python3-pdfminer (20200726-1) ...
Setting up python3-importlib-metadata (1.6.0-2) ...
Setting up libgs9:amd64 (9.53.3~dfsg-4) ...
Setting up caca-utils (0.99.beta19-2.1) ...
Setting up libxi6:amd64 (2:1.7.10-1) ...
Setting up libglx0:amd64 (1.3.2-1) ...
Setting up dconf-gsettings-backend:amd64 (0.38.0-1) ...
Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-11+b1) ...
Setting up rpm2cpio (4.14.2.1+dfsg1-1.1+b2) ...
Setting up python3-cov-core (1.15.0-3) ...
Setting up grub2-common (2.04-9) ...
Setting up libxtst6:amd64 (2:1.2.3-1) ...
Setting up po-debconf (1.0.21) ...
Setting up libtk8.6:amd64 (8.6.10-1) ...
Setting up libxcursor1:amd64 (1:1.2.0-2) ...
Setting up libspice-server1:amd64 (0.14.3-1) ...
Setting up libpango-1.0-0:amd64 (1.46.2-1) ...
Setting up qemu-system-x86 (1:5.1+dfsg-4) ...
Setting up libxxf86dga1:amd64 (2:1.1.4-1+b3) ...
Setting up python3-h5py-serial (2.10.0-9+b1) ...
Setting up flake8 (3.8.3-1) ...
Setting up black (20.8b1-2) ...
Setting up linux-image-amd64 (5.9.1-1) ...
Setting up ghostscript (9.53.3~dfsg-4) ...
Setting up python3-rpm (4.14.2.1+dfsg1-1.1+b2) ...
Setting up libcairo2:amd64 (1.16.0-4) ...
Setting up libavutil56:amd64 (7:4.3.1-4) ...
Setting up libpocketsphinx3:amd64 (0.8+5prealpha+1-12) ...
Setting up libmagickcore-6.q16-6:amd64 (8:6.9.11.24+dfsg-1+b1) ...
Setting up libgl1:amd64 (1.3.2-1) ...
Setting up libass9:amd64 (1:0.14.0-2) ...
Setting up llvm-9 (1:9.0.1-14+b1) ...
Setting up adwaita-icon-theme (3.38.0-1) ...
update-alternatives: using /usr/share/icons/Adwaita/cursor.theme to provide /usr/share/icons/default/index.theme (x-cursor-theme) in auto mode
Setting up llvm-runtime (1:9.0-49.1) ...
Setting up android-libandroidfw:amd64 (1:8.1.0+r23-3+b2) ...
Setting up libgd3:amd64 (2.3.0-2) ...
Setting up python3-h5py (2.10.0-9) ...
Setting up libpostproc55:amd64 (7:4.3.1-4) ...
Setting up llvm (1:9.0-49.1) ...
Setting up python3-pluggy (0.13.0-5) ...
Setting up sleuthkit (4.10.0+dfsg-1) ...
Setting up libpoppler102:amd64 (20.09.0-2) ...
Setting up libtheora0:amd64 (1.1.1+dfsg.1-15) ...
Setting up libmagickwand-6.q16-6:amd64 (8:6.9.11.24+dfsg-1+b1) ...
Setting up libswscale5:amd64 (7:4.3.1-4) ...
Setting up libcairo-gobject2:amd64 (1.16.0-4) ...
Setting up poppler-utils (20.09.0-2) ...
Setting up libpangoft2-1.0-0:amd64 (1.46.2-1) ...
Setting up libsdl2-2.0-0:amd64 (2.0.12+dfsg1-4) ...
Setting up android-libaapt:amd64 (1:8.1.0+r23-3+b2) ...
Setting up libgtk-3-common (3.24.23-2) ...
Setting up aapt (1:8.1.0+r23-3+b2) ...
Setting up libpangocairo-1.0-0:amd64 (1.46.2-1) ...
Setting up gsettings-desktop-schemas (3.38.0-2) ...
Setting up libpoppler-glib8:amd64 (20.09.0-2) ...
Setting up python3-pytest (4.6.11-1) ...
Setting up python3-pytest-cov (2.8.1-1) ...
Setting up libswresample3:amd64 (7:4.3.1-4) ...
Setting up oggvideotools (0.9.1-5.1) ...
Setting up libavresample4:amd64 (7:4.3.1-4) ...
Setting up librsvg2-2:amd64 (2.50.1+dfsg-1) ...
Setting up libgphoto2-6:amd64 (2.5.26-1) ...
Setting up r-base-core (4.0.3-1) ...

Creating config file /etc/R/Renviron with new version
Setting up imagemagick-6.q16 (8:6.9.11.24+dfsg-1+b1) ...
update-alternatives: using /usr/bin/compare-im6.q16 to provide /usr/bin/compare (compare) in auto mode
update-alternatives: using /usr/bin/compare-im6.q16 to provide /usr/bin/compare-im6 (compare-im6) in auto mode
update-alternatives: using /usr/bin/animate-im6.q16 to provide /usr/bin/animate (animate) in auto mode
update-alternatives: using /usr/bin/animate-im6.q16 to provide /usr/bin/animate-im6 (animate-im6) in auto mode
update-alternatives: using /usr/bin/convert-im6.q16 to provide /usr/bin/convert (convert) in auto mode
update-alternatives: using /usr/bin/convert-im6.q16 to provide /usr/bin/convert-im6 (convert-im6) in auto mode
update-alternatives: using /usr/bin/composite-im6.q16 to provide /usr/bin/composite (composite) in auto mode
update-alternatives: using /usr/bin/composite-im6.q16 to provide /usr/bin/composite-im6 (composite-im6) in auto mode
update-alternatives: using /usr/bin/conjure-im6.q16 to provide /usr/bin/conjure (conjure) in auto mode
update-alternatives: using /usr/bin/conjure-im6.q16 to provide /usr/bin/conjure-im6 (conjure-im6) in auto mode
update-alternatives: using /usr/bin/import-im6.q16 to provide /usr/bin/import (import) in auto mode
update-alternatives: using /usr/bin/import-im6.q16 to provide /usr/bin/import-im6 (import-im6) in auto mode
update-alternatives: using /usr/bin/identify-im6.q16 to provide /usr/bin/identify (identify) in auto mode
update-alternatives: using /usr/bin/identify-im6.q16 to provide /usr/bin/identify-im6 (identify-im6) in auto mode
update-alternatives: using /usr/bin/stream-im6.q16 to provide /usr/bin/stream (stream) in auto mode
update-alternatives: using /usr/bin/stream-im6.q16 to provide /usr/bin/stream-im6 (stream-im6) in auto mode
update-alternatives: using /usr/bin/display-im6.q16 to provide /usr/bin/display (display) in auto mode
update-alternatives: using /usr/bin/display-im6.q16 to provide /usr/bin/display-im6 (display-im6) in auto mode
update-alternatives: using /usr/bin/montage-im6.q16 to provide /usr/bin/montage (montage) in auto mode
update-alternatives: using /usr/bin/montage-im6.q16 to provide /usr/bin/montage-im6 (montage-im6) in auto mode
update-alternatives: using /usr/bin/mogrify-im6.q16 to provide /usr/bin/mogrify (mogrify) in auto mode
update-alternatives: using /usr/bin/mogrify-im6.q16 to provide /usr/bin/mogrify-im6 (mogrify-im6) in auto mode
Setting up libavcodec58:amd64 (7:4.3.1-4) ...
Setting up glib-networking:amd64 (2.66.0-2) ...
Setting up libchromaprint1:amd64 (1.5.0-1) ...
Setting up libsoup2.4-1:amd64 (2.72.0-2) ...
Setting up libavformat58:amd64 (7:4.3.1-4) ...
Setting up libsane1:amd64 (1.0.31-2) ...
Adding scanner group...
Setting up mplayer (2:1.4+ds1-1) ...
Setting up imagemagick (8:6.9.11.24+dfsg-1+b1) ...
Setting up libavfilter7:amd64 (7:4.3.1-4) ...
Setting up libsoup-gnome2.4-1:amd64 (2.72.0-2) ...
Setting up librest-0.7-0:amd64 (0.8.1-1+b1) ...
Setting up libgtk-3-0:amd64 (3.24.23-2) ...
Setting up colord (1.4.4-2) ...
Setting up libsane:amd64 (1.0.31-2) ...
Setting up libgdraw6 (1:20190801~dfsg-5) ...
Setting up fontforge-extras (1:20190801~dfsg-5) ...
Setting up libavdevice58:amd64 (7:4.3.1-4) ...
Setting up ffmpeg (7:4.3.1-4) ...
Setting up default-jre-headless (2:1.11-72) ...
Setting up libwww-perl (6.49-1) ...
Setting up apksigner (30.0.3-1) ...
Setting up procyon-decompiler (0.5.36-1) ...
Setting up openjdk-11-jre-headless:amd64 (11.0.8+10-1.1) ...
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/java to provide /usr/bin/java (java) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jfr to provide /usr/bin/jfr (jfr) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jjs to provide /usr/bin/jjs (jjs) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/keytool to provide /usr/bin/keytool (keytool) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/pack200 to provide /usr/bin/pack200 (pack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmid to provide /usr/bin/rmid (rmid) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmiregistry to provide /usr/bin/rmiregistry (rmiregistry) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/unpack200 to provide /usr/bin/unpack200 (unpack200) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/lib/jexec to provide /usr/bin/jexec (jexec) in auto mode
WARNING: tempfile is deprecated; consider using mktemp instead.
Setting up openjdk-11-jdk-headless:amd64 (11.0.8+10-1.1) ...
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jar to provide /usr/bin/jar (jar) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jarsigner to provide /usr/bin/jarsigner (jarsigner) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javac to provide /usr/bin/javac (javac) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javadoc to provide /usr/bin/javadoc (javadoc) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/javap to provide /usr/bin/javap (javap) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jcmd to provide /usr/bin/jcmd (jcmd) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdb to provide /usr/bin/jdb (jdb) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdeprscan to provide /usr/bin/jdeprscan (jdeprscan) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jdeps to provide /usr/bin/jdeps (jdeps) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jimage to provide /usr/bin/jimage (jimage) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jinfo to provide /usr/bin/jinfo (jinfo) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jlink to provide /usr/bin/jlink (jlink) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jmap to provide /usr/bin/jmap (jmap) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jmod to provide /usr/bin/jmod (jmod) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jps to provide /usr/bin/jps (jps) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jrunscript to provide /usr/bin/jrunscript (jrunscript) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jshell to provide /usr/bin/jshell (jshell) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstack to provide /usr/bin/jstack (jstack) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstat to provide /usr/bin/jstat (jstat) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jstatd to provide /usr/bin/jstatd (jstatd) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/rmic to provide /usr/bin/rmic (rmic) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/serialver to provide /usr/bin/serialver (serialver) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jaotc to provide /usr/bin/jaotc (jaotc) in auto mode
update-alternatives: using /usr/lib/jvm/java-11-openjdk-amd64/bin/jhsdb to provide /usr/bin/jhsdb (jhsdb) in auto mode
Setting up dh-autoreconf (19) ...
Setting up ocaml-interp (4.11.1-3) ...
Setting up default-jdk-headless (2:1.11-72) ...
Setting up icoutils (0.32.3-3) ...
Setting up liblvm2cmd2.03:amd64 (2.03.09-3) ...
Setting up ocaml-nox (4.11.1-3) ...
Setting up dmeventd (2:1.02.171-3) ...
Created symlink /etc/systemd/system/sockets.target.wants/dm-event.socket → /lib/systemd/system/dm-event.socket.
Setting up mono-runtime-sgen (6.8.0.105+dfsg-3) ...
Setting up ca-certificates-java (20190909) ...
head: cannot open '/etc/ssl/certs/java/cacerts' for reading: No such file or directory
Adding debian:GlobalSign_Root_CA.pem
Adding debian:IdenTrust_Public_Sector_Root_CA_1.pem
Warning: there was a problem reading the certificate file /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem. Message:
  /etc/ssl/certs/NetLock_Arany_=Class_Gold=_F?tan?s?tv?ny.pem (No such file or directory)
Adding debian:UCA_Global_G2_Root.pem
Adding debian:AffirmTrust_Premium.pem
Adding debian:DigiCert_Assured_ID_Root_G2.pem
Adding debian:Global_Chambersign_Root_-_2008.pem
Adding debian:ACCVRAIZ1.pem
Adding debian:QuoVadis_Root_CA.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_RSA_R2.pem
Adding debian:Go_Daddy_Root_Certificate_Authority_-_G2.pem
Adding debian:USERTrust_ECC_Certification_Authority.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R4.pem
Adding debian:Security_Communication_RootCA2.pem
Adding debian:Baltimore_CyberTrust_Root.pem
Adding debian:GlobalSign_Root_CA_-_R2.pem
Adding debian:GTS_Root_R4.pem
Adding debian:TrustCor_RootCert_CA-2.pem
Adding debian:GTS_Root_R3.pem
Adding debian:E-Tugra_Certification_Authority.pem
Adding debian:SZAFIR_ROOT_CA2.pem
Adding debian:Hongkong_Post_Root_CA_1.pem
Adding debian:SwissSign_Silver_CA_-_G2.pem
Adding debian:Staat_der_Nederlanden_EV_Root_CA.pem
Adding debian:AffirmTrust_Premium_ECC.pem
Adding debian:Certigna.pem
Adding debian:Entrust_Root_Certification_Authority_-_EC1.pem
Adding debian:Certum_Trusted_Network_CA_2.pem
Adding debian:Secure_Global_CA.pem
Adding debian:Chambers_of_Commerce_Root_-_2008.pem
Adding debian:TUBITAK_Kamu_SM_SSL_Kok_Sertifikasi_-_Surum_1.pem
Adding debian:Buypass_Class_3_Root_CA.pem
Adding debian:COMODO_RSA_Certification_Authority.pem
Adding debian:UCA_Extended_Validation_Root.pem
Adding debian:GTS_Root_R2.pem
Adding debian:AffirmTrust_Commercial.pem
Adding debian:TWCA_Root_Certification_Authority.pem
Adding debian:QuoVadis_Root_CA_1_G3.pem
Adding debian:GlobalSign_Root_CA_-_R3.pem
Adding debian:Go_Daddy_Class_2_CA.pem
Adding debian:OISTE_WISeKey_Global_Root_GB_CA.pem
Adding debian:Taiwan_GRCA.pem
Adding debian:Amazon_Root_CA_1.pem
Adding debian:GlobalSign_ECC_Root_CA_-_R5.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_EV_2009.pem
Adding debian:Network_Solutions_Certificate_Authority.pem
Adding debian:DigiCert_Assured_ID_Root_G3.pem
Adding debian:SecureSign_RootCA11.pem
Adding debian:QuoVadis_Root_CA_3_G3.pem
Adding debian:DigiCert_Global_Root_CA.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2011.pem
Adding debian:Actalis_Authentication_Root_CA.pem
Adding debian:Sonera_Class_2_Root_CA.pem
Adding debian:emSign_ECC_Root_CA_-_G3.pem
Adding debian:Starfield_Class_2_CA.pem
Adding debian:SwissSign_Gold_CA_-_G2.pem
Adding debian:DST_Root_CA_X3.pem
Adding debian:DigiCert_Trusted_Root_G4.pem
Adding debian:GeoTrust_Universal_CA_2.pem
Adding debian:SSL.com_Root_Certification_Authority_ECC.pem
Adding debian:emSign_ECC_Root_CA_-_C3.pem
Adding debian:ePKI_Root_Certification_Authority.pem
Adding debian:Entrust.net_Premium_2048_Secure_Server_CA.pem
Adding debian:TeliaSonera_Root_CA_v1.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_RootCA_2015.pem
Adding debian:QuoVadis_Root_CA_2.pem
Adding debian:IdenTrust_Commercial_Root_CA_1.pem
Adding debian:XRamp_Global_CA_Root.pem
Adding debian:OISTE_WISeKey_Global_Root_GC_CA.pem
Adding debian:SSL.com_EV_Root_Certification_Authority_ECC.pem
Adding debian:Staat_der_Nederlanden_Root_CA_-_G3.pem
Adding debian:DigiCert_Assured_ID_Root_CA.pem
Adding debian:Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem
Adding debian:EE_Certification_Centre_Root_CA.pem
Adding debian:TrustCor_ECA-1.pem
Adding debian:Izenpe.com.pem
Adding debian:Hongkong_Post_Root_CA_3.pem
Adding debian:LuxTrust_Global_Root_2.pem
Adding debian:Certum_Trusted_Network_CA.pem
Adding debian:Trustis_FPS_Root_CA.pem
Adding debian:Entrust_Root_Certification_Authority.pem
Adding debian:Comodo_AAA_Services_root.pem
Adding debian:GTS_Root_R1.pem
Adding debian:Hellenic_Academic_and_Research_Institutions_ECC_RootCA_2015.pem
Adding debian:Starfield_Services_Root_Certificate_Authority_-_G2.pem
Adding debian:GDCA_TrustAUTH_R5_ROOT.pem
Adding debian:T-TeleSec_GlobalRoot_Class_3.pem
Adding debian:Amazon_Root_CA_2.pem
Adding debian:Entrust_Root_Certification_Authority_-_G2.pem
Adding debian:DigiCert_Global_Root_G3.pem
Adding debian:Cybertrust_Global_Root.pem
Adding debian:OISTE_WISeKey_Global_Root_GA_CA.pem
Adding debian:QuoVadis_Root_CA_2_G3.pem
Adding debian:ISRG_Root_X1.pem
Adding debian:Security_Communication_Root_CA.pem
Adding debian:COMODO_ECC_Certification_Authority.pem
Adding debian:DigiCert_High_Assurance_EV_Root_CA.pem
Adding debian:TWCA_Global_Root_CA.pem
Adding debian:Staat_der_Nederlanden_Root_CA_-_G2.pem
Adding debian:Microsec_e-Szigno_Root_CA_2009.pem
Adding debian:Verisign_Class_3_Public_Primary_Certification_Authority_-_G3.pem
Adding debian:CFCA_EV_ROOT.pem
Adding debian:AffirmTrust_Networking.pem
Adding debian:SecureTrust_CA.pem
Adding debian:QuoVadis_Root_CA_3.pem
Adding debian:COMODO_Certification_Authority.pem
Adding debian:AC_RAIZ_FNMT-RCM.pem
Adding debian:Buypass_Class_2_Root_CA.pem
Adding debian:Starfield_Root_Certificate_Authority_-_G2.pem
Adding debian:SSL.com_Root_Certification_Authority_RSA.pem
Adding debian:certSIGN_ROOT_CA.pem
Adding debian:Certigna_Root_CA.pem
Adding debian:USERTrust_RSA_Certification_Authority.pem
Adding debian:emSign_Root_CA_-_C1.pem
Adding debian:DigiCert_Global_Root_G2.pem
Adding debian:Amazon_Root_CA_4.pem
Adding debian:EC-ACC.pem
Adding debian:Entrust_Root_Certification_Authority_-_G4.pem
Adding debian:CA_Disig_Root_R2.pem
Adding debian:GlobalSign_Root_CA_-_R6.pem
Adding debian:T-TeleSec_GlobalRoot_Class_2.pem
Adding debian:Amazon_Root_CA_3.pem
Adding debian:Atos_TrustedRoot_2011.pem
Adding debian:TrustCor_RootCert_CA-1.pem
Adding debian:emSign_Root_CA_-_G1.pem
Adding debian:D-TRUST_Root_Class_3_CA_2_2009.pem
done.
Setting up mono-runtime (6.8.0.105+dfsg-3) ...
update-alternatives: using /usr/bin/mono to provide /usr/bin/cli (cli) in auto mode
Setting up xmlbeans (3.0.2-1) ...
Setting up apktool (2.4.1-1) ...
Setting up liblwp-protocol-https-perl (6.09-1) ...
Setting up ocaml-compiler-libs (4.11.1-3) ...
Setting up debhelper (13.2.1) ...
Setting up lvm2 (2.03.09-3) ...
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
update-initramfs: deferring update (trigger activated)
Running in chroot, ignoring request.
All runlevel operations denied by policy
invoke-rc.d: policy-rc.d denied execution of start.
Created symlink /etc/systemd/system/sysinit.target.wants/blk-availability.service → /lib/systemd/system/blk-availability.service.
Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-monitor.service → /lib/systemd/system/lvm2-monitor.service.
Created symlink /etc/systemd/system/sysinit.target.wants/lvm2-lvmpolld.socket → /lib/systemd/system/lvm2-lvmpolld.socket.
Setting up libguestfs0:amd64 (1:1.42.0-11) ...
Setting up libmono-corlib4.5-cil (6.8.0.105+dfsg-3) ...
Setting up libmono-system-xml4.0-cil (6.8.0.105+dfsg-3) ...
Setting up libmono-system-configuration4.0-cil (6.8.0.105+dfsg-3) ...
Setting up libmono-security4.0-cil (6.8.0.105+dfsg-3) ...
Setting up python3-guestfs (1:1.42.0-11) ...
Setting up libmono-system-numerics4.0-cil (6.8.0.105+dfsg-3) ...
Setting up mono-utils (6.8.0.105+dfsg-3) ...
update-alternatives: using /usr/bin/monodis to provide /usr/bin/cli-ildasm (cil-disassembler) in auto mode
Setting up libmono-system4.0-cil (6.8.0.105+dfsg-3) ...
Setting up libmono-system-core4.0-cil (6.8.0.105+dfsg-3) ...
Setting up libmono-system-security4.0-cil (6.8.0.105+dfsg-3) ...
Setting up mono-4.0-gac (6.8.0.105+dfsg-3) ...
Setting up mono-gac (6.8.0.105+dfsg-3) ...
update-alternatives: using /usr/bin/gacutil to provide /usr/bin/cli-gacutil (global-assembly-cache-tool) in auto mode
Setting up mono-runtime-common (6.8.0.105+dfsg-3) ...
Processing triggers for systemd (246.6-2) ...
Processing triggers for libc-bin (2.31-4) ...
Processing triggers for sgml-base (1.30) ...
Setting up docutils-common (0.16+dfsg-3) ...
Processing triggers for sgml-base (1.30) ...
Setting up python3-docutils (0.16+dfsg-3) ...
update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode
update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...
Processing triggers for ca-certificates (20200601) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...

done.
done.
Processing triggers for initramfs-tools (0.139) ...
update-initramfs: Generating /boot/initrd.img-5.9.0-1-amd64
W: mkconf: MD subsystem is not loaded, thus I cannot scan for arrays.
W: mdadm: failed to auto-generate temporary mdadm.conf file.

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

Arch check ok (amd64 included in all)

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

Kernel: Linux 4.19.0-10-amd64 #1 SMP Debian 4.19.132-1 (2020-07-24) amd64 (x86_64)
Toolchain package versions: binutils_2.35.1-2 dpkg-dev_1.20.5 g++-10_10.2.0-15 gcc-10_10.2.0-15 libc6-dev_2.31-4 libstdc++-10-dev_10.2.0-15 libstdc++6_10.2.0-15 linux-libc-dev_5.9.1-1
Package versions: aapt_1:8.1.0+r23-3+b2 abootimg_0.6-1+b2 acl_2.2.53-8 adduser_3.118 adwaita-icon-theme_3.38.0-1 android-framework-res_1:8.1.0+r23-3 android-libaapt_1:8.1.0+r23-3+b2 android-libandroidfw_1:8.1.0+r23-3+b2 android-libbacktrace_1:8.1.0+r23-8 android-libbase_1:8.1.0+r23-8 android-libcutils_1:8.1.0+r23-8 android-liblog_1:8.1.0+r23-8 android-libunwind_10.0.0+r36-3 android-libutils_1:8.1.0+r23-8 android-libziparchive_1:8.1.0+r23-8 apksigner_30.0.3-1 apktool_2.4.1-1 apt_2.1.10 attr_1:2.4.48-5 augeas-lenses_1.12.0-2 autoconf_2.69-11.1 automake_1:1.16.2-4 autopoint_0.19.8.1-10 autotools-dev_20180224.1 base-files_11 base-passwd_3.5.48 bash_5.1~rc1-2 bash-completion_1:2.11-2 binfmt-support_2.2.1-1 binutils_2.35.1-2 binutils-common_2.35.1-2 binutils-multiarch_2.35.1-2 binutils-x86-64-linux-gnu_2.35.1-2 black_20.8b1-2 bsdextrautils_2.36-3+b1 bsdmainutils_12.1.7 bsdutils_1:2.36-3+b1 btrfs-progs_5.7-1 build-essential_12.8 bzip2_1.0.8-4 ca-certificates_20200601 ca-certificates-java_20190909 caca-utils_0.99.beta19-2.1 calendar_12.1.7 ccache_3.7.12-1 colord_1.4.4-2 colord-data_1.4.4-2 coreutils_8.32-4+b1 cpio_2.13+dfsg-4 cpp_4:10.2.0-1 cpp-10_10.2.0-15 cryptsetup-bin_2:2.3.4-1 curl_7.72.0-1 dash_0.5.10.2-7 db-util_5.3.1+nmu1 db5.3-util_5.3.28+dfsg1-0.6 dbus_1.12.20-1 dbus-user-session_1.12.20-1 dconf-gsettings-backend_0.38.0-1 dconf-service_0.38.0-1 debconf_1.5.74 debhelper_13.2.1 debian-archive-keyring_2019.1 debianutils_4.11.2 debootstrap_1.0.123 default-jdk-headless_2:1.11-72 default-jre-headless_2:1.11-72 device-tree-compiler_1.6.0-1 dh-autoreconf_19 dh-python_4.20200925 dh-strip-nondeterminism_1.9.0-1 diffutils_1:3.7-3 distro-info-data_0.44 dmeventd_2:1.02.171-3 dmidecode_3.2-4 dmsetup_2:1.02.171-3 docutils-common_0.16+dfsg-3 docx2txt_1.4-2 dosfstools_4.1-2 dpkg_1.20.5 dpkg-dev_1.20.5 dwz_0.13-5 e2fsprogs_1.45.6-1 eatmydata_105-9 enjarify_1:1.0.3-4 exfat-fuse_1.3.0-2 exfat-utils_1.3.0-2 extlinux_3:6.04~git20190206.bf6db5b4+dfsg1-3 f2fs-tools_1.11.0-1.1 fakeroot_1.25.3-1 fastjar_2:0.98-7 fdisk_2.36-3+b1 ffmpeg_7:4.3.1-4 file_1:5.38-5 findutils_4.7.0-1 flake8_3.8.3-1 fontconfig_2.13.1-4.2 fontconfig-config_2.13.1-4.2 fontforge-common_1:20190801~dfsg-5 fontforge-extras_1:20190801~dfsg-5 fonts-dejavu-core_2.37-2 fonts-urw-base35_20200910-1 fp-utils_3.2.0+dfsg-8 fp-utils-3.2.0_3.2.0+dfsg-8 fpc-source-3.2.0_3.2.0+dfsg-8 fuse_2.9.9-3 g++_4:10.2.0-1 g++-10_10.2.0-15 gawk_1:5.0.1+dfsg-1 gcc_4:10.2.0-1 gcc-10_10.2.0-15 gcc-10-base_10.2.0-15 gdisk_1.0.5-1 genisoimage_9:1.1.11-3.1 gettext_0.19.8.1-10 gettext-base_0.19.8.1-10 ghc_8.8.4-1 ghostscript_9.53.3~dfsg-4 giflib-tools_5.1.9-1 glib-networking_2.66.0-2 glib-networking-common_2.66.0-2 glib-networking-services_2.66.0-2 gnupg-utils_2.2.20-1 gpgv_2.2.20-1 grep_3.4-1 groff-base_1.22.4-5 grub-common_2.04-9 grub2-common_2.04-9 gsettings-desktop-schemas_3.38.0-2 gtk-update-icon-cache_3.24.23-2 gzip_1.10-2 hdf5-tools_1.10.6+repack-2 help2man_1.47.16 hicolor-icon-theme_0.17-2 hostname_3.23 icoutils_0.32.3-3 imagemagick_8:6.9.11.24+dfsg-1+b1 imagemagick-6-common_8:6.9.11.24+dfsg-1 imagemagick-6.q16_8:6.9.11.24+dfsg-1+b1 init-system-helpers_1.58 initramfs-tools_0.139 initramfs-tools-core_0.139 intltool-debian_0.35.0+20060710.5 iproute2_5.9.0-1 ipxe-qemu_1.0.0+git-20190125.36a4c85-5 isc-dhcp-client_4.4.1-2.1+b2 iso-codes_4.5.0-1 jarwrapper_0.77 java-common_0.72 jsbeautifier_1.13.0-1 junit_3.8.2-9 klibc-utils_2.0.8-1 kmod_27+20200310-2 kpartx_0.8.4-4 ldmtool_0.2.4-3 less_551-2 liba52-0.7.4_0.7.4-20 libaa1_1.4p5-46+b1 libacl1_2.2.53-8 libaec0_1.0.4-1 libafflib0v5_3.7.19-1 libaio1_0.3.112-8 libantlr-java_2.7.7+dfsg-10 libantlr3-runtime-java_3.5.2-9 libaom0_1.0.0.errata1-3 libapache-pom-java_18-1 libapparmor1_2.13.4-3+b1 libapt-pkg6.0_2.1.10 libarchive-tools_3.4.3-2 libarchive-zip-perl_1.68-1 libarchive13_3.4.3-2 libargon2-1_0~20171227-0.2 libasan6_10.2.0-15 libasound2_1.2.3.2-1 libasound2-data_1.2.3.2-1 libass9_1:0.14.0-2 libassuan0_2.5.3-7.1 libasyncns0_0.8-6+b1 libatinject-jsr330-api-java_1.0+ds1-5 libatk-bridge2.0-0_2.38.0-1 libatk1.0-0_2.36.0-2 libatk1.0-data_2.36.0-2 libatomic1_10.2.0-15 libatspi2.0-0_2.38.0-2 libattr1_1:2.4.48-5 libaudio2_1.9.4-6+b1 libaudit-common_1:2.8.5-3.1 libaudit1_1:2.8.5-3.1 libaugeas0_1.12.0-2 libavahi-client3_0.8-3 libavahi-common-data_0.8-3 libavahi-common3_0.8-3 libavc1394-0_0.5.4-5 libavcodec58_7:4.3.1-4 libavdevice58_7:4.3.1-4 libavfilter7_7:4.3.1-4 libavformat58_7:4.3.1-4 libavresample4_7:4.3.1-4 libavutil56_7:4.3.1-4 libbfio1_20170123-5 libbinutils_2.35.1-2 libblas3_3.9.0-3 libblkid1_2.36-3+b1 libbluray2_1:1.2.0-3 libbrlapi0.7_6.0+dfsg-6+b1 libbrotli1_1.0.9-2+b1 libbs2b0_3.1.0+dfsg-2.2+b1 libbsd-dev_0.10.0-1 libbsd0_0.10.0-1 libbz2-1.0_1.0.8-4 libc-bin_2.31-4 libc-dev-bin_2.31-4 libc6_2.31-4 libc6-dev_2.31-4 libcaca0_0.99.beta19-2.1 libcacard0_1:2.7.0-1 libcairo-gobject2_1.16.0-4 libcairo2_1.16.0-4 libcap-ng0_0.7.9-2.2 libcap2_1:2.44-1 libcap2-bin_1:2.44-1 libcapstone3_4.0.1+really+3.0.5-2+b1 libcbor0_0.5.0+dfsg-2 libcc1-0_10.2.0-15 libcdio-cdda2_10.2+2.0.0-1+b2 libcdio-paranoia2_10.2+2.0.0-1+b2 libcdio19_2.1.0-2 libchromaprint1_1.5.0-1 libcodec2-0.9_0.9.2-3 libcolord2_1.4.4-2 libcolorhug2_1.4.4-2 libcom-err2_1.45.6-1 libcommons-cli-java_1.4-2 libcommons-io-java_2.8.0-1 libcommons-lang3-java_3.11-1 libcommons-parent-java_43-1 libcroco3_0.6.13-1 libcrypt-dev_1:4.4.17-1 libcrypt1_1:4.4.17-1 libcryptsetup12_2:2.3.4-1 libctf-nobfd0_2.35.1-2 libctf0_2.35.1-2 libcups2_2.3.3-3 libcurl3-gnutls_7.72.0-1 libcurl4_7.72.0-1 libdate-manip-perl_6.82-1 libdatrie1_0.2.12-3 libdav1d4_0.7.1-3 libdaxctl1_70.1-1 libdb5.3_5.3.28+dfsg1-0.6 libdbus-1-3_1.12.20-1 libdc1394-25_2.2.6-3 libdca0_0.0.7-2 libdconf1_0.38.0-1 libde265-0_1.0.7-1 libdebconfclient0_0.254 libdebhelper-perl_13.2.1 libdevmapper-event1.02.1_2:1.02.171-3 libdevmapper1.02.1_2:1.02.171-3 libdns-export1110_1:9.11.19+dfsg-1 libdom4j-java_2.1.3-1 libdpkg-perl_1.20.5 libdrm-amdgpu1_2.4.102-1 libdrm-common_2.4.102-1 libdrm-intel1_2.4.102-1 libdrm-nouveau2_2.4.102-1 libdrm-radeon1_2.4.102-1 libdrm2_2.4.102-1 libdv4_1.0.0-12 libdvdnav4_6.1.0-1+b1 libdvdread8_6.1.1-2 libdw1_0.181-1 libeatmydata1_105-9 libedit2_3.1-20191231-1 libefiboot1_37-5 libefivar1_37-5 libegl-mesa0_20.2.1-1 libegl1_1.3.2-1 libelf1_0.181-1 libenca0_1.19-1+b1 libencode-locale-perl_1.05-1 libepoxy0_1.5.4-1 libewf2_20140807-2+b1 libexif12_0.6.22-2 libexpat1_2.2.10-1 libext2fs2_1.45.6-1 libf2fs-format4_1.11.0-1.1 libf2fs5_1.11.0-1.1 libfaad2_2.9.2-1 libfakeroot_1.25.3-1 libfdisk1_2.36-3+b1 libfdt1_1.6.0-1 libffi-dev_3.3-4 libffi7_3.3-4 libfftw3-double3_3.3.8-2 libfido2-1_1.5.0-2 libfile-listing-perl_6.11-1 libfile-stripnondeterminism-perl_1.9.0-1 libflac8_1.3.3-1 libflite1_2.2-1 libfontconfig1_2.13.1-4.2 libfontforge3_1:20190801~dfsg-5 libfreetype6_2.10.2+dfsg-3 libfribidi0_1.0.8-2 libfuse2_2.9.9-3 libgbm1_20.2.1-1 libgcc-10-dev_10.2.0-15 libgcc-s1_10.2.0-15 libgcrypt20_1.8.6-2 libgd3_2.3.0-2 libgdbm-compat4_1.18.1-5.1 libgdbm6_1.18.1-5.1 libgdk-pixbuf2.0-0_2.40.0+dfsg-5 libgdk-pixbuf2.0-common_2.40.0+dfsg-5 libgdraw6_1:20190801~dfsg-5 libgfortran5_10.2.0-15 libgif7_5.1.9-1 libgl1_1.3.2-1 libgl1-mesa-dri_20.2.1-1 libglapi-mesa_20.2.1-1 libglib2.0-0_2.66.1-2 libglvnd0_1.3.2-1 libglx-mesa0_20.2.1-1 libglx0_1.3.2-1 libgme0_0.6.3-2 libgmp-dev_2:6.2.0+dfsg-6 libgmp10_2:6.2.0+dfsg-6 libgmpxx4ldbl_2:6.2.0+dfsg-6 libgnutls30_3.6.15-4 libgomp1_10.2.0-15 libgpg-error0_1.38-2 libgphoto2-6_2.5.26-1 libgphoto2-port12_2.5.26-1 libgpm2_1.20.7-6 libgraphite2-3_1.3.14-1 libgs9_9.53.3~dfsg-4 libgs9-common_9.53.3~dfsg-4 libgsm1_1.0.18-2 libgssapi-krb5-2_1.17-10 libgstreamer-plugins-base1.0-0_1.18.0-2 libgstreamer1.0-0_1.18.0-3 libgtk-3-0_3.24.23-2 libgtk-3-common_3.24.23-2 libguava-java_29.0-6 libgudev-1.0-0_234-1 libguestfs0_1:1.42.0-11 libgusb2_0.3.4-0.2 libharfbuzz0b_2.6.7-1 libhdf5-103-1_1.10.6+repack-2 libhdf5-hl-100_1.10.6+repack-2 libheif1_1.9.1-1 libhivex0_1.3.19-1+b2 libhogweed6_3.6-2 libhtml-parser-perl_3.75-1 libhtml-tagset-perl_3.20-4 libhtml-tree-perl_5.07-2 libhttp-cookies-perl_6.08-1 libhttp-date-perl_6.05-1 libhttp-message-perl_6.26-1 libhttp-negotiate-perl_6.01-1 libibverbs1_31.0-1 libice6_2:1.0.10-1 libicu4j-java_62.1-2 libicu67_67.1-4 libid3tag0_0.15.1b-14 libidn11_1.33-2.4 libidn2-0_2.3.0-1 libiec61883-0_1.2.0-3 libieee1284-3_0.2.11-14 libijs-0.35_0.35-15 libimlib2_1.7.0-1 libintellij-annotations-java_20.1.0-1 libio-html-perl_1.001-1 libio-socket-ssl-perl_2.068-1 libip4tc2_1.8.5-3 libisc-export1105_1:9.11.19+dfsg-1 libisl22_0.22.1-1 libitm1_10.2.0-15 libjack-jackd2-0_1.9.16~dfsg-1 libjansson4_2.13.1-1 libjaxen-java_1.1.6-4 libjbig0_2.1-3.1+b2 libjbig2dec0_0.19-1 libjcommander-java_1.71-3 libjdom1-java_1.1.3-2 libjetbrains-annotations-java_20.1.0-1 libjpeg62-turbo_1:2.0.5-1.1 libjs-jquery_3.5.1+dfsg-4 libjs-jquery-hotkeys_0~20130707+git2d51e3a9+dfsg-2 libjs-jquery-isonscreen_1.2.0-1 libjs-jquery-metadata_12-1.1 libjs-jquery-tablesorter_1:2.31.3+dfsg1-1 libjs-jquery-throttle-debounce_1.1+dfsg.1-1 libjson-c5_0.15-1 libjson-glib-1.0-0_1.6.0-1 libjson-glib-1.0-common_1.6.0-1 libjsr305-java_0.1~+svn49-11 libk5crypto3_1.17-10 libkeyutils1_1.6.1-2 libklibc_2.0.8-1 libkmod2_27+20200310-2 libkrb5-3_1.17-10 libkrb5support0_1.17-10 libksba8_1.4.0-2 liblapack3_3.9.0-3 liblcms2-2_2.9-4+b1 libldap-2.4-2_2.4.54+dfsg-1 libldm-1.0-0_0.2.4-3 liblilv-0-0_0.24.10-1 liblirc-client0_0.10.1-6.2 libllvm11_1:11.0.0-2 libllvm9_1:9.0.1-14+b1 liblocale-gettext-perl_1.07-4 liblqr-1-0_0.4.2-2.1 liblsan0_10.2.0-15 libltdl7_2.4.6-14 liblua5.2-0_5.2.4-1.1+b3 liblvm2cmd2.03_2.03.09-3 liblwp-mediatypes-perl_6.04-1 liblwp-protocol-https-perl_6.09-1 liblz4-1_1.9.2-2 liblzf1_3.6-2 liblzma5_5.2.4-1+b1 liblzo2-2_2.10-2 libmad0_0.15.1b-10 libmagic-mgc_1:5.38-5 libmagic1_1:5.38-5 libmagickcore-6.q16-6_8:6.9.11.24+dfsg-1+b1 libmagickwand-6.q16-6_8:6.9.11.24+dfsg-1+b1 libmfx1_20.3.0-1 libmng1_1.0.10+dfsg-3.1+b5 libmnl0_1.0.4-3 libmono-corlib4.5-cil_6.8.0.105+dfsg-3 libmono-security4.0-cil_6.8.0.105+dfsg-3 libmono-system-configuration4.0-cil_6.8.0.105+dfsg-3 libmono-system-core4.0-cil_6.8.0.105+dfsg-3 libmono-system-numerics4.0-cil_6.8.0.105+dfsg-3 libmono-system-security4.0-cil_6.8.0.105+dfsg-3 libmono-system-xml4.0-cil_6.8.0.105+dfsg-3 libmono-system4.0-cil_6.8.0.105+dfsg-3 libmonoboehm-2.0-1_6.8.0.105+dfsg-3 libmount1_2.36-3+b1 libmp3lame0_3.100-3 libmpc3_1.2.0-1 libmpeg2-4_0.5.1-9 libmpfr6_4.1.0-3 libmpg123-0_1.26.3-1 libmysofa1_1.1~dfsg1-1 libncurses-dev_6.2+20200918-1 libncurses5-dev_6.2+20200918-1 libncurses6_6.2+20200918-1 libncursesw6_6.2+20200918-1 libndctl6_70.1-1 libnet-http-perl_6.19-1 libnet-ssleay-perl_1.88-3 libnetpbm10_2:10.0-15.3+b2 libnettle8_3.6-2 libnghttp2-14_1.41.0-3 libnl-3-200_3.4.0-1+b1 libnl-route-3-200_3.4.0-1+b1 libnorm1_1.5.8+dfsg2-2 libnsl-dev_1.3.0-2 libnsl2_1.3.0-2 libnspr4_2:4.28-1 libnss-nis_3.1-4 libnss-nisplus_1.3-4 libnss3_2:3.56-1 libntfs-3g883_1:2017.3.23AR.3-3 libnuma1_2.0.12-1+b1 libogg0_1.3.2-1+b1 libopenal-data_1:1.19.1-2 libopenal1_1:1.19.1-2 libopenjp2-7_2.3.1-1 libopenmpt0_0.4.11-1 libopus0_1.3.1-0.1 liborc-0.4-0_1:0.4.32-1 libp11-kit0_0.23.21-2 libpam-modules_1.3.1-5 libpam-modules-bin_1.3.1-5 libpam-runtime_1.3.1-5 libpam-systemd_246.6-2 libpam0g_1.3.1-5 libpango-1.0-0_1.46.2-1 libpangocairo-1.0-0_1.46.2-1 libpangoft2-1.0-0_1.46.2-1 libpaper-utils_1.1.28+b1 libpaper1_1.1.28+b1 libparted2_3.3-4 libpcap0.8_1.9.1-4 libpci3_1:3.7.0-4 libpciaccess0_0.16-1 libpcre2-8-0_10.34-7 libpcre3_2:8.39-13 libpcsclite1_1.9.0-1 libperl4-corelibs-perl_0.004-2 libperl5.30_5.30.3-4 libpfm4_4.10.1+git44-ga2909cd-1 libpgm-5.3-0_5.3.128~dfsg-2 libpipeline1_1.5.3-1 libpixman-1-0_0.36.0-1 libpmem1_1.9.1-3 libpng16-16_1.6.37-3 libpocketsphinx3_0.8+5prealpha+1-12 libpolkit-agent-1-0_0.105-29 libpolkit-gobject-1-0_0.105-29 libpoppler-glib8_20.09.0-2 libpoppler102_20.09.0-2 libpopt0_1.18-1 libpostproc55_7:4.3.1-4 libprocps8_2:3.3.16-5 libprocyon-java_0.5.36-1 libprotobuf-lite23_3.12.3-2+b1 libproxy1v5_0.4.15-14 libpsl5_0.21.0-1.1 libpulse0_13.0-5 libpython3-stdlib_3.8.6-1 libpython3.8_3.8.6-1 libpython3.8-minimal_3.8.6-1 libpython3.8-stdlib_3.8.6-1 libpython3.9-minimal_3.9.0-5 libpython3.9-stdlib_3.9.0-5 libquadmath0_10.2.0-15 librabbitmq4_0.10.0-1 libraw1394-11_2.1.2-2 librdmacm1_31.0-1 libreadline5_5.2+dfsg-3+b13 libreadline8_8.0-4 librest-0.7-0_0.8.1-1+b1 librpm8_4.14.2.1+dfsg1-1.1+b2 librpmbuild8_4.14.2.1+dfsg1-1.1+b2 librpmio8_4.14.2.1+dfsg1-1.1+b2 librpmsign8_4.14.2.1+dfsg1-1.1+b2 librsvg2-2_2.50.1+dfsg-1 librtmp1_2.4+20151223.gitfa8646d.1-2+b2 librubberband2_1.9.0-1 libsamplerate0_0.1.9-2 libsane_1.0.31-2 libsane-common_1.0.31-2 libsane1_1.0.31-2 libsasl2-2_2.1.27+dfsg-2 libsasl2-modules-db_2.1.27+dfsg-2 libsaxonhe-java_9.9.1.5+dfsg-1 libsdl1.2debian_1.2.15+dfsg2-5 libsdl2-2.0-0_2.0.12+dfsg1-4 libseccomp2_2.4.4-1+b1 libselinux1_3.1-2+b1 libsemanage-common_3.1-1 libsemanage1_3.1-1+b1 libsensors-config_1:3.6.0-2 libsensors5_1:3.6.0-2 libsepol1_3.1-1 libserd-0-0_0.30.6-1 libshine3_3.1.1-2 libsigsegv2_2.12-2 libslang2_2.3.2-5 libslirp0_4.3.1-1 libsm6_2:1.2.3-1 libsmali-java_2.4.0-1 libsmartcols1_2.36-3+b1 libsnappy1v5_1.1.8-1 libsndfile1_1.0.28-8 libsndio7.0_1.5.0-3 libsnmp-base_5.9+dfsg-3 libsnmp40_5.9+dfsg-3 libsodium23_1.0.18-1 libsord-0-0_0.16.6-1 libsoup-gnome2.4-1_2.72.0-2 libsoup2.4-1_2.72.0-2 libsoxr0_0.1.3-4 libspeex1_1.2~rc1.2-1.1 libsphinxbase3_0.8+5prealpha+1-11+b1 libspice-server1_0.14.3-1 libspiro1_1:20200505-2 libsqlite3-0_3.33.0-1 libsratom-0-0_0.6.6-1 libsrt1-gnutls_1.4.2-1 libss2_1.45.6-1 libssh-gcrypt-4_0.9.4-1 libssh2-1_1.8.0-2.1 libssl1.1_1.1.1h-1 libstdc++-10-dev_10.2.0-15 libstdc++6_10.2.0-15 libstringtemplate-java_3.2.1-2 libsub-override-perl_0.09-2 libswresample3_7:4.3.1-4 libswscale5_7:4.3.1-4 libsystemd0_246.6-2 libsz2_1.0.4-1 libtasn1-6_4.16.0-2 libtcl8.6_8.6.10+dfsg-1 libthai-data_0.1.28-3 libthai0_0.1.28-3 libtheora0_1.1.1+dfsg.1-15 libtiff5_4.1.0+git191117-2 libtimedate-perl_2.3300-1 libtinfo6_6.2+20200918-1 libtirpc-common_1.2.6-3 libtirpc-dev_1.2.6-3 libtirpc3_1.2.6-3 libtk8.6_8.6.10-1 libtool_2.4.6-14 libtry-tiny-perl_0.30-1 libtsan0_10.2.0-15 libtsk19_4.10.0+dfsg-1 libtwolame0_0.4.0-2 libubsan1_10.2.0-15 libuchardet0_0.0.7-1 libudev1_246.6-2 libuninameslist1_20200413-1 libunistring2_0.9.10-4 libunwind8_1.3.2-2 liburi-perl_1.76-2 liburing1_0.7-1 libusb-1.0-0_2:1.0.23-2 libusbredirparser1_0.8.0-1+b1 libuuid1_2.36-3+b1 libva-drm2_2.9.0-1 libva-x11-2_2.9.0-1 libva2_2.9.0-1 libvdeplug2_2.3.2+r586-7 libvdpau1_1.4-2 libvhdi1_20181227-1.1+b1 libvidstab1.1_1.1.0-2+b1 libvirglrenderer1_0.8.2-4 libvirt0_6.6.0-2 libvmdk1_20200926-1 libvorbis0a_1.3.7-1 libvorbisenc2_1.3.7-1 libvorbisfile3_1.3.7-1 libvorbisidec1_1.2.1+git20180316-7 libvpx6_1.8.2-1 libvulkan1_1.2.154.1-1 libwavpack1_5.3.0-1 libwayland-client0_1.18.0-2~exp1.1 libwayland-cursor0_1.18.0-2~exp1.1 libwayland-egl1_1.18.0-2~exp1.1 libwayland-server0_1.18.0-2~exp1.1 libwebp6_0.6.1-2+b1 libwebpdemux2_0.6.1-2+b1 libwebpmux3_0.6.1-2+b1 libwrap0_7.6.q-30 libwww-perl_6.49-1 libwww-robotrules-perl_6.02-1 libx11-6_2:1.6.12-1 libx11-data_2:1.6.12-1 libx11-xcb1_2:1.6.12-1 libx264-160_2:0.160.3011+gitcde9a93-2 libx265-192_3.4-2 libxau6_1:1.0.8-1+b2 libxcb-dri2-0_1.14-2 libxcb-dri3-0_1.14-2 libxcb-glx0_1.14-2 libxcb-present0_1.14-2 libxcb-render0_1.14-2 libxcb-shape0_1.14-2 libxcb-shm0_1.14-2 libxcb-sync1_1.14-2 libxcb-xfixes0_1.14-2 libxcb1_1.14-2 libxcomposite1_1:0.4.5-1 libxcursor1_1:1.2.0-2 libxdamage1_1:1.1.5-2 libxdmcp6_1:1.1.2-3 libxencall1_4.11.4+24-gddaaccbbab-1 libxendevicemodel1_4.11.4+24-gddaaccbbab-1 libxenevtchn1_4.11.4+24-gddaaccbbab-1 libxenforeignmemory1_4.11.4+24-gddaaccbbab-1 libxengnttab1_4.11.4+24-gddaaccbbab-1 libxenmisc4.11_4.11.4+24-gddaaccbbab-1 libxenstore3.0_4.11.4+24-gddaaccbbab-1 libxentoolcore1_4.11.4+24-gddaaccbbab-1 libxentoollog1_4.11.4+24-gddaaccbbab-1 libxerces2-java_2.12.1-1 libxext6_2:1.3.3-1+b2 libxfixes3_1:5.0.3-2 libxft2_2.3.2-2 libxi6_2:1.7.10-1 libxinerama1_2:1.1.4-2 libxkbcommon0_1.0.1-1 libxml-commons-external-java_1.4.01-5 libxml-commons-resolver1.1-java_1.2-11 libxml2_2.9.10+dfsg-6.1 libxmlbeans-java_3.0.2-1 libxmlunit-java_1.6-2 libxom-java_1.2.10-1 libxpm4_1:3.5.12-1 libxpp3-java_1.1.4c-3 libxrandr2_2:1.5.1-1 libxrender1_1:0.9.10-1 libxshmfence1_1.3-1 libxss1_1:1.2.3-1 libxt6_1:1.2.0-1 libxtables12_1.8.5-3 libxtst6_2:1.2.3-1 libxv1_2:1.0.11-1 libxvidcore4_2:1.3.7-1 libxvmc1_2:1.0.12-2 libxxf86dga1_2:1.1.4-1+b3 libxxf86vm1_1:1.1.4-1+b2 libyajl2_2.1.0-3 libyaml-0-2_0.2.2-1 libyaml-snake-java_1.26+ds-1 libyara4_4.0.2-1 libz3-4_4.8.9-1 libzmq5_4.3.3-2+b1 libzstd1_1.4.5+dfsg-4 libzvbi-common_0.2.35-18 libzvbi0_0.2.35-18 linux-base_4.6 linux-image-5.9.0-1-amd64_5.9.1-1 linux-image-amd64_5.9.1-1 linux-libc-dev_5.9.1-1 llvm_1:9.0-49.1 llvm-9_1:9.0.1-14+b1 llvm-9-runtime_1:9.0.1-14+b1 llvm-runtime_1:9.0-49.1 login_1:4.8.1-1 logsave_1.45.6-1 lsb-base_11.1.0 lsb-release_11.1.0 lsscsi_0.31-1+b1 lvm2_2.03.09-3 lz4_1.9.2-2 lzop_1.04-1 m4_1.4.18-4 make_4.3-4 man-db_2.9.3-2 mawk_1.3.4.20200120-2 mdadm_4.1-8 mime-support_3.64 mono-4.0-gac_6.8.0.105+dfsg-3 mono-gac_6.8.0.105+dfsg-3 mono-runtime_6.8.0.105+dfsg-3 mono-runtime-common_6.8.0.105+dfsg-3 mono-runtime-sgen_6.8.0.105+dfsg-3 mono-utils_6.8.0.105+dfsg-3 mount_2.36-3+b1 mplayer_2:1.4+ds1-1 mtools_4.0.24-1 ncal_12.1.7 ncurses-base_6.2+20200918-1 ncurses-bin_6.2+20200918-1 ncurses-term_6.2+20200918-1 netbase_6.2 netpbm_2:10.0-15.3+b2 node-jquery_3.5.1+dfsg-4 ntfs-3g_1:2017.3.23AR.3-3 ocaml-base-nox_4.11.1-3 ocaml-compiler-libs_4.11.1-3 ocaml-interp_4.11.1-3 ocaml-nox_4.11.1-3 ocl-icd-libopencl1_2.2.12-4 odt2txt_0.5-7 oggvideotools_0.9.1-5.1 openjdk-11-jdk-headless_11.0.8+10-1.1 openjdk-11-jre-headless_11.0.8+10-1.1 openssh-client_1:8.3p1-1 openssl_1.1.1h-1 osinfo-db_0.20200325-1 p7zip_16.02+dfsg-8 p7zip-full_16.02+dfsg-8 parted_3.3-4 passwd_1:4.8.1-1 patch_2.7.6-6 pci.ids_0.0~2020.09.21-1 pciutils_1:3.7.0-4 perl_5.30.3-4 perl-base_5.30.3-4 perl-modules-5.30_5.30.3-4 perl-openssl-defaults_5 pgpdump_0.33-2 po-debconf_1.0.21 policykit-1_0.105-29 poppler-data_0.4.9-2 poppler-utils_20.09.0-2 procps_2:3.3.16-5 procyon-decompiler_0.5.36-1 psmisc_23.3-1 python3_3.8.6-1 python3-all_3.8.6-1 python3-appdirs_1.4.4-1 python3-argcomplete_1.8.1-1.3 python3-atomicwrites_1.4.0-1 python3-attr_19.3.0-5 python3-binwalk_2.2.0+dfsg1-1 python3-cffi-backend_1.14.3-2 python3-chardet_3.0.4-7 python3-click_7.1.2-1 python3-colorama_0.4.3-1 python3-cov-core_1.15.0-3 python3-coverage_5.1+dfsg.1-2+b1 python3-cryptography_3.1-1+b1 python3-debian_0.1.38 python3-distro_1.5.0-1 python3-distutils_3.8.6-1 python3-docutils_0.16+dfsg-3 python3-editorconfig_0.12.2-2.1 python3-flake8_3.8.3-1 python3-guestfs_1:1.42.0-11 python3-h5py_2.10.0-9 python3-h5py-serial_2.10.0-9+b1 python3-importlib-metadata_1.6.0-2 python3-jsbeautifier_1.13.0-1 python3-jsondiff_1.1.1-4 python3-lib2to3_3.8.6-1 python3-libarchive-c_2.9-0.1 python3-magic_2:0.4.15-4 python3-mccabe_0.6.1-3 python3-minimal_3.8.6-1 python3-more-itertools_4.2.0-3 python3-mypy-extensions_0.4.3-2 python3-nose2_0.9.2-1 python3-numpy_1:1.19.2-2+b1 python3-packaging_20.4-1 python3-pathspec_0.8.0-1 python3-pdfminer_20200726-1 python3-pkg-resources_50.3.0-1 python3-pluggy_0.13.0-5 python3-progressbar_2.5-2 python3-py_1.9.0-1 python3-pycodestyle_2.6.0-1 python3-pyflakes_2.2.0-1 python3-pyparsing_2.4.7-1 python3-pypdf2_1.26.0-4 python3-pytest_4.6.11-1 python3-pytest-cov_2.8.1-1 python3-pyxattr_0.6.1-2+b2 python3-regex_0.1.20200714-1+b1 python3-roman_2.0.0-5 python3-rpm_4.14.2.1+dfsg1-1.1+b2 python3-setuptools_50.3.0-1 python3-six_1.15.0-1 python3-sortedcontainers_2.1.0-2 python3-tlsh_3.4.4+20151206-1.3+b3 python3-toml_0.10.1-1 python3-typed-ast_1.4.1-1+b2 python3-typing-extensions_3.7.4.3-1 python3-wcwidth_0.1.9+dfsg1-2 python3-zipp_1.0.0-3 python3.8_3.8.6-1 python3.8-minimal_3.8.6-1 python3.9_3.9.0-5 python3.9-minimal_3.9.0-5 qemu-system-common_1:5.1+dfsg-4 qemu-system-data_1:5.1+dfsg-4 qemu-system-x86_1:5.1+dfsg-4 qemu-utils_1:5.1+dfsg-4 r-base-core_4.0.3-1 readline-common_8.0-4 rpm-common_4.14.2.1+dfsg1-1.1+b2 rpm2cpio_4.14.2.1+dfsg1-1.1+b2 sbuild-build-depends-main-dummy_0.invalid.0 scrub_2.6.1-1+b1 seabios_1.14.0-1 sed_4.7-1 sensible-utils_0.0.12+nmu1 sgml-base_1.30 shared-mime-info_2.0-1 sleuthkit_4.10.0+dfsg-1 sng_1.1.0-4 sqlite3_3.33.0-1 squashfs-tools_1:4.4-2 supermin_5.2.0-2 syslinux_3:6.04~git20190206.bf6db5b4+dfsg1-3 systemd_246.6-2 systemd-sysv_246.6-2 systemd-timesyncd_246.6-2 sysvinit-utils_2.96-5 tar_1.30+dfsg-7 tcpdump_4.9.3-6 tzdata_2020c-1 ucf_3.0043 udev_246.6-2 unzip_6.0-25 util-linux_2.36-3+b1 uuid-runtime_2.36-3+b1 wabt_1.0.19-1 wget_1.20.3-1+b3 x11-common_1:7.7+21 xdg-utils_1.1.3-2 xkb-data_2.29-2 xml-core_0.18+nmu1 xmlbeans_3.0.2-1 xxd_2:8.2.0716-3 xz-utils_5.2.4-1+b1 zerofree_1.1.1-1 zip_3.0-11+b1 zlib1g_1:1.2.11.dfsg-2 zstd_1.4.5+dfsg-4

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


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

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

Format: 3.0 (native)
Source: diffoscope
Binary: diffoscope
Architecture: all
Version: 160
Maintainer: Reproducible builds folks <reproducible-builds at lists.alioth.debian.org>
Uploaders:  Chris Lamb <lamby at debian.org>, Holger Levsen <holger at debian.org>, Mattia Rizzolo <mattia at debian.org>,
Homepage: https://diffoscope.org
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/reproducible-builds/diffoscope
Vcs-Git: https://salsa.debian.org/reproducible-builds/diffoscope.git
Testsuite: autopkgtest
Testsuite-Triggers: abootimg, acl, apksigner, apktool, binutils-multiarch, black, bzip2, caca-utils, colord, db-util, default-jdk, default-jdk-headless, device-tree-compiler, docx2txt, e2fsprogs, enjarify, ffmpeg, file, fontforge-extras, fp-utils, genisoimage, gettext, ghc, ghostscript, giflib-tools, gnumeric, gnupg, gnupg-utils, hdf5-tools, imagemagick, java-sdk, jsbeautifier, libarchive-tools, liblz4-tool, linux-image-amd64, linux-image-generic, llvm, lz4, mono-utils, ocaml-nox, odt2txt, oggvideotools, openssh-client, openssl, pgpdump, poppler-utils, procyon-decompiler, python3-all, python3-argcomplete, python3-binwalk, python3-debian, python3-defusedxml, python3-distro, python3-guestfs, python3-h5py, python3-jsondiff, python3-pdfminer, python3-progressbar, python3-pypdf2, python3-pytest, python3-pyxattr, python3-rpm, python3-tlsh, r-base-core, rpm2cpio, sng, sqlite3, squashfs-tools, tcpdump, unzip, vim-common, wabt, xmlbeans, xxd, xz-utils, zip, zstd
Build-Depends: abootimg <!nocheck>, apksigner <!nocheck>, apktool [!ppc64el !s390x] <!nocheck>, bash-completion, binutils-multiarch <!nocheck>, black <!nocheck>, caca-utils <!nocheck>, colord <!nocheck>, db-util <!nocheck>, debhelper-compat (= 13), default-jdk-headless <!nocheck> | default-jdk <!nocheck>, device-tree-compiler (>= 1.4.2) <!nocheck>, dh-python (>= 2.20160818~), docx2txt <!nocheck>, dpkg-dev (>= 1.17.14), e2fsprogs <!nocheck>, enjarify <!nocheck>, ffmpeg <!nocheck>, flake8 <!nocheck>, fontforge-extras <!nocheck>, fp-utils [!ppc64el !s390x] <!nocheck>, ghc <!nocheck>, ghostscript <!nocheck>, giflib-tools <!nocheck>, gnupg-utils <!nocheck>, hdf5-tools <!nocheck>, help2man, imagemagick <!nocheck>, jsbeautifier <!nocheck>, libarchive-tools <!nocheck>, libjs-jquery <!nocheck>, libjs-jquery-hotkeys <!nocheck>, libjs-jquery-isonscreen <!nocheck>, libjs-jquery-tablesorter <!nocheck>, libjs-jquery-throttle-debounce <!nocheck>, linux-image-amd64 [amd64] <!nocheck> | linux-image-generic [amd64] <!nocheck>, llvm <!nocheck>, lz4 <!nocheck> | liblz4-tool <!nocheck>, mono-utils <!nocheck>, mplayer <!nocheck>, ocaml-nox <!nocheck>, odt2txt <!nocheck>, oggvideotools [!s390x] <!nocheck>, openssh-client <!nocheck>, openssl <!nocheck>, pgpdump <!nocheck>, poppler-utils <!nocheck>, procyon-decompiler <!nocheck>, python3-all, python3-argcomplete, python3-binwalk <!nocheck>, python3-debian <!nocheck>, python3-distro <!nocheck>, python3-docutils, python3-guestfs <!nocheck>, python3-h5py <!nocheck>, python3-jsondiff <!nocheck>, python3-libarchive-c, python3-magic, python3-pdfminer <!nocheck>, python3-progressbar <!nocheck>, python3-pypdf2 <!nocheck>, python3-pytest <!nocheck>, python3-pytest-cov <!nocheck>, python3-pyxattr <!nocheck>, python3-rpm <!nocheck>, python3-setuptools, python3-tlsh (>= 3.4.1) <!nocheck>, r-base-core <!nocheck>, rpm2cpio <!nocheck>, sng <!nocheck>, sqlite3 <!nocheck>, squashfs-tools <!nocheck>, tcpdump <!nocheck>, unzip <!nocheck>, wabt <!nocheck>, xmlbeans <!nocheck>, xxd <!nocheck> | vim-common <!nocheck>, zstd <!nocheck>
Build-Conflicts: graphicsmagick-imagemagick-compat
Package-List:
 diffoscope deb devel optional arch=all
Checksums-Sha1:
 d1cd0945901f4d5daebaad7875b2ca9cf53de22f 984740 diffoscope_160.tar.xz
Checksums-Sha256:
 1ca57ccf204cef2b5b275f64fb3fb14714511dfb0c261de57c281ac6c26b6541 984740 diffoscope_160.tar.xz
Files:
 72d65b5a24d36a1451a7ed7ab49deda4 984740 diffoscope_160.tar.xz

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

iQIzBAEBCAAdFiEEwv5L0nHBObhsUz5GHpU+J9QxHlgFAl9bQJ4ACgkQHpU+J9Qx
HljtchAArbmI5xozD9VcUUGtOIiVHlyQaDezMGcdRV3oQBS/dXrhag1/QzDHWgay
YoGe/CIFJzWHHj247FUVwUhMqa+i5nv9XlDcZGJFumlTYKfJR+LCxNogn7jwc24a
jnpftU7kf8vp5DIWDS09hR5claETDHsRj7YuUbHqwjKcyZGxiLWIyFPu/fqUrNCO
VK9nJQ9jFdAwbPHwkplYq7G8ZFlvO6tI7nnK2w8cqrmWd1d8m63PhtRhLT6HKB34
eicL7yE+zYt0ccSpAolWhdK9PX6zCKFy8p8oLba5yRtxk1ropmeezo6/xqF1k3RI
J9Eo/933RSBX9Y3McPxb+jLpX2IZ4+ndVXJvbXdksYONXJhT7/3vrzu9v9KLcHKo
3ye59llxCYpKUGX0Q5rd7pk78664CLHFpwZgJV4n3umMZeydJ/hIlIlTl2DN2gmi
rzQPMYbQAhu2+nOIJGQMESkOSoGiYgwo8ceW+0AwVPtjEFWHaPOau7QEWHhF9hxW
nFMGufKxoV1f68RwVoz0ROoaQYNm8CAXCbI/PETRoSQX4c0gEBoguVZseOoB/yqm
BJaLfm6yBArOJhfh91K+f8ypatjEN1dFGwOzLGEHgX5IfVmVCe/C9v51fAtf8Rm0
wP0puU9k5SuRZ+ISdPxsDzEnpJjqvjHKvBVCdshUTYqW6UuSERY=
=fXOI
-----END PGP SIGNATURE-----

gpgv: unknown type of key resource 'trustedkeys.kbx'
gpgv: keyblock resource '/tmp/dpkg-verify-sig.hYFm0WZb/trustedkeys.kbx': General error
gpgv: Signature made Fri Sep 11 09:17:18 2020 UTC
gpgv:                using RSA key C2FE4BD271C139B86C533E461E953E27D4311E58
gpgv: Can't check signature: No public key
dpkg-source: warning: failed to verify signature on ./diffoscope_160.dsc
dpkg-source: info: extracting diffoscope in /<<PKGBUILDDIR>>
dpkg-source: info: unpacking diffoscope_160.tar.xz

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

Sufficient free space for build

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

APT_CONFIG=/var/lib/sbuild/apt.conf
CCACHE_DIR=/ccache
CCACHE_UMASK=002
DEB_BUILD_OPTIONS=parallel=5
HOME=/sbuild-nonexistent
LANG=en_US.UTF-8
LC_ADDRESS=de_AT.UTF-8
LC_ALL=C.UTF-8
LC_IDENTIFICATION=de_AT.UTF-8
LC_MEASUREMENT=de_AT.UTF-8
LC_MONETARY=de_AT.UTF-8
LC_NAME=de_AT.UTF-8
LC_NUMERIC=de_AT.UTF-8
LC_PAPER=de_AT.UTF-8
LC_TELEPHONE=de_AT.UTF-8
LC_TIME=en_DK.UTF-8
LOGNAME=sebastian
PATH=/usr/local/sbin:/usr/local/bin:/usr/lib/ccache:/usr/sbin:/usr/bin:/sbin:/bin:/usr/X11R6/bin:/usr/games
SCHROOT_ALIAS_NAME=unstable-amd64-sbuild
SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
SCHROOT_COMMAND=env
SCHROOT_GID=1000
SCHROOT_GROUP=sebastian
SCHROOT_SESSION_ID=unstable-amd64-sbuild-477d791b-2034-4c62-b395-3f18678e328a
SCHROOT_UID=1000
SCHROOT_USER=sebastian
SHELL=/bin/sh
USER=sebastian

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

Command: dpkg-buildpackage -us -uc -b -rfakeroot
dpkg-buildpackage: info: source package diffoscope
dpkg-buildpackage: info: source version 160
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Chris Lamb <lamby at debian.org>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture amd64
dpkg-source: info: using options from diffoscope-160/debian/source/options: --tar-ignore=.*.sw? --tar-ignore=*/*~ --tar-ignore=,,* --tar-ignore=.[#~]* --tar-ignore=.deps --tar-ignore=.git --tar-ignore=.gitattributes --tar-ignore=.gitignore --tar-ignore=.gitmodules
 debian/rules clean
dh clean --with python3 --with bash-completion --buildsystem=pybuild
   debian/rules override_dh_auto_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
debian/tests/control.sh
Generating the debian/tests/control file...
dh_auto_clean -O--buildsystem=pybuild
I: pybuild base:217: python3.9 setup.py clean 
running clean
removing '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build' (and everything under it)
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-3.9' does not exist -- can't clean it
I: pybuild base:217: python3.8 setup.py clean 
running clean
removing '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build' (and everything under it)
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-3.8' does not exist -- can't clean it
dh_auto_clean -O--buildsystem=makefile -Ddoc
	cd doc && make -j5 clean
make[2]: Entering directory '/<<PKGBUILDDIR>>/doc'
rm -f diffoscope.1 diffoscope.h2m
make[2]: Leaving directory '/<<PKGBUILDDIR>>/doc'
find -type d -name '__pycache__' -empty -delete
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --with python3 --with bash-completion --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:217: python3.9 setup.py config 
running config
I: pybuild base:217: python3.8 setup.py config 
running config
   dh_auto_build -O--buildsystem=pybuild
I: pybuild base:217: /usr/bin/python3.9 setup.py build 
running build
running build_py
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/profiling.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/excludes.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/tempfiles.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/path.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/progress.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/external_tools.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/tools.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/exc.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/feeders.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/main.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/changes.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/logging.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/difference.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/config.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/diff.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/environ.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
copying diffoscope/utils.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/readers
copying diffoscope/readers/json.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/readers
copying diffoscope/readers/utils.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/readers
copying diffoscope/readers/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/readers
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/mono.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/fsimage.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ocaml.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/gzip.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/haskell.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/gnumeric.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/bzip2.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/rpm.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/git.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/hdf.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/sqlite.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/elf.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/pcap.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/icc.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/openssh.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/image.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/deb.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/kbx.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/macho.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/xz.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ffprobe.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/llvm.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/lz4.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/openssl.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/java.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/docx.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/gif.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/pdf.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/zip.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/android.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/rdata.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ogg.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/zst.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ar.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/pe32.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/javascript.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ppu.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/cpio.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/debian_fallback.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ipk.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/berkeley_db.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/rust.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/fonts.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/device.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/cbfs.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/missing_file.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/ps.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/binary.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/apk.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/text.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/png.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/dex.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/xsb.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/xml.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/gettext.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/pgp.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/json.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/dtb.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/rpm_fallback.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/tar.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/directory.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/squashfs.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/wasm.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/odt.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/iso9660.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/binwalk.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/debian.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/fontconfig.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
copying diffoscope/comparators/symlink.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/json.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/icon.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/restructuredtext.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/formats.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/text.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/markdown.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
copying diffoscope/presenters/utils.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/specialize.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/fuzzy.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/command.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/container.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/libarchive.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/archive.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/compare.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/operation.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/file.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/comparators/utils
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters/html
copying diffoscope/presenters/html/html.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters/html
copying diffoscope/presenters/html/templates.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters/html
copying diffoscope/presenters/html/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/diffoscope/presenters/html
I: pybuild base:217: /usr/bin/python3 setup.py build 
running build
running build_py
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/profiling.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/excludes.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/tempfiles.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/path.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/progress.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/external_tools.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/tools.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/exc.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/feeders.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/main.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/changes.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/logging.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/difference.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/config.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/diff.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/environ.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
copying diffoscope/utils.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/readers
copying diffoscope/readers/json.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/readers
copying diffoscope/readers/utils.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/readers
copying diffoscope/readers/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/readers
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/mono.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/fsimage.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ocaml.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/gzip.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/haskell.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/gnumeric.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/bzip2.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/rpm.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/git.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/hdf.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/sqlite.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/elf.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/pcap.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/icc.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/openssh.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/image.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/deb.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/kbx.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/macho.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/xz.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ffprobe.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/llvm.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/lz4.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/openssl.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/java.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/docx.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/gif.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/pdf.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/zip.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/android.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/rdata.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ogg.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/zst.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ar.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/pe32.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/javascript.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ppu.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/cpio.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/debian_fallback.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ipk.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/berkeley_db.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/rust.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/fonts.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/device.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/cbfs.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/missing_file.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/ps.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/binary.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/apk.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/text.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/png.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/dex.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/xsb.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/xml.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/gettext.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/pgp.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/json.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/dtb.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/rpm_fallback.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/tar.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/directory.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/squashfs.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/wasm.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/odt.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/iso9660.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/binwalk.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/debian.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/fontconfig.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
copying diffoscope/comparators/symlink.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/json.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/icon.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/restructuredtext.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/formats.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/text.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/markdown.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
copying diffoscope/presenters/utils.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/specialize.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/fuzzy.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/command.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/container.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/libarchive.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/archive.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/compare.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/operation.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
copying diffoscope/comparators/utils/file.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/comparators/utils
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters/html
copying diffoscope/presenters/html/html.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters/html
copying diffoscope/presenters/html/templates.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters/html
copying diffoscope/presenters/html/__init__.py -> /<<PKGBUILDDIR>>/.pybuild/cpython3_3.8/build/diffoscope/presenters/html
   debian/rules execute_after_dh_auto_build
make[1]: Entering directory '/<<PKGBUILDDIR>>'
register-python-argcomplete3 diffoscope > debian/diffoscope.bash-completion
dh_auto_build -O--buildsystem=makefile -Ddoc
	cd doc && make -j5 "INSTALL=install --strip-program=true"
make[2]: Entering directory '/<<PKGBUILDDIR>>/doc'
{ cat diffoscope.h2m.0; cat ../README.rst | \
  sed -e '/^\.\. raw:: /d' -e '/^\.\. image:: /d' -e '/ :target: /d' | tee out.txt | \
  rst2man -q --no-doc-title | \
  sed -e 's,^ \\- ,,' -e 's,^\[,\\[char91],g' -e 's,\.TH *"" "" "",,g' \
      -e 's,bin/diffoscope,diffoscope,g' \
      -e 's,\.SH \(.*\),[\1],g' -e 's,\[diffoscope\],[DESCRIPTION],gi'; } > "diffoscope.h2m"
help2man --version-string=$(cd .. && python3 setup.py -V) ../bin/diffoscope -N --include="diffoscope.h2m" | \
  sed -e '/end_of_description_header/,/positional arguments/{d}' > "diffoscope.1"
make[2]: Leaving directory '/<<PKGBUILDDIR>>/doc'
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_auto_test -O--buildsystem=pybuild
I: pybuild pybuild:284: flake8 --config=/dev/null --select=F821
I: pybuild base:217: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build; python3.9 -m pytest -vv -r sxX -l --cov=diffoscope --cov-report=term-missing --cov-report=html
============================= test session starts ==============================
platform linux -- Python 3.9.0+, pytest-4.6.11, py-1.9.0, pluggy-0.13.0 -- /usr/bin/python3.9
cachedir: .pytest_cache
rootdir: /<<PKGBUILDDIR>>
plugins: cov-2.8.1
collecting ... collected 449 items

tests/test_diff_mask.py::test_none PASSED                                [  0%]
tests/test_diff_mask.py::test_all PASSED                                 [  0%]
tests/test_diff_mask.py::test_specific PASSED                            [  0%]
tests/test_difference.py::test_too_much_input_for_diff PASSED            [  0%]
tests/test_difference.py::test_too_long_diff_block_lines PASSED          [  1%]
tests/test_difference.py::test_size_updates PASSED                       [  1%]
tests/test_difference.py::test_traverse_heapq PASSED                     [  1%]
tests/test_difference.py::test_non_str_arguments_to_source1_source2 PASSED [  1%]
tests/test_excludes.py::test_none PASSED                                 [  2%]
tests/test_excludes.py::test_all PASSED                                  [  2%]
tests/test_excludes.py::test_specific PASSED                             [  2%]
tests/test_excludes.py::test_specific_case PASSED                        [  2%]
tests/test_excludes.py::test_multiple PASSED                             [  2%]
tests/test_excludes.py::test_nomatch PASSED                              [  3%]
tests/test_excludes.py::test_wildcard PASSED                             [  3%]
tests/test_main.py::test_non_existing_files PASSED                       [  3%]
tests/test_main.py::test_non_existing_left_with_new_file PASSED          [  3%]
tests/test_main.py::test_non_existing_right_with_new_file PASSED         [  4%]
tests/test_main.py::test_non_existing_files_with_new_file PASSED         [  4%]
tests/test_main.py::test_remove_temp_files_on_sigterm PASSED             [  4%]
tests/test_main.py::test_ctrl_c_handling PASSED                          [  4%]
tests/test_main.py::test_no_differences PASSED                           [  4%]
tests/test_main.py::test_no_differences_directories PASSED               [  5%]
tests/test_main.py::test_list_tools PASSED                               [  5%]
tests/test_main.py::test_list_missing_tools PASSED                       [  5%]
tests/test_main.py::test_profiling PASSED                                [  5%]
tests/test_main.py::test_non_unicode_filename PASSED                     [  6%]
tests/test_presenters.py::test_text_option_is_default PASSED             [  6%]
tests/test_presenters.py::test_text_proper_indentation SKIPPED           [  6%]
tests/test_presenters.py::test_text_option_color PASSED                  [  6%]
tests/test_presenters.py::test_text_option_with_file PASSED              [  6%]
tests/test_presenters.py::test_text_option_with_stdout PASSED            [  7%]
tests/test_presenters.py::test_markdown PASSED                           [  7%]
tests/test_presenters.py::test_restructuredtext PASSED                   [  7%]
tests/test_presenters.py::test_json PASSED                               [  7%]
tests/test_presenters.py::test_no_report_option PASSED                   [  8%]
tests/test_presenters.py::test_html_option_with_file PASSED              [  8%]
tests/test_presenters.py::test_html_visuals PASSED                       [  8%]
tests/test_presenters.py::test_htmldir_option PASSED                     [  8%]
tests/test_presenters.py::test_html_option_with_stdout PASSED            [  8%]
tests/test_presenters.py::test_html_regression_875281 PASSED             [  9%]
tests/test_presenters.py::test_limited_print PASSED                      [  9%]
tests/test_presenters.py::test_partial_string PASSED                     [  9%]
tests/test_presenters.py::test_partial_string_cont PASSED                [  9%]
tests/test_presenters.py::test_partial_string_numl PASSED                [ 10%]
tests/test_presenters.py::test_partial_string_escape PASSED              [ 10%]
tests/test_progress.py::test_progress PASSED                             [ 10%]
tests/test_progress.py::test_status_fd PASSED                            [ 10%]
tests/test_quines.py::test_identification PASSED                         [ 10%]
tests/test_quines.py::test_no_differences PASSED                         [ 11%]
tests/test_quines.py::test_difference PASSED                             [ 11%]
tests/test_quines.py::test_identification_deb PASSED                     [ 11%]
tests/test_quines.py::test_differences_deb PASSED                        [ 11%]
tests/test_readers.py::test_json PASSED                                  [ 12%]
tests/test_source.py::test_code_is_black_clean FAILED                    [ 12%]
tests/test_source.py::test_does_not_add_new_test_files PASSED            [ 12%]
tests/test_tools.py::test_sbin_added_to_path PASSED                      [ 12%]
tests/test_tools.py::test_required_tool_not_found PASSED                 [ 12%]
tests/comparators/test_android.py::test_identification PASSED            [ 13%]
tests/comparators/test_android.py::test_no_differences PASSED            [ 13%]
tests/comparators/test_android.py::test_diff PASSED                      [ 13%]
tests/comparators/test_android.py::test_compare_non_existing PASSED      [ 13%]
tests/comparators/test_apk.py::test_identification PASSED                [ 14%]
tests/comparators/test_apk.py::test_no_differences PASSED                [ 14%]
tests/comparators/test_apk.py::test_compare_non_existing PASSED          [ 14%]
tests/comparators/test_apk.py::test_zipinfo PASSED                       [ 14%]
tests/comparators/test_apk.py::test_android_manifest SKIPPED             [ 14%]
tests/comparators/test_apk.py::test_apk_metadata_source PASSED           [ 15%]
tests/comparators/test_apk.py::test_skip_undecoded_android_manifest PASSED [ 15%]
tests/comparators/test_apk.py::test_no_android_manifest PASSED           [ 15%]
tests/comparators/test_archive.py::test_compressed_content_name PASSED   [ 15%]
tests/comparators/test_berkeley_db.py::test_identification PASSED        [ 16%]
tests/comparators/test_berkeley_db.py::test_no_differences PASSED        [ 16%]
tests/comparators/test_berkeley_db.py::test_diff PASSED                  [ 16%]
tests/comparators/test_berkeley_db.py::test_compare_non_existing PASSED  [ 16%]
tests/comparators/test_binary.py::test_same_content PASSED               [ 16%]
tests/comparators/test_binary.py::test_not_same_content PASSED           [ 17%]
tests/comparators/test_binary.py::test_guess_file_type PASSED            [ 17%]
tests/comparators/test_binary.py::test_guess_encoding_binary PASSED      [ 17%]
tests/comparators/test_binary.py::test_guess_encoding_ascii PASSED       [ 17%]
tests/comparators/test_binary.py::test_guess_encoding_unicode PASSED     [ 18%]
tests/comparators/test_binary.py::test_guess_encoding_iso8859 PASSED     [ 18%]
tests/comparators/test_binary.py::test_no_differences_with_xxd PASSED    [ 18%]
tests/comparators/test_binary.py::test_compare_with_xxd PASSED           [ 18%]
tests/comparators/test_binary.py::test_compare_non_existing_with_xxd PASSED [ 18%]
tests/comparators/test_binary.py::test_no_differences_without_xxd PASSED [ 19%]
tests/comparators/test_binary.py::test_compare_without_xxd PASSED        [ 19%]
tests/comparators/test_binary.py::test_with_compare_details PASSED       [ 19%]
tests/comparators/test_binary.py::test_with_compare_details_and_fallback PASSED [ 19%]
tests/comparators/test_binary.py::test_with_compare_details_and_no_actual_differences PASSED [ 20%]
tests/comparators/test_binary.py::test_with_compare_details_and_failed_process PASSED [ 20%]
tests/comparators/test_binary.py::test_with_compare_details_and_parsing_error PASSED [ 20%]
tests/comparators/test_binary.py::test_with_compare_details_and_extraction_error PASSED [ 20%]
tests/comparators/test_binary.py::test_with_compare_details_and_tool_not_found PASSED [ 20%]
tests/comparators/test_binary.py::test_compare_two_nonexisting_files PASSED [ 21%]
tests/comparators/test_binary.py::test_symlink_to_dir PASSED             [ 21%]
tests/comparators/test_binwalk.py::test_identification PASSED            [ 21%]
tests/comparators/test_binwalk.py::test_no_differences PASSED            [ 21%]
tests/comparators/test_binwalk.py::test_listing PASSED                   [ 22%]
tests/comparators/test_binwalk.py::test_symlink PASSED                   [ 22%]
tests/comparators/test_binwalk.py::test_compare_non_existing PASSED      [ 22%]
tests/comparators/test_bzip2.py::test_identification PASSED              [ 22%]
tests/comparators/test_bzip2.py::test_no_differences PASSED              [ 22%]
tests/comparators/test_bzip2.py::test_content_source PASSED              [ 23%]
tests/comparators/test_bzip2.py::test_content_source_without_extension PASSED [ 23%]
tests/comparators/test_bzip2.py::test_content_diff PASSED                [ 23%]
tests/comparators/test_bzip2.py::test_compare_non_existing PASSED        [ 23%]
tests/comparators/test_cbfs.py::test_identification_using_offset SKIPPED [ 24%]
tests/comparators/test_cbfs.py::test_identification_without_offset SKIPPED [ 24%]
tests/comparators/test_cbfs.py::test_no_differences SKIPPED              [ 24%]
tests/comparators/test_cbfs.py::test_listing SKIPPED                     [ 24%]
tests/comparators/test_cbfs.py::test_content SKIPPED                     [ 24%]
tests/comparators/test_cbfs.py::test_compare_non_existing SKIPPED        [ 25%]
tests/comparators/test_containers.py::test_equal PASSED                  [ 25%]
tests/comparators/test_containers.py::test_different PASSED              [ 25%]
tests/comparators/test_cpio.py::test_identification PASSED               [ 25%]
tests/comparators/test_cpio.py::test_no_differences PASSED               [ 26%]
tests/comparators/test_cpio.py::test_listing PASSED                      [ 26%]
tests/comparators/test_cpio.py::test_symlink PASSED                      [ 26%]
tests/comparators/test_cpio.py::test_compressed_files PASSED             [ 26%]
tests/comparators/test_cpio.py::test_compare_non_existing PASSED         [ 26%]
tests/comparators/test_deb.py::test_identification PASSED                [ 27%]
tests/comparators/test_deb.py::test_no_differences PASSED                [ 27%]
tests/comparators/test_deb.py::test_metadata PASSED                      [ 27%]
tests/comparators/test_deb.py::test_compressed_files PASSED              [ 27%]
tests/comparators/test_deb.py::test_identification_of_md5sums_outside_deb PASSED [ 28%]
tests/comparators/test_deb.py::test_identification_of_md5sums_in_deb PASSED [ 28%]
tests/comparators/test_deb.py::test_md5sums PASSED                       [ 28%]
tests/comparators/test_deb.py::test_identical_files_in_md5sums PASSED    [ 28%]
tests/comparators/test_deb.py::test_identification_of_data_tar PASSED    [ 28%]
tests/comparators/test_deb.py::test_skip_comparison_of_known_identical_files PASSED [ 29%]
tests/comparators/test_deb.py::test_compare_non_existing PASSED          [ 29%]
tests/comparators/test_deb.py::test_compare_different_compression PASSED [ 29%]
tests/comparators/test_deb.py::test_uncompressed_data_tar PASSED         [ 29%]
tests/comparators/test_deb.py::test_uncompressed_control_tar PASSED      [ 30%]
tests/comparators/test_deb.py::test_compare_different_compression_multiple_files PASSED [ 30%]
tests/comparators/test_debian.py::test_dot_changes_identification PASSED [ 30%]
tests/comparators/test_debian.py::test_dot_changes_invalid PASSED        [ 30%]
tests/comparators/test_debian.py::test_dot_changes_no_differences PASSED [ 30%]
tests/comparators/test_debian.py::test_dot_changes_no_differences_exclude_buildinfo PASSED [ 31%]
tests/comparators/test_debian.py::test_dot_changes_identical_contents_and_different_files PASSED [ 31%]
tests/comparators/test_debian.py::test_dot_changes_different_contents_and_identical_files PASSED [ 31%]
tests/comparators/test_debian.py::test_dot_dsc_identification PASSED     [ 31%]
tests/comparators/test_debian.py::test_dot_dsc_no_associated_tar_gz PASSED [ 32%]
tests/comparators/test_debian.py::test_dot_dsc_no_differences PASSED     [ 32%]
tests/comparators/test_debian.py::test_dot_dsc_internal_diff PASSED      [ 32%]
tests/comparators/test_debian.py::test_dot_dsc_compare_non_existing PASSED [ 32%]
tests/comparators/test_debian.py::test_dot_buildinfo_identification PASSED [ 32%]
tests/comparators/test_debian.py::test_dot_buildinfo_no_deb PASSED       [ 33%]
tests/comparators/test_debian.py::test_dot_buildinfo_no_differences PASSED [ 33%]
tests/comparators/test_debian.py::test_dot_buildinfo_internal_diff PASSED [ 33%]
tests/comparators/test_debian.py::test_dot_buildinfo_compare_non_existing PASSED [ 33%]
tests/comparators/test_debian.py::test_fallback_comparisons PASSED       [ 34%]
tests/comparators/test_device.py::test_identification PASSED             [ 34%]
tests/comparators/test_device.py::test_diff PASSED                       [ 34%]
tests/comparators/test_device.py::test_diff_reverse PASSED               [ 34%]
tests/comparators/test_dex.py::test_identification PASSED                [ 34%]
tests/comparators/test_dex.py::test_no_differences PASSED                [ 35%]
tests/comparators/test_dex.py::test_differences PASSED                   [ 35%]
tests/comparators/test_dex.py::test_compare_non_existing PASSED          [ 35%]
tests/comparators/test_directory.py::test_no_differences PASSED          [ 35%]
tests/comparators/test_directory.py::test_no_differences_with_extra_slash PASSED [ 36%]
tests/comparators/test_directory.py::test_content PASSED                 [ 36%]
tests/comparators/test_directory.py::test_stat PASSED                    [ 36%]
tests/comparators/test_directory.py::test_compare_to_file PASSED         [ 36%]
tests/comparators/test_directory.py::test_compare_to_device PASSED       [ 36%]
tests/comparators/test_directory.py::test_compare_to_symlink PASSED      [ 37%]
tests/comparators/test_directory.py::test_compare_to_dangling_symlink PASSED [ 37%]
tests/comparators/test_docx.py::test_identification PASSED               [ 37%]
tests/comparators/test_docx.py::test_no_differences PASSED               [ 37%]
tests/comparators/test_docx.py::test_diff PASSED                         [ 38%]
tests/comparators/test_docx.py::test_compare_non_existing PASSED         [ 38%]
tests/comparators/test_dtb.py::test_identification PASSED                [ 38%]
tests/comparators/test_dtb.py::test_no_differences PASSED                [ 38%]
tests/comparators/test_dtb.py::test_diff PASSED                          [ 38%]
tests/comparators/test_dtb.py::test_compare_non_existing PASSED          [ 39%]
tests/comparators/test_elf.py::test_obj_identification PASSED            [ 39%]
tests/comparators/test_elf.py::test_obj_no_differences PASSED            [ 39%]
tests/comparators/test_elf.py::test_obj_compare_non_existing PASSED      [ 39%]
tests/comparators/test_elf.py::test_diff PASSED                          [ 40%]
tests/comparators/test_elf.py::test_lib_identification PASSED            [ 40%]
tests/comparators/test_elf.py::test_lib_no_differences PASSED            [ 40%]
tests/comparators/test_elf.py::test_lib_differences PASSED               [ 40%]
tests/comparators/test_elf.py::test_lib_compare_non_existing PASSED      [ 40%]
tests/comparators/test_elf.py::test_libmix_differences PASSED            [ 41%]
tests/comparators/test_elf.py::test_differences_with_dbgsym PASSED       [ 41%]
tests/comparators/test_elf.py::test_original_gnu_debuglink PASSED        [ 41%]
tests/comparators/test_elf.py::test_ignore_readelf_errors1_identify PASSED [ 41%]
tests/comparators/test_elf.py::test_ignore_readelf_errors2_identify PASSED [ 42%]
tests/comparators/test_elf.py::test_ignore_readelf_errors PASSED         [ 42%]
tests/comparators/test_epub.py::test_identification PASSED               [ 42%]
tests/comparators/test_epub.py::test_no_differences PASSED               [ 42%]
tests/comparators/test_epub.py::test_differences PASSED                  [ 42%]
tests/comparators/test_epub.py::test_compare_non_existing PASSED         [ 43%]
tests/comparators/test_ffprobe.py::test_identification PASSED            [ 43%]
tests/comparators/test_ffprobe.py::test_no_differences PASSED            [ 43%]
tests/comparators/test_ffprobe.py::test_diff PASSED                      [ 43%]
tests/comparators/test_ffprobe.py::test_compare_non_existing PASSED      [ 44%]
tests/comparators/test_fontconfig.py::test_identification PASSED         [ 44%]
tests/comparators/test_fontconfig.py::test_no_differences PASSED         [ 44%]
tests/comparators/test_fontconfig.py::test_diff PASSED                   [ 44%]
tests/comparators/test_fonts.py::test_identification PASSED              [ 44%]
tests/comparators/test_fonts.py::test_no_differences PASSED              [ 45%]
tests/comparators/test_fonts.py::test_diff PASSED                        [ 45%]
tests/comparators/test_fonts.py::test_compare_non_existing PASSED        [ 45%]
tests/comparators/test_fsimage.py::test_identification PASSED            [ 45%]
tests/comparators/test_fsimage.py::test_identification_fat12 PASSED      [ 46%]
tests/comparators/test_fsimage.py::test_identification_fat16 PASSED      [ 46%]
tests/comparators/test_fsimage.py::test_identification_fat32 PASSED      [ 46%]
tests/comparators/test_fsimage.py::test_no_differences PASSED            [ 46%]
tests/comparators/test_fsimage.py::test_differences PASSED               [ 46%]
tests/comparators/test_fsimage.py::test_compare_non_existing PASSED      [ 47%]
tests/comparators/test_fsimage.py::test_differences_fat PASSED           [ 47%]
tests/comparators/test_gettext.py::test_identification PASSED            [ 47%]
tests/comparators/test_gettext.py::test_no_differences PASSED            [ 47%]
tests/comparators/test_gettext.py::test_diff PASSED                      [ 48%]
tests/comparators/test_gettext.py::test_charsets PASSED                  [ 48%]
tests/comparators/test_gettext.py::test_compare_non_existing PASSED      [ 48%]
tests/comparators/test_gif.py::test_identification PASSED                [ 48%]
tests/comparators/test_gif.py::test_no_differences PASSED                [ 48%]
tests/comparators/test_gif.py::test_diff PASSED                          [ 49%]
tests/comparators/test_gif.py::test_compare_non_existing PASSED          [ 49%]
tests/comparators/test_gif.py::test_has_visuals PASSED                   [ 49%]
tests/comparators/test_gif.py::test_no_visuals_different_size PASSED     [ 49%]
tests/comparators/test_git.py::test_identification PASSED                [ 50%]
tests/comparators/test_git.py::test_no_differences PASSED                [ 50%]
tests/comparators/test_git.py::test_diff PASSED                          [ 50%]
tests/comparators/test_gnumeric.py::test_identification PASSED           [ 50%]
tests/comparators/test_gnumeric.py::test_no_differences PASSED           [ 51%]
tests/comparators/test_gnumeric.py::test_diff SKIPPED                    [ 51%]
tests/comparators/test_gnumeric.py::test_compare_non_existing SKIPPED    [ 51%]
tests/comparators/test_gzip.py::test_identification PASSED               [ 51%]
tests/comparators/test_gzip.py::test_fallback_recognizes PASSED          [ 51%]
tests/comparators/test_gzip.py::test_no_differences PASSED               [ 52%]
tests/comparators/test_gzip.py::test_metadata PASSED                     [ 52%]
tests/comparators/test_gzip.py::test_content_source PASSED               [ 52%]
tests/comparators/test_gzip.py::test_content_source_without_extension PASSED [ 52%]
tests/comparators/test_gzip.py::test_content_diff PASSED                 [ 53%]
tests/comparators/test_gzip.py::test_compare_non_existing PASSED         [ 53%]
tests/comparators/test_haskell.py::test_identification SKIPPED           [ 53%]
tests/comparators/test_haskell.py::test_no_differences PASSED            [ 53%]
tests/comparators/test_haskell.py::test_diff SKIPPED                     [ 53%]
tests/comparators/test_hdf.py::test_identification PASSED                [ 54%]
tests/comparators/test_hdf.py::test_no_differences PASSED                [ 54%]
tests/comparators/test_hdf.py::test_diff PASSED                          [ 54%]
tests/comparators/test_hdf.py::test_compare_non_existing PASSED          [ 54%]
tests/comparators/test_icc.py::test_identification PASSED                [ 55%]
tests/comparators/test_icc.py::test_no_differences PASSED                [ 55%]
tests/comparators/test_icc.py::test_diff PASSED                          [ 55%]
tests/comparators/test_icc.py::test_compare_non_existing PASSED          [ 55%]
tests/comparators/test_ico_image.py::test_identification PASSED          [ 55%]
tests/comparators/test_ico_image.py::test_no_differences PASSED          [ 56%]
tests/comparators/test_ico_image.py::test_diff PASSED                    [ 56%]
tests/comparators/test_ico_image.py::test_diff_meta PASSED               [ 56%]
tests/comparators/test_ico_image.py::test_diff_meta2 PASSED              [ 56%]
tests/comparators/test_ico_image.py::test_has_visuals PASSED             [ 57%]
tests/comparators/test_ipk.py::test_identification PASSED                [ 57%]
tests/comparators/test_ipk.py::test_no_differences PASSED                [ 57%]
tests/comparators/test_ipk.py::test_metadata PASSED                      [ 57%]
tests/comparators/test_ipk.py::test_compressed_files PASSED              [ 57%]
tests/comparators/test_ipk.py::test_compare_non_existing PASSED          [ 58%]
tests/comparators/test_iso9660.py::test_identification PASSED            [ 58%]
tests/comparators/test_iso9660.py::test_no_differences PASSED            [ 58%]
tests/comparators/test_iso9660.py::test_iso9660_content PASSED           [ 58%]
tests/comparators/test_iso9660.py::test_iso9660_rockridge PASSED         [ 59%]
tests/comparators/test_iso9660.py::test_symlink PASSED                   [ 59%]
tests/comparators/test_iso9660.py::test_compressed_files PASSED          [ 59%]
tests/comparators/test_iso9660.py::test_compare_non_existing PASSED      [ 59%]
tests/comparators/test_java.py::test_identification PASSED               [ 59%]
tests/comparators/test_java.py::test_no_differences PASSED               [ 60%]
tests/comparators/test_java.py::test_diff_procyon PASSED                 [ 60%]
tests/comparators/test_java.py::test_diff_javap PASSED                   [ 60%]
tests/comparators/test_java.py::test_compare_non_existing_procyon PASSED [ 60%]
tests/comparators/test_java.py::test_compare_non_existing_javap PASSED   [ 61%]
tests/comparators/test_javascript.py::test_identification PASSED         [ 61%]
tests/comparators/test_javascript.py::test_no_differences PASSED         [ 61%]
tests/comparators/test_javascript.py::test_diff PASSED                   [ 61%]
tests/comparators/test_javascript.py::test_compare_non_existing PASSED   [ 61%]
tests/comparators/test_jpeg_image.py::test_identification PASSED         [ 62%]
tests/comparators/test_jpeg_image.py::test_no_differences PASSED         [ 62%]
tests/comparators/test_jpeg_image.py::test_diff PASSED                   [ 62%]
tests/comparators/test_jpeg_image.py::test_compare_non_existing PASSED   [ 62%]
tests/comparators/test_jpeg_image.py::test_diff_meta PASSED              [ 63%]
tests/comparators/test_jpeg_image.py::test_has_visuals PASSED            [ 63%]
tests/comparators/test_json.py::test_identification PASSED               [ 63%]
tests/comparators/test_json.py::test_invalid PASSED                      [ 63%]
tests/comparators/test_json.py::test_no_differences PASSED               [ 63%]
tests/comparators/test_json.py::test_diff PASSED                         [ 64%]
tests/comparators/test_json.py::test_compare_non_existing PASSED         [ 64%]
tests/comparators/test_json.py::test_ordering_differences PASSED         [ 64%]
tests/comparators/test_kbx.py::test_identification PASSED                [ 64%]
tests/comparators/test_kbx.py::test_no_differences PASSED                [ 65%]
tests/comparators/test_kbx.py::test_diff PASSED                          [ 65%]
tests/comparators/test_kbx.py::test_compare_non_existing PASSED          [ 65%]
tests/comparators/test_lz4.py::test_identification PASSED                [ 65%]
tests/comparators/test_lz4.py::test_no_differences PASSED                [ 65%]
tests/comparators/test_lz4.py::test_content_source PASSED                [ 66%]
tests/comparators/test_lz4.py::test_content_source_without_extension PASSED [ 66%]
tests/comparators/test_lz4.py::test_content_diff PASSED                  [ 66%]
tests/comparators/test_lz4.py::test_compare_non_existing PASSED          [ 66%]
tests/comparators/test_macho.py::test_obj_identification PASSED          [ 67%]
tests/comparators/test_macho.py::test_obj_no_differences PASSED          [ 67%]
tests/comparators/test_macho.py::test_obj_compare_non_existing SKIPPED   [ 67%]
tests/comparators/test_macho.py::test_diff SKIPPED                       [ 67%]
tests/comparators/test_mono.py::test_identification PASSED               [ 67%]
tests/comparators/test_mono.py::test_no_differences PASSED               [ 68%]
tests/comparators/test_mono.py::test_diff PASSED                         [ 68%]
tests/comparators/test_mono.py::test_compare_non_existing PASSED         [ 68%]
tests/comparators/test_ocaml.py::test_identification PASSED              [ 68%]
tests/comparators/test_ocaml.py::test_no_differences PASSED              [ 69%]
tests/comparators/test_ocaml.py::test_diff FAILED                        [ 69%]
tests/comparators/test_ocaml.py::test_compare_non_existing PASSED        [ 69%]
tests/comparators/test_odt.py::test_identification PASSED                [ 69%]
tests/comparators/test_odt.py::test_no_differences PASSED                [ 69%]
tests/comparators/test_odt.py::test_diff PASSED                          [ 70%]
tests/comparators/test_odt.py::test_compare_non_existing PASSED          [ 70%]
tests/comparators/test_ogg.py::test_identification PASSED                [ 70%]
tests/comparators/test_ogg.py::test_no_differences PASSED                [ 70%]
tests/comparators/test_ogg.py::test_diff PASSED                          [ 71%]
tests/comparators/test_ogg.py::test_compare_non_existing PASSED          [ 71%]
tests/comparators/test_openssh_pub_key.py::test_identification PASSED    [ 71%]
tests/comparators/test_openssh_pub_key.py::test_no_differences PASSED    [ 71%]
tests/comparators/test_openssh_pub_key.py::test_diff PASSED              [ 71%]
tests/comparators/test_openssh_pub_key.py::test_compare_non_existing PASSED [ 72%]
tests/comparators/test_openssl.py::test_identification PASSED            [ 72%]
tests/comparators/test_openssl.py::test_no_differences PASSED            [ 72%]
tests/comparators/test_openssl.py::test_differences PASSED               [ 72%]
tests/comparators/test_pcap.py::test_identification PASSED               [ 73%]
tests/comparators/test_pcap.py::test_no_differences PASSED               [ 73%]
tests/comparators/test_pcap.py::test_diff PASSED                         [ 73%]
tests/comparators/test_pcap.py::test_compare_non_existing PASSED         [ 73%]
tests/comparators/test_pdf.py::test_identification PASSED                [ 73%]
tests/comparators/test_pdf.py::test_no_differences PASSED                [ 74%]
tests/comparators/test_pdf.py::test_differences_found_with_weird_encoding PASSED [ 74%]
tests/comparators/test_pdf.py::test_text_diff PASSED                     [ 74%]
tests/comparators/test_pdf.py::test_compare_non_existing PASSED          [ 74%]
tests/comparators/test_pdf.py::test_metadata PASSED                      [ 75%]
tests/comparators/test_pgp.py::test_identification PASSED                [ 75%]
tests/comparators/test_pgp.py::test_no_differences PASSED                [ 75%]
tests/comparators/test_pgp.py::test_diff PASSED                          [ 75%]
tests/comparators/test_pgp.py::test_compare_non_existing PASSED          [ 75%]
tests/comparators/test_pgp.py::test_pgp_signature_identification PASSED  [ 76%]
tests/comparators/test_pgp.py::test_pgp_signature PASSED                 [ 76%]
tests/comparators/test_pgp.py::test_signed_identification PASSED         [ 76%]
tests/comparators/test_pgp.py::test_signed_diff PASSED                   [ 76%]
tests/comparators/test_png.py::test_identification PASSED                [ 77%]
tests/comparators/test_png.py::test_no_differences PASSED                [ 77%]
tests/comparators/test_png.py::test_diff PASSED                          [ 77%]
tests/comparators/test_png.py::test_compare_non_existing PASSED          [ 77%]
tests/comparators/test_png.py::test_has_visuals PASSED                   [ 77%]
tests/comparators/test_ppu.py::test_identification PASSED                [ 78%]
tests/comparators/test_ppu.py::test_no_differences PASSED                [ 78%]
tests/comparators/test_ppu.py::test_diff PASSED                          [ 78%]
tests/comparators/test_ppu.py::test_compare_non_existing PASSED          [ 78%]
tests/comparators/test_ps.py::test_identification PASSED                 [ 79%]
tests/comparators/test_ps.py::test_no_differences PASSED                 [ 79%]
tests/comparators/test_ps.py::test_internal_diff PASSED                  [ 79%]
tests/comparators/test_ps.py::test_text_diff PASSED                      [ 79%]
tests/comparators/test_ps.py::test_compare_non_existing PASSED           [ 79%]
tests/comparators/test_rdata.py::test_identification PASSED              [ 80%]
tests/comparators/test_rdata.py::test_no_differences PASSED              [ 80%]
tests/comparators/test_rdata.py::test_num_items PASSED                   [ 80%]
tests/comparators/test_rdata.py::test_item_rds PASSED                    [ 80%]
tests/comparators/test_rlib.py::test_identification PASSED               [ 81%]
tests/comparators/test_rlib.py::test_no_differences PASSED               [ 81%]
tests/comparators/test_rlib.py::test_num_items PASSED                    [ 81%]
tests/comparators/test_rlib.py::test_item0_armap PASSED                  [ 81%]
tests/comparators/test_rlib.py::test_item1_elf PASSED                    [ 81%]
tests/comparators/test_rlib.py::test_item2_rust_metadata_bin PASSED      [ 82%]
tests/comparators/test_rlib.py::test_item3_deflate_llvm_bitcode PASSED   [ 82%]
tests/comparators/test_rlib.py::test_compare_non_existing PASSED         [ 82%]
tests/comparators/test_rpm.py::test_identification PASSED                [ 82%]
tests/comparators/test_rpm.py::test_no_differences PASSED                [ 83%]
tests/comparators/test_rpm.py::test_header PASSED                        [ 83%]
tests/comparators/test_rpm.py::test_listing PASSED                       [ 83%]
tests/comparators/test_rpm.py::test_content PASSED                       [ 83%]
tests/comparators/test_rpm.py::test_compare_non_existing PASSED          [ 83%]
tests/comparators/test_rpm.py::test_fallback_comparison PASSED           [ 84%]
tests/comparators/test_sqlite.py::test_identification PASSED             [ 84%]
tests/comparators/test_sqlite.py::test_no_differences PASSED             [ 84%]
tests/comparators/test_sqlite.py::test_diff PASSED                       [ 84%]
tests/comparators/test_sqlite.py::test_compare_non_existing PASSED       [ 85%]
tests/comparators/test_squashfs.py::test_identification PASSED           [ 85%]
tests/comparators/test_squashfs.py::test_no_differences PASSED           [ 85%]
tests/comparators/test_squashfs.py::test_no_warnings PASSED              [ 85%]
tests/comparators/test_squashfs.py::test_superblock PASSED               [ 85%]
tests/comparators/test_squashfs.py::test_symlink PASSED                  [ 86%]
tests/comparators/test_squashfs.py::test_compressed_files PASSED         [ 86%]
tests/comparators/test_squashfs.py::test_compare_non_existing PASSED     [ 86%]
tests/comparators/test_symlink.py::test_destination PASSED               [ 86%]
tests/comparators/test_tar.py::test_identification PASSED                [ 87%]
tests/comparators/test_tar.py::test_no_differences PASSED                [ 87%]
tests/comparators/test_tar.py::test_listing PASSED                       [ 87%]
tests/comparators/test_tar.py::test_symlinks PASSED                      [ 87%]
tests/comparators/test_tar.py::test_text_file PASSED                     [ 87%]
tests/comparators/test_tar.py::test_compare_non_existing PASSED          [ 88%]
tests/comparators/test_tar.py::test_no_permissions_dir_in_tarball PASSED [ 88%]
tests/comparators/test_text.py::test_no_differences PASSED               [ 88%]
tests/comparators/test_text.py::test_difference_in_ascii PASSED          [ 88%]
tests/comparators/test_text.py::test_difference_in_unicode PASSED        [ 89%]
tests/comparators/test_text.py::test_difference_between_iso88591_and_unicode PASSED [ 89%]
tests/comparators/test_text.py::test_difference_between_iso88591_and_unicode_only PASSED [ 89%]
tests/comparators/test_text.py::test_compare_non_existing PASSED         [ 89%]
tests/comparators/test_text.py::test_ordering_differences PASSED         [ 89%]
tests/comparators/test_utils.py::test_tools_missing PASSED               [ 90%]
tests/comparators/test_utils.py::test_skip_unless_tools_exist_empty SKIPPED [ 90%]
tests/comparators/test_utils.py::test_skip_unless_tools_exist_missing SKIPPED [ 90%]
tests/comparators/test_utils.py::test_fuzzy_matching PASSED              [ 90%]
tests/comparators/test_utils.py::test_fuzzy_matching_only_once PASSED    [ 91%]
tests/comparators/test_utils.py::test_no_fuzzy_matching PASSED           [ 91%]
tests/comparators/test_utils.py::test_no_fuzzy_matching_new_file PASSED  [ 91%]
tests/comparators/test_utils.py::test_trim_stderr_in_command PASSED      [ 91%]
tests/comparators/test_wasm.py::test_identification PASSED               [ 91%]
tests/comparators/test_wasm.py::test_no_differences PASSED               [ 92%]
tests/comparators/test_wasm.py::test_diff PASSED                         [ 92%]
tests/comparators/test_wasm.py::test_compare_non_existing PASSED         [ 92%]
tests/comparators/test_xml.py::test_identification PASSED                [ 92%]
tests/comparators/test_xml.py::test_invalid PASSED                       [ 93%]
tests/comparators/test_xml.py::test_no_differences PASSED                [ 93%]
tests/comparators/test_xml.py::test_diff PASSED                          [ 93%]
tests/comparators/test_xsb.py::test_identification PASSED                [ 93%]
tests/comparators/test_xsb.py::test_no_differences PASSED                [ 93%]
tests/comparators/test_xsb.py::test_diff PASSED                          [ 94%]
tests/comparators/test_xsb.py::test_compare_non_existing PASSED          [ 94%]
tests/comparators/test_xz.py::test_identification PASSED                 [ 94%]
tests/comparators/test_xz.py::test_no_differences PASSED                 [ 94%]
tests/comparators/test_xz.py::test_content_source PASSED                 [ 95%]
tests/comparators/test_xz.py::test_content_source_without_extension PASSED [ 95%]
tests/comparators/test_xz.py::test_content_diff PASSED                   [ 95%]
tests/comparators/test_xz.py::test_compare_non_existing PASSED           [ 95%]
tests/comparators/test_zip.py::test_identification PASSED                [ 95%]
tests/comparators/test_zip.py::test_no_differences PASSED                [ 96%]
tests/comparators/test_zip.py::test_metadata PASSED                      [ 96%]
tests/comparators/test_zip.py::test_compressed_files PASSED              [ 96%]
tests/comparators/test_zip.py::test_extra_fields PASSED                  [ 96%]
tests/comparators/test_zip.py::test_compare_non_existing PASSED          [ 97%]
tests/comparators/test_zip.py::test_mozzip_identification PASSED         [ 97%]
tests/comparators/test_zip.py::test_mozzip_no_differences PASSED         [ 97%]
tests/comparators/test_zip.py::test_mozzip_metadata PASSED               [ 97%]
tests/comparators/test_zip.py::test_mozzip_compressed_files PASSED       [ 97%]
tests/comparators/test_zip.py::test_mozzip_compare_non_existing PASSED   [ 98%]
tests/comparators/test_zip.py::test_jmod_identification PASSED           [ 98%]
tests/comparators/test_zip.py::test_jmod_no_differences PASSED           [ 98%]
tests/comparators/test_zip.py::test_jmod_metadata PASSED                 [ 98%]
tests/comparators/test_zip.py::test_encrypted PASSED                     [ 99%]
tests/comparators/test_zip.py::test_commented PASSED                     [ 99%]
tests/comparators/test_zst.py::test_identification PASSED                [ 99%]
tests/comparators/test_zst.py::test_no_differences PASSED                [ 99%]
tests/comparators/test_zst.py::test_content_source PASSED                [100%]

=================================== FAILURES ===================================
___________________________ test_code_is_black_clean ___________________________

    @skip_unless_tool_is_at_least("black", black_version, "19.10b0")
    def test_code_is_black_clean():
>       output = subprocess.check_output(
            ("black", "--diff", "."), stderr=subprocess.PIPE
        ).decode("utf-8")


tests/test_source.py:247: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/lib/python3.9/subprocess.py:420: in check_output
    return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

input = None, capture_output = False, timeout = None, check = True
popenargs = (('black', '--diff', '.'),), kwargs = {'stderr': -1, 'stdout': -1}
process = <Popen: returncode: 123 args: ['black', '--diff', '.']>
stdout = b'--- diffoscope/comparators/deb.py\t2020-09-11 09:08:38 +0000\n+++ diffoscope/comparators/deb.py\t2020-10-19 19:47:42...ogger.debug(\n                 "Unable to find the matching debug file %s in %s",\n                 debug_file_path,\n'
stderr = b'would reformat diffoscope/comparators/deb.py\nerror: cannot format diffoscope/comparators/java.py: I/O operation on ...", line 19, in multiprocessing_finish\n    cov.stop()\nAttributeError: \'NoneType\' object has no attribute \'stop\'\n'
retcode = 123

    def run(*popenargs,
            input=None, capture_output=False, timeout=None, check=False, **kwargs):
        """Run command with arguments and return a CompletedProcess instance.
    
        The returned instance will have attributes args, returncode, stdout and
        stderr. By default, stdout and stderr are not captured, and those attributes
        will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
    
        If check is True and the exit code was non-zero, it raises a
        CalledProcessError. The CalledProcessError object will have the return code
        in the returncode attribute, and output & stderr attributes if those streams
        were captured.
    
        If timeout is given, and the process takes too long, a TimeoutExpired
        exception will be raised.
    
        There is an optional argument "input", allowing you to
        pass bytes or a string to the subprocess's stdin.  If you use this argument
        you may not also use the Popen constructor's "stdin" argument, as
        it will be used internally.
    
        By default, all communication is in bytes, and therefore any "input" should
        be bytes, and the stdout and stderr will be bytes. If in text mode, any
        "input" should be a string, and stdout and stderr will be strings decoded
        according to locale encoding, or by "encoding" if set. Text mode is
        triggered by setting any of text, encoding, errors or universal_newlines.
    
        The other arguments are the same as for the Popen constructor.
        """
        if input is not None:
            if kwargs.get('stdin') is not None:
                raise ValueError('stdin and input arguments may not both be used.')
            kwargs['stdin'] = PIPE
    
        if capture_output:
            if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
                raise ValueError('stdout and stderr arguments may not be used '
                                 'with capture_output.')
            kwargs['stdout'] = PIPE
            kwargs['stderr'] = PIPE
    
        with Popen(*popenargs, **kwargs) as process:
            try:
                stdout, stderr = process.communicate(input, timeout=timeout)
            except TimeoutExpired as exc:
                process.kill()
                if _mswindows:
                    # Windows accumulates the output in a single blocking
                    # read() call run on child threads, with the timeout
                    # being done in a join() on those threads.  communicate()
                    # _after_ kill() is required to collect that and add it
                    # to the exception.
                    exc.stdout, exc.stderr = process.communicate()
                else:
                    # POSIX _communicate already populated the output so
                    # far into the TimeoutExpired exception.
                    process.wait()
                raise
            except:  # Including KeyboardInterrupt, communicate handled that.
                process.kill()
                # We don't call process.wait() as .__exit__ does that for us.
                raise
            retcode = process.poll()
            if check and retcode:
>               raise CalledProcessError(retcode, process.args,
                                         output=stdout, stderr=stderr)
E               subprocess.CalledProcessError: Command '('black', '--diff', '.')' returned non-zero exit status 123.

capture_output = False
check      = True
input      = None
kwargs     = {'stderr': -1, 'stdout': -1}
popenargs  = (('black', '--diff', '.'),)
process    = <Popen: returncode: 123 args: ['black', '--diff', '.']>
retcode    = 123
stderr     = (b'would reformat diffoscope/comparators/deb.py\nerror: cannot format diffos'
 b'cope/comparators/java.py: I/O operation on closed file\nwould reformat di'
 b'ffoscope/comparators/lz4.py\nwould reformat diffoscope/comparators/elf.py'
 b'\nerror: cannot format diffoscope/comparators/zst.py: I/O operation on cl'
 b'osed file\nerror: cannot format diffoscope/comparators/utils/file.py: I/O'
 b' operation on closed file\nTraceback (most recent call last):\n  File "/us'
 b'r/lib/python3.8/multiprocessing/util.py", line 300, in _run_finalizers\n '
 b'   finalizer()\n  File "/usr/lib/python3.8/multiprocessing/util.py", line'
 b' 224, in __call__\n    res = self._callback(*self._args, **self._kwargs)\n'
 b'  File "/usr/lib/python3/dist-packages/cov_core.py", line 19, in multiproces'
 b"sing_finish\n    cov.stop()\nAttributeError: 'NoneType' object has no attr"
 b'ibute \'stop\'\nTraceback (most recent call last):\n  File "/usr/lib/python3'
 b'.8/multiprocessing/util.py", line 300, in _run_finalizers\n    finalizer('
 b')\n  File "/usr/lib/python3.8/multiprocessing/util.py", line 224, in __ca'
 b'll__\n    res = self._callback(*self._args, **self._kwargs)\n  File "/usr/'
 b'lib/python3/dist-packages/cov_core.py", line 19, in multiprocessing_fini'
 b"sh\n    cov.stop()\nAttributeError: 'NoneType' object has no attribute 'st"
 b'op\'\nTraceback (most recent call last):\n  File "/usr/lib/python3.8/multip'
 b'rocessing/util.py", line 300, in _run_finalizers\n    finalizer()\n  File '
 b'"/usr/lib/python3.8/multiprocessing/util.py", line 224, in __call__\n    '
 b'res = self._callback(*self._args, **self._kwargs)\n  File "/usr/lib/pytho'
 b'n3/dist-packages/cov_core.py", line 19, in multiprocessing_finish\n    co'
 b"v.stop()\nAttributeError: 'NoneType' object has no attribute 'stop'\nTrace"
 b'back (most recent call last):\n  File "/usr/lib/python3.8/multiprocessing'
 b'/util.py", line 300, in _run_finalizers\n    finalizer()\n  File "/usr/lib'
 b'/python3.8/multiprocessing/util.py", line 224, in __call__\n    res = sel'
 b'f._callback(*self._args, **self._kwargs)\n  File "/usr/lib/python3/dist-p'
 b'ackages/cov_core.py", line 19, in multiprocessing_finish\n    cov.stop()\n'
 b"AttributeError: 'NoneType' object has no attribute 'stop'\nOh no!"
 b' \xf0\x9f\x92\xa5 \xf0\x9f\x92\x94 \xf0\x9f\x92\xa5\n3 files would be ref'
 b'ormatted, 190 files would be left unchanged, 3 files would fail to reformat.'
 b'\nTraceback (most recent call last):\n  File "/usr/lib/python3.8/multiproc'
 b'essing/process.py", line 315, in _bootstrap\n    self.run()\n  File "/usr/'
 b'lib/python3.8/multiprocessing/process.py", line 108, in run\n    self._ta'
 b'rget(*self._args, **self._kwargs)\n  File "/usr/lib/python3.8/multiproces'
 b'sing/managers.py", line 616, in _run_server\n    server.serve_forever()\n '
 b' File "/usr/lib/python3.8/multiprocessing/managers.py", line 182, in serve_f'
 b'orever\n    sys.exit(0)\nSystemExit: 0\n\nDuring handling of the above excep'
 b'tion, another exception occurred:\n\nTraceback (most recent call last):\n  '
 b'File "/usr/lib/python3.8/multiprocessing/util.py", line 300, in _run_finaliz'
 b'ers\n    finalizer()\n  File "/usr/lib/python3.8/multiprocessing/util.py",'
 b' line 224, in __call__\n    res = self._callback(*self._args, **self._kwa'
 b'rgs)\n  File "/usr/lib/python3/dist-packages/cov_core.py", line 19, in mu'
 b"ltiprocessing_finish\n    cov.stop()\nAttributeError: 'NoneType' object ha"
 b"s no attribute 'stop'\n")
stdout     = (b'--- diffoscope/comparators/deb.py\t2020-09-11 09:08:38 +0000\n+++ diffosco'
 b'pe/comparators/deb.py\t2020-10-19 19:47:42.373921 +0000\n@@ -135,12 +135,1'
 b'4 @@\n     def control(self):\n         if not deb822:\n             return'
 b' None\n \n         if not hasattr(self, "_control"):\n-            control_'
 b'file = self.as_container.control_tar.as_container.lookup_file(\n-        '
 b'        "./control"\n+            control_file = (\n+                self.'
 b'as_container.control_tar.as_container.lookup_file(\n+                    '
 b'"./control"\n+                )\n             )\n             if control_fi'
 b'le:\n                 with open(control_file.path, "rb") as f:\n          '
 b'           self._control = deb822.Deb822(f)\n \n--- diffoscope/comparators'
 b'/lz4.py\t2020-09-11 09:08:38 +0000\n+++ diffoscope/comparators/lz4.py\t2020'
 b'-10-19 19:47:42.663850 +0000\n@@ -45,11 +45,13 @@\n     def extract(self, '
 b'member_name, dest_dir):\n         dest_path = os.path.join(dest_dir, memb'
 b'er_name)\n         logger.debug("lz4 extracting to %s", dest_path)\n      '
 b'   with open(dest_path, "wb") as fp:\n             subprocess.check_call('
 b'\n-                ["lz4", "-d", "-c", self.source.path], stdout=fp, stde'
 b'rr=None,\n+                ["lz4", "-d", "-c", self.source.path],\n+      '
 b'          stdout=fp,\n+                stderr=None,\n             )\n      '
 b'   return dest_path\n \n \n class Lz4File(File):\n--- diffoscope/comparators'
 b'/elf.py\t2020-09-11 09:08:38 +0000\n+++ diffoscope/comparators/elf.py\t2020'
 b'-10-19 19:47:42.866422 +0000\n@@ -551,12 +551,14 @@\n \n         dbgsym_pac'
 b'kage = deb.container.dbgsym_build_id_map[build_id]\n         debug_file_p'
 b'ath = "./usr/lib/debug/.build-id/{0}/{1}.debug".format(\n             bui'
 b'ld_id[:2], build_id[2:]\n         )\n-        debug_file = dbgsym_package.'
 b'as_container.data_tar.as_container.lookup_file(\n-            debug_file_'
 b'path\n+        debug_file = (\n+            dbgsym_package.as_container.da'
 b'ta_tar.as_container.lookup_file(\n+                debug_file_path\n+     '
 b'       )\n         )\n         if not debug_file:\n             logger.debu'
 b'g(\n                 "Unable to find the matching debug file %s in %s",\n '
 b'                debug_file_path,\n')
timeout    = None

/usr/lib/python3.9/subprocess.py:524: CalledProcessError
__________________________________ test_diff ___________________________________

differences = [<Difference ocamlobjinfo -- ocamlobjinfo []>]

    @skip_unless_tool_is_at_least("ocamlobjinfo", ocaml_version, "4.08.1")
    def test_diff(differences):
        expected_diff = get_data("ocaml_expected_diff")
>       assert differences[0].unified_diff == expected_diff
E       AssertionError: assert '@@ -1,5 +1,5...ormatBasics\n' == '@@ -1,5 +1,5 ...ormatBasics\n'
E           @@ -1,5 +1,5 @@
E           -Unit name: Test1
E           +Unit name: Test2
E            Interfaces imported:
E         - -	3e47d8b00458748ef1a9311764531b2c	Test1
E         - +	de7049745527b20997c517c338bb83cb	Test2
E         -  	c21c5d26416461b543321872a551ea0d	Stdlib
E         -  	3a3ca1838627f7762f49679ce0278ad1	CamlinternalFormatBasics
E         + -	4bf3070814d7fb8e8d365d95481f8cad	Test1
E         + +	333f54d1aae1264e7ad64cbb437cbc4f	Test2
E         +  	ad45f251bbf98d3a0bf3b883546ecfc8	Stdlib
E         +  	a2b1a9d869fd05813beb35645bd9cd94	CamlinternalFormatBasics

differences = [<Difference ocamlobjinfo -- ocamlobjinfo []>]
expected_diff = ('@@ -1,5 +1,5 @@\n'
 '-Unit name: Test1\n'
 '+Unit name: Test2\n'
 ' Interfaces imported:\n'
 '-\t4bf3070814d7fb8e8d365d95481f8cad\tTest1\n'
 '+\t333f54d1aae1264e7ad64cbb437cbc4f\tTest2\n'
 ' \tad45f251bbf98d3a0bf3b883546ecfc8\tStdlib\n'
 ' \ta2b1a9d869fd05813beb35645bd9cd94\tCamlinternalFormatBasics\n')

tests/comparators/test_ocaml.py:79: AssertionError

----------- coverage: platform linux, python 3.9.0-final-0 -----------
Name                                         Stmts   Miss  Cover   Missing
--------------------------------------------------------------------------
diffoscope/__init__.py                           1      0   100%
diffoscope/changes.py                          122     52    57%   85, 93, 96, 105, 112, 119, 140, 177, 183, 189, 195-199, 205, 211, 227-230, 233-236, 245, 257-289, 307-309, 314-317, 324, 336
diffoscope/comparators/__init__.py              47     21    55%   135-141, 146-155, 160-169
diffoscope/comparators/android.py               43      1    98%   50
diffoscope/comparators/apk.py                  119      2    98%   44, 223
diffoscope/comparators/ar.py                    27      0   100%
diffoscope/comparators/berkeley_db.py           20      0   100%
diffoscope/comparators/binary.py                17      0   100%
diffoscope/comparators/binwalk.py               61      6    90%   33-34, 38-40, 75
diffoscope/comparators/bzip2.py                 25      0   100%
diffoscope/comparators/cbfs.py                  89     43    52%   40-41, 47, 50, 56-67, 70, 73, 76, 80-92, 105-115, 146-149, 153-167, 170
diffoscope/comparators/cpio.py                  10      0   100%
diffoscope/comparators/deb.py                  126      9    93%   38-40, 53, 78, 137, 188-190
diffoscope/comparators/debian.py               149      4    97%   78-80, 107-112
diffoscope/comparators/debian_fallback.py       17      0   100%
diffoscope/comparators/device.py                49      6    88%   50-53, 88-91
diffoscope/comparators/dex.py                   29      1    97%   37
diffoscope/comparators/directory.py            155     22    86%   55-58, 105-108, 116, 123-125, 132-135, 166-167, 169, 172-173, 184-185, 249
diffoscope/comparators/docx.py                  14      0   100%
diffoscope/comparators/dtb.py                   14      0   100%
diffoscope/comparators/elf.py                  306     28    91%   76, 84-85, 215, 230, 325, 369, 391-393, 401, 413-415, 423, 454, 486-495, 503, 516, 527, 533, 546-550, 560-565
diffoscope/comparators/ffprobe.py               27      0   100%
diffoscope/comparators/fontconfig.py            26      0   100%
diffoscope/comparators/fonts.py                 16      0   100%
diffoscope/comparators/fsimage.py               85     18    79%   34-36, 44, 51-52, 59-65, 69-71, 77, 82-83, 87, 132
diffoscope/comparators/gettext.py               37      0   100%
diffoscope/comparators/gif.py                   42      4    90%   57-58, 101-102
diffoscope/comparators/git.py                   29      0   100%
diffoscope/comparators/gnumeric.py              19      7    63%   37-47, 58-70
diffoscope/comparators/gzip.py                  27      0   100%
diffoscope/comparators/haskell.py               60     13    78%   38, 48, 86-88, 97, 103-110, 114, 125-126, 143, 146
diffoscope/comparators/hdf.py                   14      0   100%
diffoscope/comparators/icc.py                   14      0   100%
diffoscope/comparators/image.py                 84      6    93%   136-137, 165-166, 185-186
diffoscope/comparators/ipk.py                    4      0   100%
diffoscope/comparators/iso9660.py               52      3    94%   34, 73, 96
diffoscope/comparators/java.py                  51      4    92%   95-98, 106
diffoscope/comparators/javascript.py            13      0   100%
diffoscope/comparators/json.py                  52      9    83%   34-36, 54-55, 81, 90-91, 95
diffoscope/comparators/kbx.py                   18      1    94%   36
diffoscope/comparators/llvm.py                  22      0   100%
diffoscope/comparators/lz4.py                   28      0   100%
diffoscope/comparators/macho.py                 57     28    51%   33-35, 39, 42, 46-49, 54, 59, 64, 69, 82-90, 96-152
diffoscope/comparators/missing_file.py          53      3    94%   72, 75, 94
diffoscope/comparators/mono.py                  14      0   100%
diffoscope/comparators/ocaml.py                 19      0   100%
diffoscope/comparators/odt.py                   14      0   100%
diffoscope/comparators/ogg.py                   14      0   100%
diffoscope/comparators/openssh.py               14      0   100%
diffoscope/comparators/openssl.py               23      2    91%   38, 70
diffoscope/comparators/pcap.py                  14      0   100%
diffoscope/comparators/pdf.py                   46      5    89%   31-33, 56, 90
diffoscope/comparators/pe32.py                  18      5    72%   32, 42-45, 53
diffoscope/comparators/pgp.py                   59     12    80%   56-73, 80, 83, 104-105, 111-113
diffoscope/comparators/png.py                   32      2    94%   79-80
diffoscope/comparators/ppu.py                   57     16    72%   74, 86-99, 102-108
diffoscope/comparators/ps.py                    25      2    92%   51-52
diffoscope/comparators/rdata.py                 58     21    64%   92-118, 155, 158, 166-172
diffoscope/comparators/rpm.py                   71      2    97%   42, 49
diffoscope/comparators/rpm_fallback.py          11      0   100%
diffoscope/comparators/rust.py                  32      0   100%
diffoscope/comparators/sqlite.py                14      0   100%
diffoscope/comparators/squashfs.py             171     33    81%   99, 117, 131, 139, 142, 156, 164, 186-208, 211-214, 217, 220, 247-248, 290-292
diffoscope/comparators/symlink.py               35      2    94%   59-60
diffoscope/comparators/tar.py                   12      0   100%
diffoscope/comparators/text.py                  27      2    93%   72-74
diffoscope/comparators/utils/__init__.py         0      0   100%
diffoscope/comparators/utils/archive.py         98     13    87%   56, 60, 64, 68, 109-110, 126, 129, 132, 141, 151, 154, 159
diffoscope/comparators/utils/command.py         56      3    95%   64, 78, 106
diffoscope/comparators/utils/compare.py         93     14    85%   77-79, 93, 110-111, 124, 137-145
diffoscope/comparators/utils/container.py      119      7    94%   67, 71, 116-120, 208
diffoscope/comparators/utils/file.py           275     43    84%   40-41, 54-60, 89-99, 106, 112, 287-288, 339-341, 348, 352, 356, 441-444, 452-455, 495, 506-519, 538, 546, 562, 570-572
diffoscope/comparators/utils/fuzzy.py           29      2    93%   28-29
diffoscope/comparators/utils/libarchive.py     182     22    88%   46-49, 53-56, 68-71, 75-78, 82-85, 133-136, 175, 204, 212, 215, 228, 242, 256-257, 325-326
diffoscope/comparators/utils/operation.py       26      6    77%   34, 41, 49, 56, 63, 67
diffoscope/comparators/utils/specialize.py      32      2    94%   79, 82
diffoscope/comparators/wasm.py                  19      0   100%
diffoscope/comparators/xml.py                   48      3    94%   68, 151-152
diffoscope/comparators/xsb.py                   17      0   100%
diffoscope/comparators/xz.py                    28      0   100%
diffoscope/comparators/zip.py                  138      4    97%   149, 152, 209-210
diffoscope/comparators/zst.py                   26      0   100%
diffoscope/config.py                            43      4    91%   77-88
diffoscope/diff.py                             425     58    86%   102, 139, 192, 229, 231-233, 275-278, 291-319, 369, 400, 558-559, 570, 587, 589, 593, 608, 613, 646-647, 650-651, 673-674, 677-687, 695-698, 708-711, 726
diffoscope/difference.py                       210     16    92%   118, 220-224, 237, 272, 279-280, 317-320, 363, 369, 393, 424
diffoscope/environ.py                           13      0   100%
diffoscope/exc.py                               21      0   100%
diffoscope/excludes.py                          24      6    75%   31-37, 44-46
diffoscope/external_tools.py                     4      0   100%
diffoscope/feeders.py                           81      2    98%   117-118
diffoscope/logging.py                           28      4    86%   31-32, 37-38
diffoscope/main.py                             282     71    75%   63-65, 69-71, 77, 432, 440-447, 459-463, 470-496, 510, 537, 565-595, 612, 666, 676-677, 682-689, 706, 713-714, 719, 724-732, 750, 752-755, 760-766, 781
diffoscope/path.py                               7      1    86%   28
diffoscope/presenters/__init__.py                0      0   100%
diffoscope/presenters/formats.py                37      4    89%   98-101
diffoscope/presenters/html/__init__.py           1      0   100%
diffoscope/presenters/html/html.py             472    125    74%   83-90, 144-147, 151, 153-155, 269-270, 273, 308, 335, 352-363, 422, 433, 446-450, 455, 462-469, 480, 485-497, 500-515, 546-549, 553-558, 561, 567-571, 596-605, 610-622, 627-641, 656, 676-679, 754, 756, 820, 836, 847-879, 897
diffoscope/presenters/html/templates.py         11      0   100%
diffoscope/presenters/icon.py                    1      0   100%
diffoscope/presenters/json.py                   32      1    97%   56
diffoscope/presenters/markdown.py               19      0   100%
diffoscope/presenters/restructuredtext.py       25      0   100%
diffoscope/presenters/text.py                   44      7    84%   62-67, 72-73, 82-83
diffoscope/presenters/utils.py                 166     14    92%   43, 72, 154, 159, 166, 308, 344, 355, 358, 423-428
diffoscope/profiling.py                         40      0   100%
diffoscope/progress.py                         168     18    89%   35-37, 46-53, 79, 90-91, 96, 121, 226, 241-242, 250
diffoscope/readers/__init__.py                   9      0   100%
diffoscope/readers/json.py                      17      1    94%   35
diffoscope/readers/utils.py                      2      0   100%
diffoscope/tempfiles.py                         48     11    77%   56-57, 66-78
diffoscope/tools.py                             70     13    81%   26-27, 57-58, 68-69, 108, 121, 126, 141-144
diffoscope/utils.py                             38      1    97%   42
--------------------------------------------------------------------------
TOTAL                                         6574    871    87%
Coverage HTML written to dir htmlcov

=========================== short test summary info ============================
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/test_presenters.py:89: requires file (try installing file) >= 5.39 (5.38 detected)
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_apk.py:76: requires apktool (try installing apktool) >= 2.5.0 (2.4.1-dirty detected)
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_cbfs.py:101: requires cbfstool
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_cbfs.py:106: requires cbfstool
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_cbfs.py:111: requires cbfstool
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_cbfs.py:123: requires cbfstool
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_cbfs.py:135: requires cbfstool
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_cbfs.py:143: requires cbfstool
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_gnumeric.py:46: requires ssconvert (try installing gnumeric)
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_gnumeric.py:51: requires ssconvert (try installing gnumeric)
SKIPPED [1] /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/tests/comparators/test_haskell.py:37: mismatch between system ghc and fixture
SKIPPED [1] /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build/tests/comparators/test_haskell.py:54: mismatch between system ghc and fixture
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_macho.py:50: requires otool and lipo
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_macho.py:58: requires otool and lipo
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_utils.py:50: requires
SKIPPED [1] .pybuild/cpython3_3.9/build/tests/comparators/test_utils.py:55: requires /missing
============== 2 failed, 431 passed, 16 skipped in 306.24 seconds ==============
E: pybuild pybuild:352: test: plugin distutils failed with: exit code=1: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.9/build; python3.9 -m pytest -vv -r sxX -l --cov=diffoscope --cov-report=term-missing --cov-report=html
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.9 3.8" returned exit code 13
make: *** [debian/rules:35: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------
Build finished at 2020-10-19T19:52:32Z

Finished
--------


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

Not cleaning session: cloned chroot in use
E: Build failure (dpkg-buildpackage died)

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

Build Architecture: amd64
Build Type: binary
Build-Space: 14201
Build-Time: 331
Distribution: unstable
Fail-Stage: build
Host Architecture: amd64
Install-Time: 379
Job: diffoscope
Machine Architecture: amd64
Package: diffoscope
Package-Time: 721
Source-Version: 160
Space: 14201
Status: attempted
Version: 160
--------------------------------------------------------------------------------
Finished at 2020-10-19T19:52:32Z
Build needed 00:12:01, 14201k disk space
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 833 bytes
Desc: not available
URL: <http://alioth-lists.debian.net/pipermail/reproducible-builds/attachments/20201019/c17f6692/attachment.sig>


More information about the Reproducible-builds mailing list